:root {
  --green: #1f4d3a;
  --green-2: #2e6a4a;
  --green-3: #0f382a;
  --cream: #f5f1e8;
  --paper: #fbf7ee;
  --kraft: #d8c4a3;
  --gold: #b88a44;
  --gold-2: #d7ad62;
  --brown: #7a5a3a;
  --ink: #17352a;
  --body: #303a35;
  --muted: #6c716d;
  --red: #8e251f;
  --white: #fffdf7;
  --line: rgba(31, 77, 58, .18);
  --line-gold: rgba(184, 138, 68, .38);
  --shadow: 0 24px 70px rgba(25, 48, 38, .14);
  --shadow-soft: 0 14px 36px rgba(25, 48, 38, .09);
  --container: min(1200px, calc(100% - 42px));
  --title: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --text: "Montserrat", Arial, sans-serif;
  --script: "Allura", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--body);
  background:
    radial-gradient(circle at 15% 12%, rgba(216,196,163,.25), transparent 20rem),
    linear-gradient(90deg, rgba(122,90,58,.018) 1px, transparent 1px),
    linear-gradient(rgba(122,90,58,.018) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 9px 9px, 9px 9px, auto;
  font-family: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.fill { fill: currentColor; stroke: none; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; top: -60px; left: 18px; z-index: 999; padding: 10px 14px; background: var(--gold); color: var(--green-3); border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 14px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 12px 0; transition: .25s ease; }
.site-header.is-scrolled { padding: 7px 0; background: rgba(251,247,238,.95); box-shadow: 0 8px 30px rgba(18,50,38,.10); backdrop-filter: blur(16px); }
.nav-shell { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; width: 205px; height: 66px; align-items: center; }
.brand img { width: 100%; max-height: 64px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 24px; color: var(--cream); font-size: 13px; font-weight: 700; }
.site-header.is-scrolled .main-nav { color: var(--green); }
.main-nav > a:not(.button) { position: relative; padding: 9px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--gold); transition: right .22s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.social-nav { display: inline-flex; align-items: center; gap: 7px; }
.social-nav svg { width: 18px; height: 18px; }
.menu-button { display: none; width: 47px; height: 47px; border: 1px solid var(--line); background: var(--cream); border-radius: 50%; padding: 12px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--green); transition: .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.button { min-height: 53px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button-small { min-height: 43px; padding: 0 17px; font-size: 12px; }
.button-gold { color: var(--green-3); background: var(--gold-2); box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.button-gold:hover { background: var(--cream); }
.button-outline-light { color: var(--cream); border-color: rgba(245,241,232,.58); background: rgba(255,255,255,.04); }
.button-outline-light:hover { background: var(--cream); color: var(--green); }
.button-whatsapp { color: var(--white); background: #2b7a4f; box-shadow: 0 10px 22px rgba(22,79,48,.22); }

/* Shared */
.section { position: relative; padding: 105px 0; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-2); }
h1, h2, h3, p { margin-top: 0; }
h2 { margin-bottom: 22px; color: var(--green-3); font-family: var(--title); font-size: clamp(46px, 6vw, 76px); line-height: .96; letter-spacing: .015em; font-weight: 400; }
h3 { color: var(--green); line-height: 1.16; }
.lead { color: var(--green); font-size: 18px; font-weight: 700; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered p:last-child { max-width: 650px; margin-inline: auto; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px,.55fr); align-items: end; gap: 65px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin-bottom: 7px; color: var(--muted); }
.photo-frame { position: relative; overflow: hidden; background: var(--kraft); box-shadow: var(--shadow); }
.photo-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.28); pointer-events: none; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(5px); }

/* Hero */
.hero { min-height: 820px; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--cream); background:
  radial-gradient(circle at 83% 20%, rgba(184,138,68,.20), transparent 26rem),
  radial-gradient(circle at 17% 78%, rgba(46,106,74,.34), transparent 30rem),
  var(--green-3); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: repeating-linear-gradient(16deg, transparent 0 5px, rgba(255,255,255,.06) 6px 7px); mix-blend-mode: overlay; }
.hero-grain { position: absolute; inset: 0; opacity: .32; background-image: radial-gradient(rgba(245,241,232,.15) .7px, transparent .7px); background-size: 5px 5px; mask-image: linear-gradient(to right, black, transparent 72%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .93fr) minmax(420px, .72fr); align-items: center; gap: 80px; padding-top: 105px; padding-bottom: 80px; }
.hero-copy { max-width: 680px; }
.hero h1 { margin: 0 0 6px; color: var(--cream); font-family: var(--title); font-size: clamp(74px, 9vw, 126px); line-height: .82; font-weight: 400; letter-spacing: .018em; text-transform: uppercase; }
.hero h1 span { display: block; color: var(--gold-2); font-size: .68em; }
.script-line { margin: 20px 0 18px; color: var(--gold-2); font-family: var(--script); font-size: clamp(38px, 4.8vw, 64px); line-height: .85; }
.hero-lead { max-width: 650px; margin: 0 0 32px; color: rgba(245,241,232,.86); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { margin-top: 43px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 26px; border-top: 1px solid rgba(216,196,163,.25); color: rgba(245,241,232,.9); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust svg { color: var(--gold-2); width: 24px; height: 24px; }
.hero-visual { position: relative; min-height: 590px; }
.hero-photo { position: absolute; inset: 20px 0 55px 70px; border-radius: 46% 46% 8px 8px; }
.hero-photo img { object-position: center; }
.hero-photo::before { content: ""; position: absolute; inset: -14px; z-index: -1; border: 1px solid rgba(184,138,68,.55); border-radius: inherit; }
.brand-seal { position: absolute; left: 0; bottom: 20px; width: 178px; height: 178px; padding: 13px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); box-shadow: 0 18px 45px rgba(0,0,0,.30); transform: rotate(-6deg); }
.brand-seal img { width: 100%; height: 100%; object-fit: contain; }
.hero-note { position: absolute; right: -25px; bottom: 0; width: 225px; padding: 18px 25px 21px; color: var(--green-3); background: var(--kraft); box-shadow: var(--shadow-soft); transform: rotate(3deg); }
.hero-note::before, .hero-note::after { content: ""; position: absolute; width: 32px; height: 12px; top: -6px; background: rgba(239,221,185,.72); }
.hero-note::before { left: 15px; transform: rotate(-5deg); }
.hero-note::after { right: 15px; transform: rotate(5deg); }
.hero-note span { display: block; font-family: var(--script); font-size: 34px; line-height: .8; }
.hero-note strong { font-family: var(--title); font-size: 30px; letter-spacing: .04em; }
.botanical { position: absolute; color: var(--gold-2); font-family: Georgia, serif; font-size: 95px; opacity: .45; }
.botanical-one { top: -15px; left: 0; transform: rotate(-52deg); }
.botanical-two { right: -55px; top: 50px; transform: rotate(128deg); }
.torn-edge { position: absolute; left: -2%; right: -2%; bottom: -1px; height: 38px; background: var(--paper); clip-path: polygon(0 55%,3% 31%,7% 57%,11% 29%,15% 62%,20% 37%,26% 59%,31% 34%,36% 63%,42% 30%,48% 55%,54% 27%,59% 61%,65% 32%,71% 58%,77% 31%,83% 61%,88% 35%,94% 57%,100% 29%,100% 100%,0 100%); }

/* Intro strip */
.intro-strip { padding: 62px 0 78px; }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.intro-quote { display: flex; gap: 20px; color: var(--green); }
.intro-quote > span { margin-top: -25px; color: var(--gold); font-family: Georgia, serif; font-size: 95px; line-height: 1; }
.intro-quote p { margin: 0; font-size: 20px; }
.intro-quote strong { font-weight: 700; }
.intro-points { display: grid; grid-template-columns: repeat(4,1fr); padding: 22px 0; border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); }
.intro-points article { padding: 0 18px; border-left: 1px solid var(--line); }
.intro-points article:first-child { border-left: 0; }
.intro-points strong { display: block; color: var(--green); font-family: var(--title); font-size: 25px; font-weight: 400; letter-spacing: .04em; }
.intro-points span { color: var(--muted); font-size: 12px; }

/* History */
.history { padding-top: 85px; }
.history::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.history-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(370px,.72fr); gap: 90px; align-items: start; }
.history-copy h2 { max-width: 760px; }
.history-copy > p { max-width: 740px; }
.history-more { max-width: 740px; margin-top: 22px; border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); }
.history-more summary { padding: 17px 0; display: flex; justify-content: space-between; align-items: center; color: var(--green); font-weight: 800; cursor: pointer; list-style: none; }
.history-more summary::-webkit-details-marker { display: none; }
.history-more summary svg { transition: transform .25s ease; }
.history-more[open] summary svg { transform: rotate(90deg); }
.history-more div { padding-bottom: 5px; }
.history-visual { position: sticky; top: 120px; }
.history-photo { height: 520px; border-radius: 4px; transform: rotate(1.5deg); }
.history-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(15,56,42,.48), transparent 55%); }
.history-visual blockquote { position: relative; z-index: 3; width: calc(100% - 55px); margin: -100px 0 0 -35px; padding: 31px 35px; color: var(--cream); background: var(--green); box-shadow: var(--shadow); font-family: Georgia, serif; font-size: 20px; line-height: 1.55; transform: rotate(-2deg); }
.history-visual blockquote::after { content: "✦"; position: absolute; right: 24px; bottom: 13px; color: var(--gold-2); }
.timeline { position: relative; margin-top: 90px; display: grid; grid-template-columns: repeat(6,1fr); }
.timeline::before { content: ""; position: absolute; left: 4%; right: 4%; top: 23px; height: 1px; background: var(--gold); }
.timeline article { position: relative; padding: 48px 18px 0; text-align: center; }
.timeline article::before { content: ""; position: absolute; top: 15px; left: 50%; width: 17px; height: 17px; border: 4px solid var(--paper); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 1px var(--gold); transform: translateX(-50%); }
.timeline .today::before { background: var(--green); box-shadow: 0 0 0 4px var(--gold), 0 0 0 5px var(--paper); }
.timeline span { display: block; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.timeline strong { display: block; margin: 4px 0 6px; color: var(--green); font-size: 14px; }
.timeline p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

/* Proposition */
.proposition { color: var(--cream); background: var(--green); overflow: hidden; }
.proposition::before { content: ""; position: absolute; inset: 0; opacity: .22; background: radial-gradient(circle at 20% 30%, rgba(184,138,68,.7), transparent 1px); background-size: 14px 14px; mask-image: linear-gradient(90deg, black, transparent 38%, black); }
.proposition .section-heading { position: relative; z-index: 1; }
.proposition h2 { color: var(--cream); }
.proposition .section-heading > p:last-child { color: rgba(245,241,232,.72); }
.occasion-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 23px; }
.occasion-card { overflow: hidden; color: var(--body); background: var(--cream); box-shadow: 0 20px 45px rgba(0,0,0,.18); }
.occasion-card.featured { transform: translateY(-18px); }
.occasion-card img { width: 100%; height: 235px; object-fit: cover; }
.occasion-card > div { padding: 29px 31px 34px; }
.occasion-card span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.occasion-card h3 { margin: 8px 0 17px; font-family: var(--title); font-size: 39px; font-weight: 400; }
.occasion-card ul { margin: 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.occasion-card li { position: relative; padding-left: 20px; font-size: 13px; }
.occasion-card li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* Identity */
.identity { background: var(--cream); }
.identity-intro { display: grid; grid-template-columns: 1fr 430px; gap: 70px; align-items: end; }
.identity-intro .section-heading { margin-bottom: 0; }
.identity-photo { height: 250px; overflow: hidden; box-shadow: var(--shadow-soft); transform: rotate(1.5deg); }
.identity-photo img { width: 100%; height: 100%; object-fit: cover; }
.identity-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.identity-card { position: relative; min-height: 405px; padding: 42px 36px; overflow: hidden; border: 1px solid var(--line-gold); background: rgba(255,253,247,.78); box-shadow: var(--shadow-soft); }
.identity-card::after { content: ""; position: absolute; right: -50px; bottom: -60px; width: 180px; height: 180px; border: 1px solid var(--line-gold); border-radius: 50%; }
.identity-card.purpose { color: var(--cream); background: var(--green); }
.identity-card.purpose h3, .identity-card.purpose p { color: inherit; }
.identity-index { position: absolute; top: 20px; right: 24px; color: rgba(184,138,68,.45); font-family: var(--title); font-size: 48px; line-height: 1; }
.identity-icon { width: 67px; height: 67px; margin-bottom: 29px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--gold-2); }
.identity-icon svg { width: 31px; height: 31px; }
.identity-card h3 { margin: 0 0 17px; font-family: var(--title); font-size: 38px; font-weight: 400; }
.identity-card p:last-child { margin: 0; font-size: 14px; }
.identity-card strong { color: var(--gold); }
.identity-card.purpose strong { color: var(--gold-2); }

/* Values */
.values { color: var(--cream); background:
  linear-gradient(115deg, rgba(15,56,42,.97), rgba(31,77,58,.96)),
  url('assets/historia-productos.jpg') center/cover; }
.values::before { content: ""; position: absolute; inset: 0; opacity: .15; background: repeating-linear-gradient(-8deg, rgba(255,255,255,.1) 0 1px, transparent 1px 7px); }
.values-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 390px 1fr; gap: 90px; }
.values-sticky { position: sticky; top: 130px; align-self: start; }
.values-sticky h2 { color: var(--cream); }
.values-sticky > p:not(.eyebrow) { color: rgba(245,241,232,.72); }
.script-quote { margin-top: 40px; padding-top: 25px; border-top: 1px solid rgba(184,138,68,.45); color: var(--gold-2); font-family: var(--script); font-size: 42px; line-height: 1; }
.values-list { display: grid; gap: 9px; }
.value-item { display: grid; grid-template-columns: 82px 1fr; gap: 24px; padding: 31px 0; border-bottom: 1px solid rgba(216,196,163,.21); }
.value-item:first-child { padding-top: 5px; }
.value-icon { width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgba(184,138,68,.62); border-radius: 50%; color: var(--gold-2); background: rgba(0,0,0,.12); }
.value-icon svg { width: 34px; height: 34px; }
.value-item span { color: var(--gold-2); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.value-item h3 { margin: 3px 0 8px; color: var(--cream); font-family: var(--title); font-size: 36px; font-weight: 400; letter-spacing: .04em; }
.value-item p { max-width: 670px; margin: 0; color: rgba(245,241,232,.73); font-size: 14px; }
.value-item strong { color: var(--cream); }

/* Promise */
.promise { background: var(--paper); }
.promise-grid { display: grid; grid-template-columns: minmax(360px,.75fr) minmax(0,1.15fr); align-items: center; gap: 85px; }
.promise-photo { position: relative; min-height: 650px; }
.promise-photo > img { width: calc(100% - 40px); height: 565px; object-fit: cover; box-shadow: var(--shadow); }
.promise-photo::before { content: ""; position: absolute; left: 27px; top: 28px; width: calc(100% - 40px); height: 565px; border: 1px solid var(--gold); z-index: -1; }
.promise-badge { position: absolute; right: 0; bottom: 0; width: 83%; padding: 25px 29px; color: var(--cream); background: var(--green); box-shadow: var(--shadow-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.promise-badge strong { display: block; margin-top: 7px; color: var(--gold-2); font-family: Georgia, serif; font-size: 17px; line-height: 1.5; text-transform: none; letter-spacing: 0; }
.promise-copy h2 { max-width: 690px; }
.promise-list { display: grid; gap: 2px; }
.promise-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.promise-list svg { width: 39px; height: 39px; padding: 8px; border-radius: 50%; color: var(--cream); background: var(--green); }
.promise-list p { margin: 0; }
.promise-list strong { display: block; margin-bottom: 3px; color: var(--green); font-size: 14px; }
.promise-list span { display: block; color: var(--muted); font-size: 13px; }
.service-steps { margin-top: 70px; display: grid; grid-template-columns: repeat(7,1fr); border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); }
.service-steps span { position: relative; min-height: 110px; padding: 27px 15px 23px; display: flex; align-items: center; justify-content: center; text-align: center; border-left: 1px solid var(--line); color: var(--green); font-size: 11px; font-weight: 700; }
.service-steps span:first-child { border-left: 0; }
.service-steps span::before { content: attr(data-step); }

/* Offers */
.offers { background: var(--cream); }
.offers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.offer-card { position: relative; overflow: hidden; background: var(--white); box-shadow: var(--shadow-soft); }
.offer-image { position: relative; height: 235px; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.offer-card:hover .offer-image img { transform: scale(1.04); }
.offer-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,56,42,.5), transparent 55%); }
.offer-image span { position: absolute; z-index: 2; left: 18px; bottom: 16px; padding: 7px 10px; color: var(--green-3); background: var(--gold-2); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.offer-body { padding: 28px 24px 30px; }
.offer-body h3 { min-height: 64px; margin: 5px 0 11px; font-family: var(--title); font-size: 31px; font-weight: 400; }
.offer-body > p:not(.eyebrow) { min-height: 66px; margin-bottom: 23px; color: var(--muted); font-size: 12px; }
.offer-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.offer-number { position: absolute; right: 13px; bottom: -8px; color: rgba(184,138,68,.13); font-family: var(--title); font-size: 68px; line-height: 1; }
.offers-note { margin-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 25px; color: var(--muted); font-size: 12px; }

/* Stores */
.stores { color: var(--cream); background: var(--green-3); }
.stores::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(var(--gold-2) .8px, transparent .8px); background-size: 13px 13px; }
.stores-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 370px 1fr; gap: 95px; }
.stores-copy { position: sticky; top: 120px; align-self: start; }
.stores-copy h2 { color: var(--cream); }
.stores-copy > p:not(.eyebrow) { color: rgba(245,241,232,.7); }
.social-card { margin-top: 32px; padding: 19px 20px; display: flex; gap: 15px; align-items: center; border: 1px solid rgba(184,138,68,.35); background: rgba(255,255,255,.04); }
.social-card svg { width: 34px; height: 34px; color: var(--gold-2); }
.social-card span { display: block; color: rgba(245,241,232,.63); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.social-card a { color: var(--cream); font-size: 13px; font-weight: 700; }
.stores-brand { width: 145px; height: 145px; margin-top: 30px; padding: 10px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); }
.stores-brand img { width: 100%; height: 100%; object-fit: contain; }
.stores-list { display: grid; gap: 15px; }
.store-card { display: grid; grid-template-columns: 80px 1fr 60px; align-items: center; gap: 25px; padding: 29px 28px; border: 1px solid rgba(216,196,163,.18); background: rgba(245,241,232,.055); transition: background .2s ease, transform .2s ease; }
.store-card:hover { transform: translateX(-5px); background: rgba(245,241,232,.09); }
.store-index { color: rgba(184,138,68,.45); font-family: var(--title); font-size: 54px; text-align: center; }
.store-main .eyebrow { margin-bottom: 1px; }
.store-main h3 { margin: 0 0 14px; color: var(--cream); font-family: var(--title); font-size: 38px; font-weight: 400; }
.store-detail { display: flex; gap: 11px; margin-top: 9px; }
.store-detail svg { flex: 0 0 auto; margin-top: 3px; color: var(--gold-2); }
.store-detail p { margin: 0; }
.store-detail strong, .store-detail span { display: block; }
.store-detail strong { color: var(--cream); font-size: 12px; }
.store-detail span { color: rgba(245,241,232,.6); font-size: 11px; }
.store-main small { display: inline-block; margin-top: 16px; padding: 4px 7px; color: var(--gold-2); border: 1px solid rgba(184,138,68,.27); font-size: 9px; letter-spacing: .05em; }
.store-action { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(184,138,68,.5); color: var(--gold-2); }
.store-action:hover { background: var(--gold-2); color: var(--green-3); }

/* Closing */
.closing { padding: 0; background: var(--paper); }
.closing-content { min-height: 590px; position: relative; overflow: hidden; display: flex; align-items: center; }
.closing-content > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.closing-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,56,42,.96) 0, rgba(15,56,42,.80) 48%, rgba(15,56,42,.15) 100%); }
.closing-copy { position: relative; z-index: 2; max-width: 650px; padding: 75px 70px; color: var(--cream); }
.closing-copy h2 { color: var(--cream); }
.closing-copy > p:not(.script-line) { max-width: 590px; color: rgba(245,241,232,.78); }
.closing-copy > div { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Footer */
.site-footer { padding: 70px 0 25px; color: var(--cream); background: #092b20; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .65fr .65fr .85fr; gap: 55px; }
.footer-brand img { width: 235px; padding: 10px 12px; background: var(--cream); }
.footer-brand p { max-width: 360px; margin: 20px 0 0; color: rgba(245,241,232,.58); font-size: 12px; }
.site-footer h3 { margin: 0 0 18px; color: var(--gold-2); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a { display: block; margin: 10px 0; color: rgba(245,241,232,.68); font-size: 12px; }
.site-footer a:hover { color: var(--gold-2); }
.footer-phrase { padding-left: 30px; border-left: 1px solid rgba(184,138,68,.3); }
.footer-phrase span { color: var(--gold-2); font-family: var(--script); font-size: 40px; line-height: 1; }
.footer-phrase p { color: rgba(245,241,232,.55); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom { margin-top: 52px; padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(245,241,232,.12); color: rgba(245,241,232,.38); font-size: 10px; }
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border: 3px solid var(--cream); border-radius: 50%; color: white; background: #2b7a4f; box-shadow: 0 12px 30px rgba(0,0,0,.25); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 29px; height: 29px; }

/* Reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { animation-duration: .01ms !important; } }

/* Responsive */
@media (max-width: 1120px) {
  .main-nav { gap: 15px; font-size: 11px; }
  .brand { width: 175px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) 430px; gap: 45px; }
  .hero-visual { min-height: 540px; }
  .intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .history-grid { gap: 55px; }
  .identity-card { padding: 36px 28px; }
  .offers-grid { grid-template-columns: repeat(2,1fr); }
  .stores-layout { grid-template-columns: 320px 1fr; gap: 55px; }
}

@media (max-width: 900px) {
  .site-header { background: rgba(251,247,238,.96); box-shadow: 0 8px 28px rgba(18,50,38,.08); }
  .brand { width: 180px; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 84px 16px auto; max-height: calc(100vh - 100px); overflow: auto; padding: 25px; display: grid; gap: 3px; color: var(--green); background: var(--cream); border: 1px solid var(--line-gold); box-shadow: var(--shadow); transform: translateY(-18px); opacity: 0; pointer-events: none; transition: .22s ease; }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav > a:not(.button) { padding: 11px 5px; border-bottom: 1px solid var(--line); }
  .main-nav > a::after { display: none; }
  .main-nav .button { margin-top: 12px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; gap: 55px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(620px, 100%); margin-inline: auto; }
  .intro-points { grid-template-columns: repeat(2,1fr); gap: 0; }
  .intro-points article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 18px; }
  .intro-points article:nth-child(4) { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 18px; }
  .history-grid { grid-template-columns: 1fr; }
  .history-visual { position: relative; top: auto; max-width: 650px; margin-inline: auto; }
  .timeline { grid-template-columns: repeat(3,1fr); row-gap: 30px; }
  .timeline::before { display: none; }
  .timeline article::before { top: 11px; }
  .occasion-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .occasion-card.featured { transform: none; }
  .occasion-card { display: grid; grid-template-columns: 43% 1fr; }
  .occasion-card img { height: 100%; }
  .identity-intro { grid-template-columns: 1fr; }
  .identity-photo { width: min(550px,100%); }
  .identity-grid { grid-template-columns: 1fr; }
  .identity-card { min-height: 0; }
  .values-layout { grid-template-columns: 1fr; gap: 50px; }
  .values-sticky { position: static; max-width: 720px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-photo { max-width: 620px; min-height: 590px; margin-inline: auto; }
  .service-steps { grid-template-columns: repeat(2,1fr); }
  .service-steps span:nth-child(odd) { border-left: 0; }
  .stores-layout { grid-template-columns: 1fr; }
  .stores-copy { position: static; }
  .stores-brand { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-phrase { grid-column: 1/-1; padding: 25px 0 0; border-left: 0; border-top: 1px solid rgba(184,138,68,.25); }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1200px); }
  .section { padding: 78px 0; }
  .site-header { padding: 6px 0; }
  .nav-shell { min-height: 64px; }
  .brand { width: 158px; height: 55px; }
  .main-nav { inset-top: 75px; }
  h2 { font-size: 50px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .hero-grid { padding-top: 125px; padding-bottom: 70px; }
  .hero h1 { font-size: 72px; }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 14px 20px; }
  .hero-visual { min-height: 455px; }
  .hero-photo { inset: 0 0 45px 26px; }
  .brand-seal { width: 120px; height: 120px; }
  .hero-note { right: -8px; width: 175px; padding: 15px 18px; }
  .hero-note span { font-size: 28px; }
  .hero-note strong { font-size: 23px; }
  .intro-strip { padding-top: 45px; }
  .intro-quote { gap: 10px; }
  .intro-quote > span { font-size: 66px; }
  .intro-quote p { font-size: 16px; }
  .intro-points { grid-template-columns: 1fr 1fr; }
  .intro-points article { padding: 0 12px; }
  .history-photo { height: 400px; }
  .history-visual blockquote { width: calc(100% - 15px); margin-left: -8px; padding: 24px; font-size: 17px; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .occasion-card { display: block; }
  .occasion-card img { height: 210px; }
  .identity-photo { height: 210px; }
  .identity-card { padding: 34px 26px; }
  .value-item { grid-template-columns: 63px 1fr; gap: 17px; }
  .value-icon { width: 61px; height: 61px; }
  .value-icon svg { width: 28px; height: 28px; }
  .promise-grid { gap: 60px; }
  .promise-photo { min-height: 490px; }
  .promise-photo > img, .promise-photo::before { height: 430px; }
  .promise-badge { width: 92%; }
  .service-steps { grid-template-columns: 1fr; }
  .service-steps span { min-height: 74px; border-left: 0; border-top: 1px solid var(--line); }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-body h3, .offer-body > p:not(.eyebrow) { min-height: 0; }
  .offers-note { align-items: flex-start; flex-direction: column; }
  .store-card { grid-template-columns: 50px 1fr; padding: 24px 18px; gap: 15px; }
  .store-index { font-size: 40px; }
  .store-action { grid-column: 2; width: 100%; height: 42px; }
  .closing-content { width: 100%; min-height: 610px; }
  .closing-overlay { background: rgba(15,56,42,.84); }
  .closing-copy { padding: 55px 28px; }
  .closing-copy > div .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-phrase { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

/* Final responsive refinements */
.hero-copy { min-width: 0; }
.hero h1 { max-width: 100%; font-size: clamp(70px, 8vw, 114px); }
@media (max-width: 620px) {
  .hero .eyebrow { max-width: 100%; font-size: 9.5px; letter-spacing: .115em; line-height: 1.55; }
  .hero h1 { max-width: 100%; font-size: 56px; line-height: .86; overflow-wrap: anywhere; }
  .hero .script-line { font-size: 38px; line-height: .92; }
  .hero-copy, .hero-grid { min-width: 0; }
}

/* Public-facing company introduction */
.about-public { padding-top: 92px; background: var(--paper); }
.about-public-grid { display: grid; grid-template-columns: minmax(390px,.84fr) minmax(0,1.1fr); gap: 90px; align-items: center; }
.about-public-visual { position: relative; min-height: 620px; }
.about-store-photo { position: absolute; inset: 0 65px 80px 0; overflow: hidden; box-shadow: var(--shadow); }
.about-store-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-small-photo { position: absolute; right: 0; bottom: 0; width: 58%; height: 210px; overflow: hidden; border: 10px solid var(--paper); box-shadow: var(--shadow-soft); }
.about-small-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-stamp { position: absolute; left: -24px; bottom: 28px; width: 175px; height: 175px; padding: 23px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 50%; color: var(--cream); background: var(--green); box-shadow: var(--shadow); transform: rotate(-7deg); }
.about-stamp::before { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(184,138,68,.72); border-radius: 50%; }
.about-stamp span, .about-stamp small { position: relative; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.about-stamp strong { position: relative; margin: 3px 0; color: var(--gold-2); font-family: var(--title); font-size: 28px; font-weight: 400; }
.about-public-copy h2 { max-width: 690px; }
.about-public-copy > p { max-width: 700px; }
.about-signature { margin: 30px 0 23px; padding: 18px 0; border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); color: var(--gold); font-family: var(--script); font-size: 38px; line-height: 1; }
@media (max-width: 900px) {
  .about-public-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-public-visual { width: min(650px,100%); min-height: 560px; }
}
@media (max-width: 620px) {
  .about-public-visual { min-height: 440px; }
  .about-store-photo { inset: 0 35px 60px 0; }
  .about-small-photo { width: 62%; height: 155px; border-width: 7px; }
  .about-stamp { left: -8px; bottom: 15px; width: 132px; height: 132px; padding: 15px; }
  .about-stamp strong { font-size: 22px; }
  .about-stamp small { font-size: 7px; }
  .about-signature { font-size: 32px; }
}

/* =========================================================
   MOBILE-FIRST REFINEMENTS · VERSION 3
   Optimized for 360–430 px screens and touch navigation.
   ========================================================= */

:root {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

img { height: auto; }
main section { content-visibility: auto; contain-intrinsic-size: 850px; }
.hero, .intro-strip { content-visibility: visible; contain-intrinsic-size: auto; }

.mobile-action-bar { display: none; }

@media (hover: none) {
  .button:hover,
  .store-card:hover,
  .floating-whatsapp:hover { transform: none; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 32px); }

  html {
    scroll-padding-top: calc(78px + var(--safe-top));
    -webkit-text-size-adjust: 100%;
  }

  body {
    padding-bottom: calc(72px + var(--safe-bottom));
    font-size: 15px;
    line-height: 1.62;
  }

  .container { max-width: 100%; }
  .section { padding: 64px 0; }
  .eyebrow { margin-bottom: 9px; font-size: 10px; letter-spacing: .145em; }
  h2 { margin-bottom: 18px; font-size: clamp(40px, 13vw, 50px); line-height: .94; }
  h3 { overflow-wrap: anywhere; }
  .lead { font-size: 16px; line-height: 1.55; }
  .section-heading { margin-bottom: 30px; }

  /* Compact fixed header */
  .site-header,
  .site-header.is-scrolled {
    padding: max(5px, var(--safe-top)) 0 5px;
    background: rgba(251,247,238,.97);
    box-shadow: 0 7px 22px rgba(18,50,38,.10);
    backdrop-filter: blur(14px);
  }
  .nav-shell { min-height: 58px; gap: 14px; }
  .brand { width: 145px; height: 50px; }
  .brand img { max-height: 48px; }
  .menu-button {
    display: grid;
    place-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    padding: 10px;
    border-color: rgba(31,77,58,.22);
    box-shadow: 0 4px 14px rgba(31,77,58,.08);
  }
  .menu-button span { width: 21px; margin: 3px 0; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .main-nav {
    top: calc(70px + var(--safe-top));
    right: 12px;
    bottom: calc(82px + var(--safe-bottom));
    left: 12px;
    inset-block-end: calc(82px + var(--safe-bottom));
    max-height: none;
    align-content: start;
    gap: 0;
    padding: 12px 18px 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 14px;
    transform: translateY(-12px) scale(.985);
  }
  .main-nav.is-open { transform: none; }
  .main-nav > a:not(.button) {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 4px;
    font-size: 14px;
  }
  .main-nav .button {
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
  }
  .social-nav { justify-content: flex-start; }

  /* Hero: first-screen readability and clear CTAs */
  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: calc(104px + var(--safe-top));
    padding-bottom: 58px;
  }
  .hero-copy { max-width: none; }
  .hero .eyebrow { max-width: 32ch; font-size: 9px; letter-spacing: .115em; }
  .hero h1 {
    max-width: 330px;
    margin-bottom: 8px;
    font-size: clamp(52px, 16vw, 64px);
    line-height: .84;
    overflow-wrap: normal;
  }
  .hero h1 span { font-size: .68em; }
  .hero .script-line { margin: 17px 0 14px; font-size: clamp(35px, 11vw, 43px); }
  .hero-lead { margin-bottom: 24px; font-size: 14px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .button { width: auto; min-width: 0; min-height: 50px; padding: 0 12px; font-size: 10px; }
  .hero-trust {
    margin-top: 27px;
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
  }
  .hero-trust span { justify-content: center; gap: 5px; font-size: 8px; letter-spacing: .055em; }
  .hero-trust svg { width: 19px; height: 19px; }
  .hero-visual { min-height: 370px; margin-top: 0; }
  .hero-photo { inset: 0 3px 38px 22px; border-radius: 43% 43% 7px 7px; }
  .brand-seal { left: -3px; bottom: 12px; width: 104px; height: 104px; padding: 7px; }
  .hero-note { right: -4px; bottom: 0; width: 158px; padding: 13px 15px 15px; }
  .hero-note span { font-size: 25px; }
  .hero-note strong { font-size: 21px; }
  .botanical { display: none; }
  .torn-edge { height: 24px; }

  /* Quote / benefit strip */
  .intro-strip { padding: 44px 0 56px; }
  .intro-grid { gap: 28px; }
  .intro-quote { align-items: flex-start; }
  .intro-quote > span { font-size: 55px; }
  .intro-quote p { font-size: 15px; line-height: 1.55; }
  .intro-points {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(255,253,247,.55);
  }
  .intro-points article,
  .intro-points article:nth-child(3),
  .intro-points article:nth-child(4) {
    min-height: 112px;
    margin: 0;
    padding: 18px 14px;
    border: 0;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }
  .intro-points article:nth-child(odd) { border-left: 0; }
  .intro-points article:nth-child(-n+2) { border-top: 0; }

  /* About and history */
  .about-public { padding-top: 64px; }
  .about-public-grid { gap: 38px; }
  .about-public-visual { min-height: 360px; }
  .about-store-photo { inset: 0 24px 48px 0; }
  .about-small-photo { width: 58%; height: 130px; border-width: 6px; }
  .about-stamp { left: -4px; bottom: 9px; width: 112px; height: 112px; padding: 12px; }
  .about-stamp strong { font-size: 19px; }
  .about-stamp span, .about-stamp small { font-size: 6.5px; }
  .about-signature { margin: 24px 0 20px; font-size: 29px; }
  .text-link { min-height: 44px; align-items: center; font-size: 10px; line-height: 1.4; }

  .history-grid { gap: 40px; }
  .history-photo { height: 330px; }
  .history-visual blockquote { width: 100%; margin: -22px 0 0; padding: 21px; font-size: 15px; }
  .history-more summary { min-height: 48px; display: flex; align-items: center; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .timeline article {
    min-height: 0;
    padding: 16px 16px 16px 46px;
    border: 1px solid var(--line);
    background: rgba(255,253,247,.55);
  }
  .timeline article::before { top: 20px; left: 17px; }

  /* What we do */
  .occasion-grid { gap: 14px; }
  .occasion-card { border-radius: 0; }
  .occasion-card img { height: 190px; }
  .occasion-card > div { padding: 24px 21px 26px; }
  .occasion-card h3 { font-size: 30px; }

  /* Identity cards */
  .identity-intro { gap: 20px; }
  .identity-photo { height: 190px; }
  .identity-grid { gap: 12px; }
  .identity-card { padding: 28px 22px; }
  .identity-card h3 { font-size: 28px; }
  .identity-card p:last-child { font-size: 13px; }
  .identity-icon { width: 52px; height: 52px; }

  /* Values */
  .values-layout { gap: 34px; }
  .values-sticky .script-quote { font-size: 31px; }
  .values-list { gap: 0; }
  .value-item {
    grid-template-columns: 50px 1fr;
    gap: 13px;
    padding: 21px 0;
  }
  .value-icon { width: 50px; height: 50px; }
  .value-icon svg { width: 23px; height: 23px; }
  .value-item h3 { margin-bottom: 6px; font-size: 23px; }
  .value-item p { font-size: 12.5px; line-height: 1.55; }

  /* Promise and service swipe rail */
  .promise-grid { gap: 44px; }
  .promise-photo { min-height: 400px; }
  .promise-photo > img, .promise-photo::before { height: 350px; }
  .promise-badge { width: calc(100% - 20px); padding: 17px; font-size: 11px; }
  .promise-list > div { grid-template-columns: 38px 1fr; gap: 13px; padding: 15px 0; }
  .promise-list svg { width: 34px; height: 34px; padding: 7px; }
  .promise-list strong { font-size: 13px; }
  .promise-list span { font-size: 11.5px; }
  .service-steps {
    width: calc(100% - 16px);
    margin-top: 42px;
    padding: 0 0 10px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border: 0;
    scrollbar-width: none;
  }
  .service-steps::-webkit-scrollbar { display: none; }
  .service-steps span,
  .service-steps span:nth-child(odd) {
    flex: 0 0 76%;
    min-height: 92px;
    padding: 20px;
    scroll-snap-align: start;
    border: 1px solid var(--line-gold);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    font-size: 11px;
  }

  /* Offers become a touch-friendly swipe carousel */
  .offers-grid {
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    display: flex;
    gap: 13px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .offers-grid::-webkit-scrollbar { display: none; }
  .offer-card { flex: 0 0 86%; scroll-snap-align: start; }
  .offer-image { height: 205px; }
  .offer-body { padding: 23px 20px 26px; }
  .offer-body h3 { font-size: 29px; }
  .offer-link { min-height: 44px; }
  .offers-note { margin-top: 22px; gap: 8px; }

  /* Stores */
  .stores-layout { gap: 34px; }
  .social-card { margin-top: 24px; padding: 15px; }
  .store-card {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 20px 15px;
  }
  .store-index { font-size: 34px; }
  .store-main h3 { margin-bottom: 11px; font-size: 32px; }
  .store-detail { gap: 8px; }
  .store-detail strong { font-size: 11px; }
  .store-detail span { font-size: 10px; line-height: 1.45; }
  .store-action { grid-column: 1 / -1; width: 100%; height: 46px; }

  /* Closing and footer */
  .closing-content { min-height: 540px; }
  .closing-content > img { object-position: 60% center; }
  .closing-copy { padding: 48px 23px; }
  .closing-copy .script-line { font-size: 38px; }
  .closing-copy > div { display: grid; grid-template-columns: 1fr; }
  .closing-copy > div .button { width: 100%; }
  .site-footer { padding: 54px 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { width: 190px; }
  .footer-phrase span { font-size: 33px; }
  .footer-bottom { margin-top: 34px; padding-bottom: 6px; }

  /* Fixed bottom app bar */
  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(64px + var(--safe-bottom));
    padding: 7px 12px calc(7px + var(--safe-bottom));
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 8px;
    background: rgba(251,247,238,.97);
    border-top: 1px solid rgba(31,77,58,.16);
    box-shadow: 0 -8px 25px rgba(15,56,42,.12);
    backdrop-filter: blur(15px);
  }
  .mobile-action-link {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(31,77,58,.23);
    color: var(--green);
    background: var(--cream);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
  }
  .mobile-action-link svg { width: 20px; height: 20px; }
  .mobile-action-whatsapp { color: white; border-color: #2b7a4f; background: #2b7a4f; }
  .floating-whatsapp { display: none; }
}

@media (max-width: 370px) {
  :root { --container: calc(100% - 24px); }
  .brand { width: 132px; }
  .hero h1 { font-size: 49px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-trust span { font-size: 7px; }
  .hero-visual { min-height: 340px; }
  .brand-seal { width: 92px; height: 92px; }
  .hero-note { width: 145px; }
  .offer-card { flex-basis: 91%; }
}

.hero h1 strong { display: block; color: var(--cream); font: inherit; }
@media (max-width: 620px) {
  .hero h1 { max-width: 100%; font-size: clamp(47px, 13.6vw, 53px); letter-spacing: 0; }
  .hero h1 strong { font-size: .94em; letter-spacing: -.005em; }
}
