/* =========================================================
   Caramel · Fábrica de Pastas Artesanales
   Hoja de estilos principal del sitio
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&family=Caveat:wght@600;700&display=swap');

:root{
	--red: #e14a3f;
	--red-dark: #b6362c;
	--cream: #faf3ea;
	--cream-2: #f3e6d6;
	--dark: #241a15;
	--dark-2: #362720;
	--text: #4a3a32;
	--muted: #8a776c;
	--white: #ffffff;
	--radius: 10px;
	--shadow: 0 10px 30px rgba(36, 26, 21, 0.12);
	--container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
	margin: 0;
	font-family: 'Poppins', sans-serif;
	color: var(--text);
	background: var(--cream);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
	font-family: 'Playfair Display', serif;
	color: var(--dark);
	margin: 0 0 .5em;
	line-height: 1.2;
}

p{ margin: 0 0 1em; }

a{ color: var(--red); text-decoration: none; }

img{ max-width: 100%; display: block; }

ul{ margin: 0; padding: 0; list-style: none; }

.container{
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.script{
	font-family: 'Caveat', cursive;
	color: var(--red);
	font-size: 1.6rem;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 6px;
}

.eyebrow{
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: .78rem;
	font-weight: 600;
	color: var(--red);
}

.section{
	padding: 90px 0;
}
.section-sm{ padding: 60px 0; }
.section-title{
	text-align: center;
	max-width: 640px;
	margin: 0 auto 50px;
}
.section-title h2{ font-size: 2.3rem; }
.section-title p{ color: var(--muted); margin-top: 10px; }

.bg-cream-2{ background: var(--cream-2); }
.bg-dark{ background: var(--dark); color: #e7dcd2; }
.bg-dark h2, .bg-dark h3, .bg-dark h4{ color: var(--white); }

/* Buttons */
.btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: .95rem;
	font-family: inherit;
	background: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .25s ease;
	white-space: nowrap;
}
.btn-primary{ background: var(--red); color: var(--white); }
.btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover{ background: var(--white); color: var(--dark); }
.btn-dark{ background: var(--dark); color: var(--white); }
.btn-dark:hover{ background: #000; }
.btn-call{ background: var(--dark); color: var(--white); }
.btn-call:hover{ background: #000; transform: translateY(-2px); }

.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

/* Selector de sucursal al llamar */
.call-picker{ position: relative; display: inline-block; }
.call-picker-menu{
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	background: var(--white);
	border-radius: 14px;
	box-shadow: 0 16px 36px rgba(36,26,21,.22);
	padding: 8px;
	min-width: 240px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	z-index: 1200;
	text-align: left;
}
.call-picker-menu.open{
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.call-picker-menu.align-right{ left: auto; right: 0; transform: translateY(-6px); }
.call-picker-menu.align-right.open{ transform: translateY(0); }
.call-picker-menu.drop-up{ top: auto; bottom: calc(100% + 12px); }
.call-picker-menu .picker-caption{
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--muted);
	padding: 8px 14px 6px;
	font-weight: 700;
}
.call-picker-menu a{
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 9px;
	color: var(--dark);
	font-weight: 600;
	font-size: .9rem;
	white-space: nowrap;
}
.call-picker-menu a:hover{ background: var(--cream-2); color: var(--red); }
.call-picker-menu a i{ color: var(--red); width: 16px; text-align: center; }

.call-float-wrap{ position: fixed; bottom: 26px; right: 26px; z-index: 999; }
.call-float{
	position: relative;
	width: 60px; height: 60px;
	background: var(--red);
	color: var(--white);
	border: none;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 8px 24px rgba(225,74,63,.45);
	cursor: pointer;
	transition: transform .25s ease;
}
.call-float:hover{ transform: scale(1.08); color: var(--white); }

/* Placeholder markers (datos a completar) */
.placeholder-todo{
	border-bottom: 1px dashed var(--red);
	color: inherit;
	cursor: help;
}
.placeholder-todo:hover{ color: var(--red); }

/* =========================================================
   Header / Navegación
   ========================================================= */
.site-header{
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	background: rgba(250, 243, 234, 0.0);
	transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
	padding: 18px 0;
}
.site-header.scrolled{
	background: rgba(250, 243, 234, 0.97);
	box-shadow: 0 6px 20px rgba(36,26,21,.08);
	padding: 10px 0;
}
.nav-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.brand{ display: flex; align-items: center; }
.brand-logo{ height: 56px; transition: height .3s ease; }
.site-header.scrolled .brand-logo{ height: 44px; }

.main-nav ul{ display: flex; gap: 34px; }
.nav-link{
	font-weight: 600;
	font-size: .95rem;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0,0,0,.45);
	position: relative;
	padding: 6px 0;
	transition: color .25s ease, text-shadow .25s ease;
}
.nav-link::after{
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--red);
	transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after{ width: 100%; }
.nav-link.active{ color: var(--red); }
.site-header.scrolled .nav-link{ color: var(--dark); text-shadow: none; }
.site-header.scrolled .nav-link.active{ color: var(--red); }

.nav-cta{ flex-shrink: 0; }

.nav-toggle{
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px; height: 40px;
	background: rgba(255,255,255,.92);
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
	border: none;
	cursor: pointer;
	z-index: 1100;
	transition: background .25s ease, box-shadow .25s ease;
}
.nav-toggle span{
	display: block;
	height: 2px;
	width: 18px;
	background: var(--dark);
	border-radius: 2px;
	transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero (portada de página)
   ========================================================= */
.hero{
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	color: var(--white);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.hero::before{
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(120deg, rgba(24,16,12,.88) 10%, rgba(24,16,12,.55) 55%, rgba(24,16,12,.35));
}
.hero .container{ position: relative; z-index: 2; }
.hero-content{ max-width: 640px; }
.hero h1{
	color: var(--white);
	font-size: 3.4rem;
	margin-bottom: .3em;
}
.hero p.lead{
	font-size: 1.15rem;
	color: #f0e6dc;
	max-width: 520px;
}

.page-banner{
	position: relative;
	padding: 220px 0 90px;
	color: var(--white);
	background-size: cover;
	background-position: center;
}
.page-banner::before{
	content: '';
	position: absolute; inset: 0;
	background: rgba(24,16,12,.72);
}
.page-banner .container{ position: relative; z-index: 2; text-align: center; }
.page-banner h1{ color: var(--white); font-size: 2.8rem; margin-bottom: 8px; }
.breadcrumb{ color: #e9d9cc; font-size: .95rem; }
.breadcrumb a{ color: #fff; font-weight: 600; }

/* =========================================================
   Features / íconos
   ========================================================= */
.features-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.feature-card{
	background: var(--white);
	border-radius: var(--radius);
	padding: 34px 26px;
	text-align: center;
	box-shadow: var(--shadow);
}
.feature-card .icon{
	width: 64px; height: 64px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--cream-2);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.5rem;
	color: var(--red);
}
.feature-card h4{ font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p{ color: var(--muted); font-size: .92rem; margin: 0; }

/* =========================================================
   Split section (imagen + texto)
   ========================================================= */
.split{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.split img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.split .col-text h2{ font-size: 2.1rem; }
.split .col-text p{ color: var(--muted); }
.check-list li{
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--text);
}
.check-list i{ color: var(--red); margin-top: 4px; }

/* =========================================================
   Productos (teaser en home + catálogo)
   ========================================================= */
.products-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.product-card{
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .3s ease;
}
.product-card:hover{ transform: translateY(-6px); }
.product-card .product-img{
	height: 230px;
	overflow: hidden;
}
.product-card .product-img img{
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .4s ease;
}
.product-card:hover .product-img img{ transform: scale(1.07); }
.product-card .product-body{ padding: 22px 24px 26px; }
.product-tag{
	display: inline-block;
	background: var(--cream-2);
	color: var(--red);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 4px 12px;
	border-radius: 50px;
	margin-bottom: 10px;
}
.product-card h3{ font-size: 1.2rem; margin-bottom: 6px; }
.product-card p{ color: var(--muted); font-size: .92rem; margin: 0; }

.product-card.placeholder .product-img{
	background: var(--cream-2);
	display: flex; align-items: center; justify-content: center;
	color: var(--red);
	font-size: 2.2rem;
}

.products-cta{ text-align: center; margin-top: 50px; }

/* =========================================================
   Menú completo (categorías de productos)
   ========================================================= */
[id]{ scroll-margin-top: 100px; }

.menu-intro{
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
	color: var(--muted);
}

.menu-subnav{
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.menu-subnav a{
	background: var(--white);
	color: var(--dark);
	padding: 10px 24px;
	border-radius: 50px;
	font-weight: 600;
	font-size: .88rem;
	box-shadow: var(--shadow);
	transition: background .2s ease, color .2s ease;
}
.menu-subnav a:hover{ background: var(--red); color: var(--white); }

.menu-group{ padding: 70px 0; }
.menu-group:nth-child(even){ background: var(--cream-2); }

.menu-subsection{ margin-bottom: 70px; }
.menu-subsection:last-child{ margin-bottom: 0; }
.menu-subsection-title{
	text-align: center;
	max-width: 640px;
	margin: 0 auto 34px;
}
.menu-subsection-title .eyebrow{ display: block; margin-bottom: 6px; }
.menu-subsection-title h3{ font-size: 1.7rem; }

/* Sección con foto del catálogo: título, foto y lista como 3 bloques.
   En desktop la foto ocupa una columna completa (2 filas); en mobile
   (ver media query más abajo) se apilan en orden natural: título, foto, lista. */
.menu-photo-block{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 60px;
	align-items: center;
}
.menu-photo-block.image-left{ grid-template-areas: "img header" "img list"; }
.menu-photo-block.image-right{ grid-template-areas: "header img" "list img"; }
.menu-photo-header{ grid-area: header; }
.menu-photo-block .col-img{ grid-area: img; }
.menu-photo-block .col-list{ grid-area: list; }
.menu-photo-block img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.menu-photo-duo{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.menu-photo-duo img{ border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; object-fit: cover; }

.menu-list{ list-style: none; margin: 0; padding: 0; }
.menu-list li{
	padding: 11px 0;
	border-bottom: 1px dashed #e4d4c4;
	color: var(--text);
	font-size: 1rem;
}
.menu-list li:last-child{ border-bottom: none; }
.menu-list.columns-2{ column-count: 2; column-gap: 40px; }
.menu-list.columns-2 li{ break-inside: avoid; }

/* Subtítulo para agrupar varias listas chicas dentro de una misma sección con foto:
   misma tipografía que los títulos h3 (Playfair), un poco más chica */
.menu-list-group{ margin-top: 26px; }
.menu-list-group:first-of-type{ margin-top: 6px; }
.menu-list-group h4{
	font-size: 1.15rem;
	margin-bottom: 6px;
}

/* Categoría sin foto, a todo el ancho (para que no quede una tarjeta sola y desbalanceada) */
.menu-list-standalone{ max-width: 640px; margin: 0 auto; }
.menu-list-standalone .menu-subsection-title{ margin-bottom: 24px; }

/* Categorías chicas sin foto: mismo estilo que las secciones con foto, sin fondo de card */
.menu-sheet{ padding: 0; }
.menu-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 42px 50px;
	align-items: start;
}
.menu-card{ padding: 0; }
.menu-card h4{
	font-size: 1.17em;
	color: var(--dark);
	margin-bottom: .5em;
}
.menu-card .menu-list.columns-2{ column-gap: 30px; }
.menu-card-wide{ grid-column: span 2; }

/* =========================================================
   Nosotros / Historia / Proceso
   ========================================================= */
.values-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.value-card{
	text-align: center;
	padding: 30px 20px;
}
.value-card .icon{
	width: 70px; height: 70px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 16px;
	font-size: 1.6rem;
	color: var(--red);
	border: 1px solid rgba(255,255,255,.15);
}

.process-steps{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	counter-reset: step;
}
.process-step{
	position: relative;
	padding: 34px 24px;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	text-align: center;
}
.process-step::before{
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: -18px; left: 50%;
	transform: translateX(-50%);
	width: 36px; height: 36px;
	background: var(--red);
	color: var(--white);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700;
	font-size: .95rem;
}
.process-step h4{ margin-top: 12px; font-size: 1.05rem; }
.process-step p{ color: var(--muted); font-size: .9rem; margin: 0; }

/* =========================================================
   Banda CTA
   ========================================================= */
.cta-band{
	background: var(--red);
	color: var(--white);
	padding: 60px 0;
	text-align: center;
}
.cta-band h2{ color: var(--white); font-size: 2rem; margin-bottom: 10px; }
.cta-band p{ color: #ffe4e0; margin-bottom: 28px; }
.cta-band .btn-outline{ border-color: var(--white); }

/* =========================================================
   Contacto
   ========================================================= */
.locations-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 90px;
}
.location-card{
	display: flex;
	flex-direction: column;
}
.location-card .product-tag{ margin-bottom: 14px; }
.location-card h3{ font-size: 1.5rem; margin-bottom: 20px; }
.location-card .info-list{ margin-bottom: 20px; flex: 1 0 auto; }
.location-card .btn-call{ align-self: flex-start; }

.contact-grid{
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 50px;
	align-items: start;
}
.contact-form{
	background: var(--white);
	padding: 40px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group{ margin-bottom: 20px; }
.form-group label{
	display: block;
	font-weight: 600;
	font-size: .88rem;
	margin-bottom: 8px;
	color: var(--dark);
}
.form-group input,
.form-group textarea{
	width: 100%;
	padding: 13px 16px;
	border: 1px solid #e4d7ca;
	border-radius: 8px;
	font-family: inherit;
	font-size: .95rem;
	background: var(--cream);
	color: var(--text);
	resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus{
	outline: none;
	border-color: var(--red);
	background: var(--white);
}
#formStatus{
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: .92rem;
	display: none;
}
#formStatus.ok{ display: block; background: #e4f7ea; color: #1c7a3f; }
#formStatus.err{ display: block; background: #fbe6e4; color: var(--red-dark); }

.info-card{
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 34px;
	margin-bottom: 26px;
}
.info-list li{
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	align-items: flex-start;
}
.info-list li:last-child{ margin-bottom: 0; }
.info-list .icon{
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--cream-2);
	color: var(--red);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.info-list h4{ font-size: .95rem; margin-bottom: 3px; }
.info-list p{ margin: 0; color: var(--muted); font-size: .92rem; }

.map-wrap{
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	line-height: 0;
}
.map-wrap iframe{ width: 100%; height: 320px; border: 0; }


/* =========================================================
   Footer
   ========================================================= */
.site-footer{
	background: var(--dark);
	color: #cdbdb2;
	padding-top: 70px;
}
.footer-grid{
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo{ height: 50px; margin-bottom: 16px; }
.footer-brand p{ color: #b7a89d; max-width: 280px; }
.social-links{ display: flex; gap: 12px; margin-top: 18px; }
.social-links a{
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: var(--white);
	display: flex; align-items: center; justify-content: center;
	transition: background .25s ease;
}
.social-links a:hover{ background: var(--red); }
.footer-links h4, .footer-contact h4{
	color: var(--white);
	font-size: 1rem;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.footer-links ul li{ margin-bottom: 12px; }
.footer-links ul li a{ color: #b7a89d; }
.footer-links ul li a:hover{ color: var(--white); }
.footer-contact ul li{
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	color: #b7a89d;
	font-size: .92rem;
	align-items: flex-start;
}
.footer-contact ul li i{ color: var(--red); margin-top: 3px; width: 16px; }
.footer-contact ul li a{ color: #b7a89d; }
.footer-contact ul li a:hover{ color: var(--white); }
.footer-bottom{
	padding: 22px 0;
	text-align: center;
	font-size: .85rem;
	color: #8a7a6f;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 992px){
	.features-grid, .values-grid, .process-steps{ grid-template-columns: repeat(2, 1fr); }
	.products-grid{ grid-template-columns: repeat(2, 1fr); }
	.split{ grid-template-columns: 1fr; }
	.split .col-img{ order: -1; }
	.contact-grid{ grid-template-columns: 1fr; }
	.locations-grid{ grid-template-columns: 1fr; gap: 30px; }
	.footer-grid{ grid-template-columns: 1fr 1fr; }
	.hero h1{ font-size: 2.6rem; }
	.menu-grid{ grid-template-columns: repeat(2, 1fr); }

	/* Catálogo: título -> foto -> lista, en ese orden. Título y lista van a todo
	   el ancho y alineados a la izquierda (el "align-items: center" de desktop
	   los achicaba y centraba); la foto ocupa el ancho completo. */
	.menu-photo-block{ display: flex; flex-direction: column; align-items: stretch; }
	.menu-photo-header{ margin-bottom: 20px; text-align: left; }
	.menu-photo-block .col-img{ margin-bottom: 24px; }
	.menu-photo-block .col-list{ text-align: left; }
}

@media (max-width: 768px){
	.main-nav{
		position: fixed;
		top: 0; right: 0;
		height: 100vh;
		width: 78%;
		max-width: 320px;
		background: var(--cream);
		box-shadow: -10px 0 30px rgba(0,0,0,.15);
		transform: translateX(100%);
		transition: transform .3s ease;
		padding: 100px 40px 40px;
		z-index: 1050;
	}
	.main-nav.open{ transform: translateX(0); }
	.main-nav ul{ flex-direction: column; gap: 24px; }
	.main-nav .nav-link{ color: var(--dark); text-shadow: none; }
	.main-nav .nav-link.active{ color: var(--red); }
	.nav-toggle{ display: flex; }
	.nav-cta{ display: none; }
	.nav-overlay{
		display: none;
		position: fixed; inset: 0;
		background: rgba(0,0,0,.4);
		z-index: 1040;
	}
	.nav-overlay.open{ display: block; }

	.features-grid, .values-grid, .process-steps, .products-grid{ grid-template-columns: 1fr; }
	.menu-grid{ grid-template-columns: 1fr; gap: 34px; }
	.menu-list.columns-2{ column-count: 1; }
	.menu-group{ padding: 50px 0; }
	.menu-subsection{ margin-bottom: 50px; }
	.form-row{ grid-template-columns: 1fr; }
	.hero{ min-height: 80vh; text-align: center; }
	.hero-content{ margin: 0 auto; }
	.hero-actions{ justify-content: center; }
	.hero h1{ font-size: 2.1rem; }
	.page-banner{ padding: 160px 0 70px; }
	.page-banner h1{ font-size: 2.1rem; }
	.section{ padding: 60px 0; }
	.footer-grid{ grid-template-columns: 1fr; gap: 40px; }
}
