/**
 * theme.css — La Embajada del Aceite
 * Sistema de diseño: naturaleza + aceite de oliva, profesional y moderno.
 * Paleta olivo, fuentes de marca, secciones con scroll y animaciones.
 */

/* ==========================================================================
   1. Tokens de diseño
   ========================================================================== */
:root {
	/* Verdes olivo */
	--olive-900: #2b3320;   /* texto / fondos muy oscuros */
	--olive-800: #36402a;
	--olive-700: #44512f;   /* verde principal */
	--olive-600: #586b3a;
	--olive-500: #6f8350;
	--olive-400: #8a9c6c;
	--olive-300: #aab78f;
	--olive-200: #cdd6b6;
	--olive-100: #e7ecd9;

	/* Oro / aceite */
	--gold-600: #a9831f;
	--gold-500: #c79a2b;
	--gold-400: #d8b450;
	--gold-300: #e7cd86;

	/* Neutros crema */
	--cream-50:  #fbf9f2;
	--cream-100: #f6f2e7;
	--cream-200: #ece5d3;
	--bone:      #fffdf8;

	--ink:       #2b3320;
	--ink-soft:  #545b45;

	/* Tipografía */
	--font-display: 'Antro Vectra', 'Brush Script MT', cursive;
	--font-head:    'Caviar Dreams', 'Poppins', sans-serif;
	--font-body:    'Poppins', 'Caviar Dreams', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-accent:  'Grifol Light', 'Caviar Dreams', sans-serif;

	/* Layout */
	--container: 1200px;
	--container-wide: 1440px;
	--gutter: clamp(1.25rem, 4vw, 4rem);
	--radius: 14px;
	--radius-lg: 26px;

	/* Sombras */
	--shadow-sm: 0 4px 14px rgba(43, 51, 32, .08);
	--shadow-md: 0 14px 40px rgba(43, 51, 32, .12);
	--shadow-lg: 0 30px 70px rgba(43, 51, 32, .18);

	--ease: cubic-bezier(.22, 1, .36, 1);
}

/* ==========================================================================
   2. Base
   ========================================================================== */
html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream-50);
	font-size: 1.0625rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--font-head);
	color: var(--olive-800);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -.01em;
	margin: 0 0 .5em;
}

a { color: var(--olive-700); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-600); }

img { display: block; }

.container {
	width: min(100% - var(--gutter) * 2, var(--container));
	margin-inline: auto;
}
.container--wide { width: min(100% - var(--gutter) * 2, var(--container-wide)); }
.container--narrow { width: min(100% - var(--gutter) * 2, 760px); }

.section { padding: clamp(4rem, 9vw, 8.5rem) 0; position: relative; }
.section--cream { background: var(--cream-100); }
.section--bone  { background: var(--bone); }
.section--olive {
	background: linear-gradient(160deg, var(--olive-800), var(--olive-700) 60%, var(--olive-600));
	color: var(--cream-100);
}
.section--olive h1, .section--olive h2, .section--olive h3 { color: var(--cream-50); }

/* Tipografía display */
.display {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: .01em;
	line-height: .95;
	color: var(--olive-700);
}
.eyebrow {
	font-family: var(--font-accent);
	text-transform: uppercase;
	letter-spacing: .42em;
	font-size: .74rem;
	color: var(--gold-600);
	margin: 0 0 1.1rem;
	display: inline-block;
}
.section--olive .eyebrow { color: var(--gold-300); }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }
.section--olive .lead { color: var(--olive-100); }

.title-xl { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.title-lg { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.title-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }

/* ==========================================================================
   3. Botones
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: .6em;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .92rem;
	letter-spacing: .04em;
	padding: 1.05em 2.2em;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
	will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold { background: var(--gold-500); color: var(--olive-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); color: var(--olive-900); box-shadow: var(--shadow-md); }
.btn--olive { background: var(--olive-700); color: var(--cream-50); }
.btn--olive:hover { background: var(--olive-800); color: var(--cream-50); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--olive-700); }
.btn--ghost:hover { background: var(--olive-700); color: var(--cream-50); }
.section--olive .btn--ghost { color: var(--cream-100); }
.section--olive .btn--ghost:hover { background: var(--cream-50); color: var(--olive-800); }

/* ==========================================================================
   4. Header / navegación
   ========================================================================== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.1rem var(--gutter);
	transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
	background: rgba(251, 249, 242, .92);
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow-sm);
	padding-block: .7rem;
}

.site-brand { display: flex; flex-direction: column; line-height: 1; z-index: 2; }
.site-brand__name {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--olive-800);
	transition: color .4s var(--ease);
}
.site-brand__tag {
	font-family: var(--font-accent);
	text-transform: uppercase;
	letter-spacing: .34em;
	font-size: .56rem;
	color: var(--gold-600);
	margin-top: .15rem;
}
/* Header transparente sobre hero oscuro */
.site-header:not(.is-scrolled).on-dark .site-brand__name { color: var(--cream-50); }
.site-header:not(.is-scrolled).on-dark .primary-nav a { color: var(--cream-100); }

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.2vw, 2.4rem);
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-nav a {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .9rem;
	letter-spacing: .03em;
	color: var(--olive-800);
	position: relative;
	padding: .35em 0;
}
.primary-nav a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--gold-500);
	transition: width .3s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { width: 100%; }
.primary-nav .current-menu-item > a { color: var(--gold-600); }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	background: transparent;
	border: 0;
	cursor: pointer;
	z-index: 1100;
	padding: 0;
}
.nav-toggle span {
	display: block;
	width: 26px; height: 2px;
	margin-inline: auto;
	background: var(--olive-800);
	border-radius: 2px;
	transition: transform .35s var(--ease), opacity .25s var(--ease), background .35s var(--ease);
}
.site-header.on-dark:not(.is-scrolled) .nav-toggle span { background: var(--cream-50); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   5. Hero del bote (animación scroll)
   ========================================================================== */
.hero-bottle {
	position: relative;
	background: linear-gradient(170deg, var(--olive-800) 0%, var(--olive-700) 55%, var(--olive-600) 100%);
	color: var(--cream-50);
}
.hero-bottle__sticky {
	position: relative;
	height: 100vh;
	display: grid;
	place-items: center;
	overflow: hidden;
}
/* Texto de marca gigante de fondo */
.hero-bottle__brand {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	text-align: center;
	pointer-events: none;
}
.hero-bottle__brand span {
	font-family: var(--font-display);
	font-size: clamp(4rem, 18vw, 16rem);
	color: rgba(255, 253, 248, .07);
	line-height: .85;
	white-space: nowrap;
}
/* Bote */
.bottle-stage {
	position: relative;
	z-index: 3;
	width: clamp(180px, 30vw, 320px);
	will-change: transform, opacity;
}
.bottle-stage svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.35)); }

/* Intro revelada tras el bote */
.hero-intro {
	position: absolute;
	z-index: 2;
	max-width: 760px;
	text-align: center;
	padding-inline: var(--gutter);
	opacity: 0;
}
.hero-intro .eyebrow { color: var(--gold-300); }
.hero-intro h1 { color: var(--cream-50); font-size: clamp(2.2rem, 6vw, 4.4rem); }
.hero-intro p { color: var(--olive-100); }

/* Indicador de scroll */
.scroll-cue {
	position: absolute;
	left: 50%; bottom: 2.2rem;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
	font-family: var(--font-accent);
	text-transform: uppercase;
	letter-spacing: .3em;
	font-size: .6rem;
	color: var(--olive-100);
}
.scroll-cue__line {
	width: 1px; height: 46px;
	background: linear-gradient(var(--gold-300), transparent);
	animation: cueDrop 2s var(--ease) infinite;
	transform-origin: top;
}
@keyframes cueDrop {
	0% { transform: scaleY(0); opacity: 0; }
	40% { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(1) translateY(14px); opacity: 0; }
}

/* --- Variante clara: hero con vídeo del bote (scroll-scrub) --- */
.hero-bottle--light {
	/* Tono igualado al fondo de estudio del vídeo (#c8c4bf) para que funda sin costura */
	background: radial-gradient(125% 125% at 50% 36%, #d4d0c8 0%, #c8c4bf 68%, #bcb7ae 100%);
	color: var(--olive-900);
}
.hero-video-stage {
	position: absolute;
	inset: 0;
	z-index: 1;
	will-change: transform, opacity;
}
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Funde los bordes del encuadre con el fondo crema del hero */
	-webkit-mask-image:
		linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
		linear-gradient(to bottom, transparent, #000 10%, #000 82%, transparent);
	-webkit-mask-composite: source-in;
	        mask-image:
		linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
		linear-gradient(to bottom, transparent, #000 10%, #000 82%, transparent);
	        mask-composite: intersect;
}
/* Texto del hero sobre fondo claro */
.hero-bottle--light .hero-intro h1 { color: var(--olive-900); }
.hero-bottle--light .hero-intro .lead { color: var(--ink-soft); }
.hero-bottle--light .hero-intro .eyebrow { color: var(--gold-600); }
.hero-bottle--light .scroll-cue { color: var(--olive-700); }
.hero-bottle--light .hero-intro { z-index: 3; }
/* Velo suave para que el titular revelado se lea siempre */
.hero-bottle--light .hero-intro::before {
	content: '';
	position: absolute;
	inset: -8% -12%;
	z-index: -1;
	background: radial-gradient(60% 60% at 50% 50%, rgba(212,208,200,.94), rgba(212,208,200,0) 75%);
	opacity: 0;
	transition: opacity .4s var(--ease);
}
.hero-bottle--light .hero-intro.is-on::before { opacity: 1; }

/* ==========================================================================
   6. Animación reveal-on-scroll
   ========================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(38px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
	will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1 !important; transform: none !important; }
	html { scroll-behavior: auto; }
	.scroll-cue__line { animation: none; }
}

/* ==========================================================================
   7. Bloques de contenido
   ========================================================================== */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(2rem, 6vw, 5.5rem);
}
.split--reverse .split__media { order: 2; }
.split__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	aspect-ratio: 4 / 5;
	background: var(--olive-100);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }

/* Tarjetas de producto / marca */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(1.4rem, 3vw, 2.4rem);
}
.card {
	background: var(--bone);
	border: 1px solid var(--cream-200);
	border-radius: var(--radius);
	padding: 2.2rem 2rem;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
	position: relative;
	overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--olive-200); }
.card__icon {
	width: 56px; height: 56px;
	margin-bottom: 1.4rem;
	color: var(--olive-600);
}
.card__icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.35rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: .98rem; }

/* Variedades de aceituna */
.varieties { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.variety {
	text-align: center;
	padding: 2.4rem 1.6rem;
	border-radius: var(--radius);
	background: rgba(255, 253, 248, .06);
	border: 1px solid rgba(255, 253, 248, .12);
	transition: transform .4s var(--ease), background .4s var(--ease);
}
.variety:hover { transform: translateY(-6px); background: rgba(255, 253, 248, .1); }
.variety__leaf { width: 48px; height: 48px; margin: 0 auto 1.1rem; color: var(--gold-300); }
.variety h3 { color: var(--gold-300); font-size: 1.3rem; margin-bottom: .4rem; }
.variety p { color: var(--olive-100); font-size: .92rem; margin: 0; }

/* Cifras / stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); color: var(--gold-500); line-height: 1; }
.stat__label { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; color: var(--ink-soft); margin-top: .6rem; }
.section--olive .stat__label { color: var(--olive-100); }

/* Cita destacada */
.pullquote { text-align: center; max-width: 880px; margin-inline: auto; }
.pullquote q { font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 3.2rem); color: var(--olive-700); line-height: 1.15; font-style: normal; }
.section--olive .pullquote q { color: var(--cream-50); }
.pullquote cite { display: block; margin-top: 1.4rem; font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .26em; font-size: .76rem; color: var(--gold-600); font-style: normal; }

/* Banda decorativa de rama de olivo */
.olive-divider { display: flex; align-items: center; justify-content: center; gap: 1.2rem; color: var(--olive-300); margin: 0 auto; max-width: 320px; }
.olive-divider::before, .olive-divider::after { content: ''; height: 1px; flex: 1; background: currentColor; opacity: .5; }
.olive-divider svg { width: 34px; height: 34px; }

/* ==========================================================================
   8. CTA final
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ==========================================================================
   9. Contacto + Contact Form 7
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-info ul { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.6rem; }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--olive-100); color: var(--olive-700); }
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info b { display: block; font-family: var(--font-head); color: var(--olive-800); }
.contact-info span { color: var(--ink-soft); }

.contact-form-wrap { background: var(--bone); border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }

/* CF7 */
.wpcf7 .cf7-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.wpcf7 .cf7-field, .wpcf7 .cf7-full { margin: 0; }
.wpcf7 .cf7-full { margin-top: 1.2rem; }
.wpcf7 label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .03em; color: var(--olive-800); margin-bottom: .5rem; text-transform: uppercase; }
.wpcf7 .cf7-req { color: var(--gold-600); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
	background: var(--cream-50);
	border: 1.5px solid var(--cream-200);
	border-radius: 10px;
	padding: .9em 1em;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.wpcf7 input:focus, .wpcf7 textarea:focus { outline: none; border-color: var(--olive-500); box-shadow: 0 0 0 4px rgba(111, 131, 80, .15); }
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7 .cf7-acceptance { margin-top: 1.3rem; font-size: .85rem; }
.wpcf7 .cf7-acceptance label { display: inline; text-transform: none; font-family: var(--font-body); font-weight: 400; letter-spacing: 0; color: var(--ink-soft); }
.wpcf7 .cf7-submit { margin-top: 1.6rem; }
.wpcf7 .wpcf7-submit {
	font-family: var(--font-head); font-weight: 700; letter-spacing: .04em;
	background: var(--olive-700); color: var(--cream-50);
	border: 0; border-radius: 999px; padding: 1.05em 2.4em; cursor: pointer;
	transition: transform .3s var(--ease), background .3s var(--ease);
}
.wpcf7 .wpcf7-submit:hover { background: var(--gold-500); color: var(--olive-900); transform: translateY(-3px); }
.wpcf7-response-output { border-radius: 10px; margin: 1.4rem 0 0 !important; padding: .9em 1.2em !important; font-size: .92rem; }

/* ==========================================================================
   10. Footer
   ========================================================================== */
.site-footer {
	background: var(--olive-900);
	color: var(--olive-100);
	padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.footer-brand__name { font-family: var(--font-display); font-size: 2.4rem; color: var(--cream-50); line-height: 1; }
.footer-brand p { color: var(--olive-200); font-size: .95rem; margin-top: 1rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-head); color: var(--gold-300); font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-col a, .footer-col span { color: var(--olive-100); font-size: .95rem; }
.footer-col a:hover { color: var(--gold-300); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer-social a {
	width: 42px; height: 42px; border-radius: 50%;
	display: grid; place-items: center;
	background: rgba(255, 253, 248, .08); color: var(--cream-100);
	transition: background .3s var(--ease), transform .3s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); color: var(--olive-900); transform: translateY(-3px); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid rgba(255, 253, 248, .12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--olive-300); }
.footer-bottom a { color: var(--olive-200); }

/* ==========================================================================
   11. Responsive
   ========================================================================== */
@media (max-width: 980px) {
	.split, .contact-layout { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 0; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.nav-toggle { display: flex; }
	.primary-nav {
		position: fixed;
		inset: 0;
		background: linear-gradient(160deg, var(--olive-800), var(--olive-900));
		display: grid;
		place-items: center;
		transform: translateX(100%);
		transition: transform .5s var(--ease);
		z-index: 1050;
	}
	body.nav-open .primary-nav { transform: none; }
	.primary-nav ul { flex-direction: column; gap: 1.6rem; }
	.primary-nav a { color: var(--cream-50); font-size: 1.4rem; }
	.wpcf7 .cf7-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; }
}

/* --- Hero del bote en móvil: vídeo autoplay, sin pin/scrub --- */
@media (max-width: 760px) {
	.hero-bottle__sticky { height: 100svh; }
	.hero-video {
		object-fit: cover;
		-webkit-mask-image: none;
		        mask-image: none;
	}
	.hero-bottle--light .scroll-cue { display: none; }
	.hero-bottle--light .hero-intro {
		position: absolute;
		top: auto;
		left: 0; right: 0; bottom: 0;
		max-width: none;
		text-align: center;
		padding: 7rem 1.4rem calc(2.6rem + env(safe-area-inset-bottom));
		opacity: 1 !important;
		transform: none !important;
		background: linear-gradient(to top,
			rgba(200, 196, 191, .97) 22%,
			rgba(200, 196, 191, .72) 55%,
			rgba(200, 196, 191, 0) 100%);
	}
	.hero-bottle--light .hero-intro::before { display: none; }
	.hero-bottle--light .hero-intro h1 { font-size: clamp(1.9rem, 8.5vw, 2.7rem); }
	.hero-bottle--light .hero-intro .lead { font-size: 1rem; }
}
