@charset "UTF-8";

:root {
  --ink: #1d241f;
  --muted: #68716b;
  --paper: #fffdf9;
  --cream: #fff7ed;
  --cream-2: #f9efe2;
  --line: #e9ded1;
  --orange: #ed6d2d;
  --orange-dark: #c84e17;
  --orange-action: #a63e12;
  --green: #0a6b45;
  --green-dark: #064b34;
  --lime: #dff19a;
  --white: #fff;
  --shadow-sm: 0 8px 24px rgba(62, 42, 20, .08);
  --shadow-lg: 0 24px 80px rgba(56, 37, 16, .16);
  --radius: 22px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #2f8ad8; outline-offset: 3px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; transform: translateY(-160%); color: var(--white); background: var(--green-dark); border-radius: 8px; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.service-strip { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 6px 16px; color: #244132; background: #e7f0c3; font-size: 12px; font-weight: 700; letter-spacing: .025em; }
.service-strip__dot { width: 7px; height: 7px; border-radius: 50%; background: #2b8a3e; box-shadow: 0 0 0 4px rgba(43, 138, 62, .12); }
.service-strip a { text-underline-offset: 3px; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid transparent; background: rgba(255, 253, 249, .88); backdrop-filter: blur(18px); transition: box-shadow .25s, border-color .25s; }
.site-header.is-scrolled { border-color: rgba(33, 46, 37, .08); box-shadow: 0 8px 28px rgba(32, 38, 33, .07); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; }
.brand-mark { width: 43px; height: 43px; display: block; flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: Georgia, serif; font-size: 24px; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; color: var(--orange-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { position: relative; color: #4e5852; font-size: 14px; font-weight: 650; text-decoration: none; }
.site-nav > a:not(.button, .nav-whatsapp)::after { content: ""; height: 2px; position: absolute; right: 0; bottom: -8px; left: 0; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-whatsapp { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.nav-whatsapp svg { width: 18px; fill: currentColor; }
.menu-button { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-button span:not(.sr-only) { width: 24px; height: 2px; display: block; margin: 5px 0; background: var(--ink); transition: transform .25s, opacity .25s; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; padding: 13px 24px; color: var(--white); background: var(--orange-action); border: 1px solid var(--orange-action); border-radius: 999px; box-shadow: 0 8px 18px rgba(166, 62, 18, .24); font-size: 14px; font-weight: 800; text-decoration: none; transition: transform .2s var(--ease), background .2s, box-shadow .2s; }
.button:hover { background: #82300e; box-shadow: 0 12px 24px rgba(130, 48, 14, .28); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 9px 18px; color: var(--white) !important; }
.button--hero { min-width: 175px; }
.button--light { color: var(--green-dark); background: var(--white); border-color: var(--white); box-shadow: none; }
.button--light:hover { color: var(--white); background: var(--orange-action); border-color: var(--orange-action); }

.hero { min-height: 730px; position: relative; overflow: hidden; padding: 76px 0 30px; background: linear-gradient(145deg, #fffaf4 0%, #fffdf9 56%, #f5f1df 100%); }
.hero::after { content: ""; height: 1px; position: absolute; right: 0; bottom: 106px; left: 0; background: var(--line); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow--one { width: 420px; height: 420px; top: -180px; right: 8%; background: rgba(241, 167, 83, .11); }
.hero-glow--two { width: 280px; height: 280px; bottom: 40px; left: -170px; background: rgba(102, 142, 80, .1); }
.hero-grid { min-height: 540px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 74px; position: relative; z-index: 1; }
.hero-copy { max-width: 620px; }
.eyebrow, .kicker { color: var(--orange-dark); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.hero h1, .section h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: .96; }
.hero h1 { max-width: 700px; font-size: clamp(66px, 7vw, 102px); }
.hero h1 em, .section h2 em { color: var(--orange); font-weight: 500; }
.hero-lead { max-width: 570px; margin: 27px 0 30px; color: #515c55; font-family: Georgia, serif; font-size: 21px; line-height: 1.5; }
.order-card { max-width: 590px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 10px 10px 17px; border: 1px solid var(--line); background: rgba(255, 255, 255, .93); border-radius: 999px; box-shadow: var(--shadow-sm); }
.order-location { display: flex; align-items: center; gap: 11px; min-width: 0; }
.location-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: var(--orange); background: #fff0e6; border-radius: 50%; }
.location-icon svg { width: 20px; fill: currentColor; }
.order-location > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.order-location small { color: var(--muted); font-size: 10px; font-weight: 650; }
.order-location strong { margin-top: 4px; font-size: 14px; }
.quick-links { display: flex; gap: 25px; margin-top: 26px; }
.quick-links a { display: inline-flex; align-items: center; gap: 10px; min-width: 0; text-decoration: none; }
.quick-links a:hover strong { color: var(--orange-dark); }
.quick-icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; font-size: 19px; }
.quick-icon--orange { background: #fde2ce; }
.quick-icon--blue { background: #dcedf7; }
.quick-icon--yellow { background: #f9e9ac; }
.quick-links a > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.quick-links strong { font-size: 12px; transition: color .2s; }
.quick-links small { margin-top: 4px; color: var(--muted); font-size: 10px; }

.hero-visual { min-height: 555px; display: grid; place-items: center; position: relative; }
.hero-visual::before { content: ""; width: 460px; height: 460px; position: absolute; border: 1px solid rgba(10, 107, 69, .16); border-radius: 50%; }
.hero-visual::after { content: ""; width: 350px; height: 350px; position: absolute; background: #e8efc8; border-radius: 50%; box-shadow: 0 0 0 28px rgba(232, 239, 200, .35); }
.phone-shell { width: 285px; height: 568px; position: relative; z-index: 2; overflow: hidden; padding: 9px; border: 7px solid #183629; background: #183629; border-radius: 44px; box-shadow: 0 38px 80px rgba(12, 60, 41, .27), inset 0 0 0 1px rgba(255,255,255,.18); transform: rotate(2.5deg); }
.phone-top { height: 24px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; color: var(--white); font-size: 8px; }
.phone-island { width: 73px; height: 18px; background: #081d14; border-radius: 999px; }
.phone-content { height: calc(100% - 24px); overflow: hidden; padding: 17px 14px 0; background: #fffdf9; border-radius: 30px 30px 35px 35px; }
.phone-greeting { display: flex; align-items: center; justify-content: space-between; }
.phone-greeting > span:first-child { display: flex; flex-direction: column; line-height: 1.15; }
.phone-greeting small { color: #7a857e; font-size: 7px; }
.phone-greeting strong { margin-top: 4px; font-size: 10px; }
.avatar { width: 29px; height: 29px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-family: Georgia, serif; font-size: 13px; font-weight: 800; }
.phone-search { margin-top: 15px; padding: 10px 11px; color: #8d9690; border: 1px solid #ece6df; background: var(--white); border-radius: 10px; font-size: 8px; }
.phone-banner { min-height: 105px; display: flex; align-items: center; justify-content: space-between; margin-top: 13px; padding: 15px; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--green-dark), var(--green)); border-radius: 15px; }
.phone-banner span:first-child { display: flex; flex-direction: column; }
.phone-banner small { color: var(--lime); font-size: 6px; font-weight: 850; letter-spacing: .11em; }
.phone-banner strong { margin-top: 8px; font-family: Georgia, serif; font-size: 13px; line-height: 1.2; }
.scooter { font-size: 42px; filter: drop-shadow(0 5px 7px rgba(0,0,0,.2)); transform: translateX(8px); }
.phone-section-title { display: flex; justify-content: space-between; margin: 16px 1px 9px; font-size: 8px; }
.phone-section-title span { color: var(--orange); font-size: 7px; }
.phone-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.phone-categories span { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.phone-categories i { width: 43px; height: 43px; display: grid; place-items: center; background: #f7eee4; border-radius: 13px; font-size: 20px; font-style: normal; }
.phone-categories small { font-size: 6px; font-weight: 700; }
.phone-store { display: flex; gap: 10px; padding: 9px; border: 1px solid #eee7df; border-radius: 13px; box-shadow: 0 4px 10px rgba(42,36,30,.05); }
.store-art { width: 66px; height: 55px; display: grid; place-items: center; flex: 0 0 auto; background: linear-gradient(135deg, #f6c76c, #e97b39); border-radius: 10px; font-size: 27px; }
.phone-store > span:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.phone-store strong { font-size: 8px; }
.phone-store small { margin-top: 4px; color: #77817a; font-size: 6px; }
.phone-store small b { color: var(--green); }
.phone-store .offer { padding: 3px 5px; color: var(--orange-dark); background: #fff0e6; border-radius: 4px; font-weight: 700; }
.phone-nav { display: flex; justify-content: space-between; margin: 17px -14px 0; padding: 9px 18px; border-top: 1px solid #eee8e1; background: var(--white); }
.phone-nav span { display: flex; flex-direction: column; align-items: center; color: #7e8881; font-size: 12px; line-height: 1; }
.phone-nav span:first-child { color: var(--green); }
.phone-nav small { margin-top: 4px; font-size: 5px; }
.local-stamp { width: 74px; height: 74px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: absolute; z-index: 4; top: 17px; right: 22px; color: var(--green-dark); background: var(--lime); border: 2px solid var(--white); border-radius: 50%; box-shadow: var(--shadow-sm); transform: rotate(9deg); }
.local-stamp span { font-size: 8px; font-weight: 900; letter-spacing: .08em; line-height: 1; }
.local-stamp small { margin-top: 4px; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.floating-card { display: flex; align-items: center; gap: 9px; position: absolute; z-index: 4; padding: 11px 15px; border: 1px solid rgba(255,255,255,.82); background: rgba(255, 255, 255, .93); border-radius: 14px; box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.floating-card > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 12px; font-weight: 900; }
.floating-card div { display: flex; flex-direction: column; line-height: 1.15; }
.floating-card strong { font-size: 9px; }
.floating-card small { margin-top: 4px; color: var(--muted); font-size: 7px; }
.floating-card--delivery { right: -7px; bottom: 95px; }
.floating-card--support { bottom: 29px; left: -17px; }
.floating-card--support > span { background: var(--orange); }

.confidence-row { min-height: 106px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; position: relative; z-index: 2; margin-top: 45px; }
.confidence-row > div { display: flex; align-items: center; gap: 12px; padding-inline: 25px; border-right: 1px solid var(--line); }
.confidence-row > div:first-child { padding-left: 0; }
.confidence-row > div:last-child { border-right: 0; }
.confidence-row > div > span { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; color: var(--green); background: #edf3d7; border-radius: 50%; font-size: 18px; }
.confidence-row p { display: flex; flex-direction: column; margin: 0; line-height: 1.15; }
.confidence-row strong { font-size: 11px; }
.confidence-row small { margin-top: 5px; color: var(--muted); font-size: 9px; }

.section { padding: 112px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2, .how h2, .local h2, .faq h2 { margin-top: 12px; font-size: clamp(44px, 5vw, 67px); }
.section-heading > p { max-width: 430px; margin: 0 0 4px; color: var(--muted); font-size: 16px; }
.section-heading--center { justify-content: center; text-align: center; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { min-height: 305px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; padding: 29px; border: 1px solid rgba(37, 50, 41, .08); border-radius: var(--radius); box-shadow: 0 2px 0 rgba(29,36,31,.03); text-decoration: none; isolation: isolate; transition: transform .3s var(--ease), box-shadow .3s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-card:nth-child(-n+3) { grid-column: span 4; }
.service-card:nth-child(n+4) { min-height: 268px; grid-column: span 4; }
.service-card::before { content: ""; width: 185px; height: 185px; position: absolute; z-index: -1; top: -74px; right: -48px; border-radius: 50%; background: rgba(255,255,255,.42); transition: transform .4s var(--ease); }
.service-card:hover::before { transform: scale(1.15); }
.service-card--food { background: #fde7d7; }
.service-card--fresh { background: #e8f0cb; }
.service-card--meat { background: #f4ded9; }
.service-card--parcel { background: #dfeef4; }
.service-card--snack { background: #f8e9b9; }
.service-card--care { background: #e7e3ef; }
.service-card__tag { align-self: flex-start; padding: 5px 8px; color: rgba(29,36,31,.68); border: 1px solid rgba(29,36,31,.13); border-radius: 999px; background: rgba(255,255,255,.3); font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.service-card__art { position: absolute; top: 42px; right: 24px; font-size: 70px; filter: drop-shadow(0 14px 14px rgba(58,42,27,.16)); transform: rotate(5deg); transition: transform .4s var(--ease); }
.service-card:hover .service-card__art { transform: rotate(-2deg) scale(1.08); }
.service-card h3 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 27px; font-weight: 600; letter-spacing: -.02em; }
.service-card p { max-width: 280px; margin: 0; color: rgba(29,36,31,.7); font-size: 13px; }
.service-card__cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 19px; color: var(--green-dark); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.service-card__cta b { transition: transform .2s; }
.service-card:hover .service-card__cta b { transform: translateX(5px); }

.how { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 110px; }
.how-copy { position: sticky; top: 135px; }
.how-copy p { max-width: 430px; margin: 24px 0 28px; color: var(--muted); font-size: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-size: 13px; font-weight: 850; text-decoration: none; border-bottom: 1px solid rgba(10,107,69,.35); }
.text-link:hover { color: var(--orange-dark); }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { min-height: 155px; display: grid; grid-template-columns: 36px 68px 1fr; align-items: center; gap: 23px; position: relative; padding: 32px 0; border-bottom: 1px solid #dfd3c5; }
.steps li:first-child { padding-top: 10px; }
.steps li:last-child { border-bottom: 0; }
.step-number { align-self: start; margin-top: 19px; color: var(--orange-dark); font-family: Georgia, serif; font-size: 12px; font-style: italic; }
.step-icon { width: 66px; height: 66px; display: grid; place-items: center; color: var(--green); background: var(--white); border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow-sm); font-size: 26px; }
.steps h3 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 25px; }
.steps p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; }

.local { background: var(--paper); }
.local-panel { min-height: 515px; display: grid; grid-template-columns: 1fr .9fr; position: relative; overflow: hidden; color: var(--white); background: var(--green-dark); border-radius: 32px; box-shadow: var(--shadow-lg); }
.local-copy { padding: 68px 30px 68px 70px; }
.kicker--light { color: var(--lime); }
.local h2 { margin-top: 16px; font-size: clamp(46px, 5vw, 66px); }
.local h2 em { color: #f4a56c; }
.local-copy > p { max-width: 540px; margin: 24px 0 29px; color: rgba(255,255,255,.72); font-size: 15px; }
.local-points { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 25px; }
.local-points span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.86); font-size: 12px; font-weight: 650; }
.local-points i { width: 21px; height: 21px; display: grid; place-items: center; color: var(--green-dark); background: var(--lime); border-radius: 50%; font-size: 10px; font-style: normal; font-weight: 900; }
.map-art { min-height: 100%; position: relative; overflow: hidden; background: #0e5c42; }
.map-art::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px); background-size: 18px 18px; }
.map-art svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.map-art .road { fill: none; stroke: rgba(223,241,154,.22); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 8 15; }
.map-art circle { fill: rgba(223,241,154,.07); stroke: rgba(223,241,154,.35); stroke-width: 2; }
.map-art circle:last-child { fill: var(--orange); stroke: var(--white); stroke-width: 6; }
.map-label { display: flex; align-items: center; gap: 10px; position: absolute; z-index: 2; top: 50%; left: 50%; padding: 10px 15px 10px 10px; background: var(--white); border-radius: 999px; box-shadow: var(--shadow-lg); transform: translate(-50%, -50%); }
.brand-mark--small { width: 33px; height: 33px; }
.map-label p { display: flex; flex-direction: column; margin: 0; color: var(--ink); line-height: 1.1; }
.map-label strong { font-size: 11px; }
.map-label small { margin-top: 4px; color: var(--muted); font-size: 7px; }
.map-pin { width: 47px; height: 47px; display: grid; place-items: center; position: absolute; z-index: 2; background: #edf3d7; border: 3px solid var(--white); border-radius: 50% 50% 50% 0; box-shadow: var(--shadow-sm); font-size: 19px; transform: rotate(-45deg); }
.map-pin::first-letter { transform: rotate(45deg); }
.map-pin--one { top: 17%; left: 18%; }
.map-pin--two { right: 17%; bottom: 20%; }
.map-pin--three { top: 21%; right: 16%; }

.reassurance { padding-top: 10px; }
.reassurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reassurance-grid article { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.reassurance-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--orange-dark); background: #fff0e6; border-radius: 50%; font-family: Georgia, serif; font-size: 23px; }
.reassurance-grid h3 { margin: 23px 0 8px; font-family: Georgia, serif; font-size: 22px; }
.reassurance-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.app-cta { padding-top: 20px; }
.app-panel { min-height: 460px; display: grid; grid-template-columns: 1fr .75fr; align-items: center; position: relative; overflow: hidden; color: var(--white); background: var(--orange-action); border-radius: 32px; }
.app-panel__pattern { position: absolute; right: -50px; bottom: -5px; left: -10px; overflow: hidden; color: rgba(255,255,255,.08); font-family: Georgia, serif; font-size: 94px; font-weight: 700; letter-spacing: -.04em; line-height: .8; white-space: nowrap; transform: rotate(-4deg); }
.app-copy { position: relative; z-index: 2; padding: 65px 0 65px 70px; }
.app-copy h2 { margin-top: 14px; font-size: clamp(48px, 5.4vw, 72px); }
.app-copy > p { max-width: 480px; margin: 20px 0 28px; color: rgba(255,255,255,.94); }
.app-buttons { display: flex; align-items: center; gap: 12px; }
.play-button { min-height: 52px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 17px; color: var(--white); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; text-decoration: none; }
.play-button > span:first-child { font-size: 19px; }
.play-button > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.play-button small { font-size: 6px; letter-spacing: .09em; }
.play-button strong { margin-top: 5px; font-size: 13px; }
.play-button:hover { background: rgba(255,255,255,.12); }
.app-visual { min-height: 460px; display: grid; place-items: center; position: relative; z-index: 2; }
.mini-phone { width: 218px; height: 380px; display: flex; flex-direction: column; align-items: center; position: absolute; bottom: -55px; padding: 65px 20px; color: var(--ink); border: 7px solid var(--green-dark); background: linear-gradient(#fffdf9, #f8f0e6); border-radius: 38px; box-shadow: 0 30px 60px rgba(80,28,5,.28); transform: rotate(5deg); }
.mini-phone::before { content: ""; width: 68px; height: 17px; position: absolute; top: 11px; background: var(--green-dark); border-radius: 999px; }
.mini-logo { width: 64px; height: 64px; display: block; margin-bottom: 23px; }
.mini-logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
.mini-phone strong { font-family: Georgia, serif; font-size: 25px; }
.mini-phone small { margin-top: 9px; color: var(--muted); font-size: 10px; }
.mini-phone i { margin-top: 42px; padding: 11px 17px; color: var(--white); background: var(--orange); border-radius: 999px; font-size: 9px; font-style: normal; font-weight: 800; }
.app-orbit { width: 53px; height: 53px; display: grid; place-items: center; position: absolute; z-index: 3; border: 3px solid rgba(255,255,255,.8); background: var(--white); border-radius: 50%; box-shadow: var(--shadow-sm); font-size: 23px; }
.app-orbit--one { top: 60px; left: 40px; transform: rotate(-10deg); }
.app-orbit--two { top: 115px; right: 38px; transform: rotate(8deg); }
.app-orbit--three { bottom: 65px; left: 28px; transform: rotate(6deg); }

.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro p { margin: 20px 0 25px; color: var(--muted); }
.faq-list details { border-bottom: 1px solid #ddcfbf; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 0; cursor: pointer; font-family: Georgia, serif; font-size: 21px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; color: var(--orange-dark); border: 1px solid #d8c8b7; border-radius: 50%; font-family: Arial, sans-serif; font-size: 18px; font-weight: 400; transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -8px 50px 27px 0; color: var(--muted); font-size: 14px; }
.faq-list details p a { color: var(--green); }

.site-footer { color: rgba(255,255,255,.75); background: #14291f; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 55px; padding: 70px 0 55px; }
.brand--footer { color: var(--white); }
.brand--footer .brand-copy small { color: #f3a06e; }
.footer-brand p { max-width: 290px; margin: 20px 0 0; color: rgba(255,255,255,.52); font-size: 13px; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-main h2 { margin: 4px 0 10px; color: var(--white); font-family: Arial, sans-serif; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.footer-main > div > a { color: rgba(255,255,255,.64); font-size: 12px; text-decoration: none; }
.footer-main > div > a:hover { color: var(--lime); }
.footer-main address { margin-top: 5px; color: rgba(255,255,255,.45); font-size: 11px; font-style: normal; line-height: 1.7; }
.footer-bottom { min-height: 69px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.7); font-size: 11px; }
.mobile-order-bar { display: none; }

.reveal { opacity: 1; transform: none; }
.has-js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-grid .reveal:nth-child(2), .reassurance-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .reassurance-grid .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(5) { transition-delay: .08s; }
.service-grid .reveal:nth-child(6) { transition-delay: .16s; }

@media (max-width: 1040px) {
  .site-nav { gap: 17px; }
  .site-nav > a { font-size: 12px; }
  .hero-grid { gap: 30px; }
  .floating-card--delivery { right: -20px; }
  .how-grid, .faq-grid { gap: 60px; }
  .local-copy { padding-left: 48px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 88px; }
  .container { width: min(100% - 32px, var(--container)); }
  .has-js .menu-button { display: block; position: relative; z-index: 102; }
  .has-js .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .has-js .menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .has-js .menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .has-js .site-nav { height: calc(100dvh - 34px); min-height: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; position: fixed; z-index: 101; inset: 34px 0 0; overflow-y: auto; overscroll-behavior: contain; padding: 94px 28px 40px; background: var(--paper); visibility: hidden; pointer-events: none; transform: translateX(100%); transition: transform .35s var(--ease); }
  .has-js .site-nav.is-open { visibility: visible; pointer-events: auto; transform: translateX(0); }
  .has-js .site-nav > a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 27px; }
  .has-js .site-nav > a::after { display: none; }
  .has-js .site-nav .nav-whatsapp { font-family: Arial, sans-serif; font-size: 17px; }
  .has-js .site-nav .button { min-height: 54px; margin-top: 23px; padding: 12px 24px; border-bottom: 0; font-family: Arial, sans-serif; font-size: 14px; }
  html:not(.has-js) .header-inner { flex-wrap: wrap; padding-block: 10px; }
  html:not(.has-js) .site-nav { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
  html:not(.has-js) .site-nav > a { padding: 8px 0; }
  .hero { padding-top: 55px; }
  .hero::after { bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 690px; margin-inline: auto; text-align: center; }
  .hero-lead, .order-card { margin-inline: auto; }
  .quick-links { justify-content: center; }
  .hero-visual { min-height: 590px; }
  .phone-shell { width: 292px; height: 575px; }
  .floating-card--delivery { right: 8%; }
  .floating-card--support { left: 7%; }
  .local-stamp { right: 14%; }
  .confidence-row { grid-template-columns: 1fr 1fr; margin-top: 35px; padding: 25px 0; }
  .confidence-row > div { min-height: 68px; border-bottom: 1px solid var(--line); }
  .confidence-row > div:nth-child(2) { border-right: 0; }
  .confidence-row > div:nth-child(n+3) { border-bottom: 0; }
  .service-card:nth-child(n) { grid-column: span 6; }
  .how-grid, .faq-grid { grid-template-columns: 1fr; }
  .how-copy, .faq-intro { position: static; }
  .how-copy { max-width: 620px; }
  .local-panel { grid-template-columns: 1fr; }
  .map-art { min-height: 360px; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .app-panel { grid-template-columns: 1fr 1fr; }
  .app-copy { padding-left: 45px; }
  .app-orbit--one { left: 3px; }
  .app-orbit--two { right: 3px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 600px) {
  body { padding-bottom: 74px; }
  .service-strip { min-height: 30px; font-size: 10px; }
  .service-strip a { display: none; }
  .header-inner { min-height: 66px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 7px; }
  .has-js .site-nav { height: calc(100dvh - 30px); inset: 30px 0 0; }
  .hero { min-height: auto; padding: 41px 0 22px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(55px, 17vw, 74px); }
  .hero-lead { margin: 20px auto 24px; font-size: 17px; }
  .order-card { max-width: 390px; border-radius: 20px; }
  .order-location { padding-left: 2px; }
  .button--hero { min-width: 145px; min-height: 48px; padding-inline: 17px; font-size: 12px; }
  .quick-links { gap: 12px; justify-content: space-between; }
  .quick-links a { flex-direction: column; gap: 6px; text-align: center; }
  .quick-links small { display: none; }
  .quick-icon { width: 44px; height: 44px; }
  .hero-grid { gap: 31px; }
  .hero-visual { min-height: 500px; transform: scale(.88); margin: -24px -20px -17px; }
  .hero-visual::before { width: 400px; height: 400px; }
  .hero-visual::after { width: 315px; height: 315px; }
  .phone-shell { width: 265px; height: 520px; border-radius: 40px; }
  .phone-content { padding-top: 13px; }
  .phone-banner { min-height: 92px; }
  .phone-categories i { width: 38px; height: 38px; }
  .floating-card { display: none; }
  .floating-card--support { bottom: 19px; left: -4px; }
  .local-stamp { top: 9px; right: 5px; }
  .confidence-row { grid-template-columns: 1fr; margin-top: 0; padding: 6px 0; }
  .confidence-row > div { min-height: 66px; padding: 12px 3px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .confidence-row > div:last-child { border-bottom: 0 !important; }
  .section { padding: 78px 0; }
  .section-heading { display: block; margin-bottom: 31px; }
  .section-heading h2, .how h2, .local h2, .faq h2 { font-size: 43px; }
  .section-heading > p { margin-top: 17px; font-size: 14px; }
  .service-grid { grid-template-columns: 1fr; gap: 13px; }
  .service-card:nth-child(n) { min-height: 220px; grid-column: 1; padding: 23px; }
  .service-card__art { top: 34px; right: 20px; font-size: 58px; }
  .service-card h3 { font-size: 24px; }
  .service-card p { max-width: 240px; font-size: 12px; }
  .how-grid, .faq-grid { gap: 42px; }
  .how-copy p { font-size: 14px; }
  .steps li { grid-template-columns: 26px 53px 1fr; gap: 13px; }
  .step-icon { width: 52px; height: 52px; font-size: 20px; }
  .steps h3 { font-size: 21px; }
  .steps p { font-size: 12px; }
  .local { padding-top: 20px; }
  .local-panel { width: calc(100% - 24px); border-radius: 25px; }
  .local-copy { padding: 43px 27px 47px; }
  .local-copy > p { font-size: 13px; }
  .local-points { grid-template-columns: 1fr; gap: 12px; }
  .map-art { min-height: 300px; }
  .reassurance { padding-top: 30px; }
  .reassurance-grid article { padding: 27px; }
  .app-cta { padding: 0 0 78px; }
  .app-panel { width: calc(100% - 24px); grid-template-columns: 1fr; padding-bottom: 305px; border-radius: 25px; }
  .app-copy { padding: 44px 27px 20px; text-align: center; }
  .app-copy h2 { font-size: 46px; }
  .app-buttons { flex-direction: column; align-items: stretch; }
  .play-button { justify-content: center; }
  .app-visual { min-height: 300px; position: absolute; right: 0; bottom: 0; left: 0; }
  .mini-phone { width: 190px; height: 310px; bottom: -65px; padding-top: 55px; }
  .mini-logo { width: 52px; height: 52px; margin-bottom: 17px; font-size: 28px; }
  .mini-phone i { margin-top: 28px; }
  .app-orbit--one { top: 14px; left: 31px; }
  .app-orbit--two { top: 70px; right: 25px; }
  .app-orbit--three { bottom: 36px; left: 25px; }
  .faq-list summary { padding: 20px 0; font-size: 18px; }
  .faq-list details p { margin-right: 0; font-size: 13px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding: 52px 0 38px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { min-height: 95px; flex-direction: column; justify-content: center; text-align: center; }
  .footer-bottom p { margin: 0; }
  .mobile-order-bar { display: block; position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; padding: 9px 14px max(9px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(33,46,37,.1); background: rgba(255,253,249,.94); backdrop-filter: blur(15px); }
  .mobile-order-bar .button { width: 100%; min-height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .has-js .reveal { opacity: 1; transform: none; }
}
