/* ============================================================
   Jenny Flowers International — design system
   Palette keyed to brand logo (CLAUDE-DESIGN.md):
   evergreen primary, blush secondary, deep-rose accent, warm paper.
   Type: Cormorant (display serif) + Figtree (humanist sans).
   Mobile-first. AA contrast. No fabricated data anywhere.
   ============================================================ */

:root{
  --bg:        #FBF7F4;
  --bg-2:      #F4ECE5;   /* warmer paper band */
  --surface:   #FFFFFF;
  --text:      #233322;
  --muted:     #6E7A6B;
  --primary:   #2E5A40;
  --primary-d: #21422E;   /* deeper evergreen */
  --primary-t: #E4ECE4;   /* evergreen tint fill */
  --secondary: #EBA8B1;
  --blush-t:   #FBEEF0;   /* blush tint fill */
  --blush-2:   #F7DEE2;
  --accent:    #C04E6E;
  --accent-d:  #A53D5B;
  --border:    #E7DED6;
  --border-2:  #EFE7E0;
  --focus:     #C04E6E;
  --ink-soft:  rgba(35,51,34,.66);

  --shadow-sm: 0 1px 2px rgba(35,51,34,.05), 0 1px 3px rgba(35,51,34,.04);
  --shadow-md: 0 6px 20px -6px rgba(35,51,34,.14), 0 2px 6px rgba(35,51,34,.05);
  --shadow-lg: 0 24px 60px -18px rgba(35,51,34,.28), 0 8px 24px -12px rgba(35,51,34,.12);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1220px;
  --pad: clamp(18px, 5vw, 64px);
  --nav-h: 76px;
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
::selection{ background: var(--blush-2); color: var(--primary-d); }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible{
  outline: 2.5px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4{ font-family: var(--serif); font-weight: 500; color: var(--text);
  line-height: 1.06; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
.display{ font-size: clamp(2.7rem, 7vw, 5.2rem); font-weight: 500; line-height: .98; }
.h1{ font-size: clamp(2.2rem, 5.2vw, 3.7rem); }
.h2{ font-size: clamp(1.9rem, 4vw, 3rem); }
.h3{ font-size: clamp(1.4rem, 2.6vw, 1.95rem); }
.serif-it{ font-style: italic; }
p{ margin: 0 0 1em; text-wrap: pretty; }
.lead{ font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }

.eyebrow{
  font-family: var(--sans);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--primary); display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow.rose{ color: var(--accent); }
.eyebrow::before{ content:""; width: 22px; height: 1.5px; background: currentColor; opacity: .55; display:inline-block; }
.eyebrow.center::after{ content:""; width: 22px; height: 1.5px; background: currentColor; opacity:.55; display:inline-block; }

/* ---------- Layout ---------- */
.container{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section{ padding-block: clamp(56px, 8vw, 120px); }
.section-sm{ padding-block: clamp(40px, 6vw, 80px); }
.band-paper{ background: var(--bg-2); }
.band-ever{ background: var(--primary); color: #fff; }
.band-ever h1,.band-ever h2,.band-ever h3{ color:#fff; }
.band-blush{ background: var(--blush-t); }

.stack-sm > * + *{ margin-top: 12px; }
.center{ text-align: center; }
.measure{ max-width: 62ch; }
.measure-sm{ max-width: 46ch; }
.mx-auto{ margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  min-height: 48px; transition: transform .18s ease, background .2s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:active{ transform: translateY(1px) scale(.99); }
.btn-accent{ background: var(--accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(192,78,110,.6); }
.btn-accent:hover{ background: var(--accent-d); box-shadow: 0 12px 26px -8px rgba(192,78,110,.7); }
.btn-primary{ background: var(--primary); color: #fff; }
.btn-primary:hover{ background: var(--primary-d); }
.btn-outline{ background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover{ background: var(--primary); color: #fff; }
.btn-light{ background: #fff; color: var(--primary-d); }
.btn-light:hover{ background: #fff; box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover{ border-color: var(--primary); color: var(--primary); }
.btn-lg{ padding: 16px 30px; font-size: 1.05rem; min-height: 56px; }
.btn-sm{ padding: 10px 18px; min-height: 42px; font-size: .9rem; }
.btn-block{ width: 100%; }
.btn .ic{ width: 19px; height: 19px; }
.btn-arrow .ic{ transition: transform .2s ease; }
.btn-arrow:hover .ic{ transform: translateX(3px); }

.link-arrow{ display:inline-flex; align-items:center; gap:7px; font-weight:600; color: var(--accent);
  font-size: .98rem; }
.link-arrow .ic{ width:17px; height:17px; transition: transform .2s; }
.link-arrow:hover .ic{ transform: translateX(3px); }

/* ---------- Icons ---------- */
.ic{ display:inline-block; vertical-align: middle; flex: none; }

/* ---------- Chips / badges ---------- */
.chip{ display:inline-flex; align-items:center; gap:7px; padding:7px 14px; border-radius:999px;
  font-size:.82rem; font-weight:600; background: var(--blush-t); color: var(--accent-d);
  border:1px solid var(--blush-2); }
.chip.ever{ background: var(--primary-t); color: var(--primary-d); border-color:#d4e0d4; }
.chip.solid{ background: var(--accent); color:#fff; border:none; }
.badge{ position:absolute; top:14px; left:14px; z-index:2; padding:6px 12px; border-radius:999px;
  font-size:.74rem; font-weight:700; letter-spacing:.02em; background: rgba(255,255,255,.94);
  color: var(--primary-d); box-shadow: var(--shadow-sm); backdrop-filter: blur(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{ position: sticky; top: 0; z-index: 60; background: rgba(251,247,244,.82);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-2); transition: box-shadow .25s; }
.nav.scrolled{ box-shadow: 0 4px 24px -12px rgba(35,51,34,.2); background: rgba(251,247,244,.94); }
.nav-inner{ height: var(--nav-h); display: flex; align-items: center; gap: 18px; }
.brand{ display: flex; align-items: center; gap: 11px; flex: none; }
.brand-mark{ width: 42px; height: 42px; object-fit: contain; }
.brand-name{ display:flex; flex-direction: column; line-height: 1; }
.brand-name b{ font-family: var(--serif); font-weight:600; font-size: 1.32rem; color: var(--primary-d); letter-spacing:.005em; }
.brand-name span{ font-family: var(--sans); font-size:.6rem; font-weight:600; letter-spacing:.26em;
  text-transform: uppercase; color: var(--accent); margin-top: 3px; }
.nav-links{ display: none; }
.nav-cta{ display: none; margin-left: auto; gap: 10px; align-items:center; }
.nav-link{ font-weight: 500; font-size: .98rem; color: var(--text); padding: 9px 2px; position: relative; transition: color .2s; }
.nav-link:hover{ color: var(--accent); }
.nav-link.active{ color: var(--primary-d); font-weight:600; }
.nav-link.active::after{ content:""; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--accent); border-radius:2px; }
.nav-burger{ margin-left: auto; display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius: 12px; border:1px solid var(--border); background: var(--surface); color: var(--primary-d); }

/* mobile drawer */
.drawer-scrim{ position: fixed; inset:0; background: rgba(35,51,34,.42); z-index: 80; opacity:0;
  pointer-events:none; transition: opacity .3s; backdrop-filter: blur(2px); }
.drawer-scrim.open{ opacity:1; pointer-events:auto; }
.drawer{ position: fixed; top:0; right:0; bottom:0; width: min(86vw, 360px); background: var(--surface);
  z-index: 90; transform: translateX(100%); transition: transform .34s cubic-bezier(.4,0,.1,1);
  display:flex; flex-direction:column; box-shadow: var(--shadow-lg); }
.drawer.open{ transform: translateX(0); }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; padding: 18px 20px;
  border-bottom:1px solid var(--border-2); }
.drawer-close{ width:44px; height:44px; border-radius:10px; border:1px solid var(--border); background:var(--bg); color:var(--text); display:inline-flex; align-items:center; justify-content:center; }
.drawer-links{ padding: 10px 12px; overflow-y:auto; flex:1; }
.drawer-link{ display:flex; align-items:center; justify-content:space-between; padding: 15px 14px;
  font-size:1.18rem; font-family:var(--serif); font-weight:500; color:var(--text); border-radius:12px; }
.drawer-link:hover,.drawer-link.active{ background: var(--blush-t); color: var(--accent-d); }
.drawer-foot{ padding: 16px 18px 22px; border-top:1px solid var(--border-2); display:grid; gap:10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position: relative; }
.hero-media{ position:relative; min-height: clamp(520px, 88vh, 760px); display:flex; align-items:center; }
.hero-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.hero-scrim{ position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(33,66,46,.82) 0%, rgba(33,66,46,.55) 38%, rgba(33,66,46,.12) 70%, rgba(33,66,46,0) 100%);
}
.hero-scrim.bottom{ background: linear-gradient(0deg, rgba(33,66,46,.7) 0%, rgba(33,66,46,.2) 45%, rgba(33,66,46,0) 75%); }
.hero-content{ position: relative; z-index: 2; color: #fff; max-width: 640px; padding-block: 40px; }
.hero-content .eyebrow{ color: #fff; }
.hero-content .eyebrow::before{ background:#fff; }
.hero h1{ color: #fff; margin: 16px 0 18px; }
.hero p{ color: rgba(255,255,255,.92); font-size: clamp(1.05rem,1.7vw,1.28rem); }
.hero-cta{ display:flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-mini{ display:flex; flex-wrap:wrap; gap: 18px 26px; margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.25); }
.hero-mini .item{ display:flex; align-items:center; gap:9px; color:#fff; font-size:.92rem; font-weight:500; }
.hero-mini .ic{ width:20px; height:20px; color: var(--secondary); }

/* slider dots */
.hero-dots{ position:absolute; z-index:3; bottom: 22px; right: var(--pad); display:flex; gap:9px; }
.hero-dot{ width: 9px; height:9px; border-radius:999px; background: rgba(255,255,255,.5); border:none; padding:0; transition: all .25s; }
.hero-dot.active{ background:#fff; width: 28px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust{ display:grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-2);
  border: 1px solid var(--border-2); border-radius: var(--r-md); overflow:hidden; }
.trust-item{ background: var(--surface); padding: 22px 18px; display:flex; flex-direction:column; align-items:center;
  text-align:center; gap: 8px; }
.trust-item .ic{ width: 26px; height:26px; color: var(--primary); }
.trust-item b{ font-family:var(--serif); font-size:1.15rem; font-weight:600; color:var(--primary-d); }
.trust-item span{ font-size:.84rem; color: var(--muted); line-height:1.4; }

/* ============================================================
   GENERIC GRIDS & CARDS
   ============================================================ */
.grid{ display:grid; gap: clamp(16px, 2.4vw, 28px); }
.grid-2{ grid-template-columns: 1fr; }
.grid-3{ grid-template-columns: 1fr; }
.grid-4{ grid-template-columns: repeat(2, 1fr); }

.sec-head{ display:flex; flex-direction:column; gap: 14px; margin-bottom: clamp(28px, 4vw, 52px); }
.sec-head .lead{ margin:0; }
.sec-head.center{ align-items:center; text-align:center; }
.sec-head-row{ display:flex; justify-content:space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }

/* occasion card */
.occ{ position: relative; border-radius: var(--r-md); overflow:hidden; aspect-ratio: 3/4; display:block;
  background: var(--bg-2); box-shadow: var(--shadow-sm); }
.occ img{ width:100%; height:100%; object-fit:cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.occ::after{ content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(33,66,46,.78) 0%, rgba(33,66,46,.1) 55%, transparent 100%); }
.occ:hover img{ transform: scale(1.06); }
.occ-label{ position:absolute; left:16px; right:16px; bottom:16px; z-index:2; color:#fff; }
.occ-label b{ font-family:var(--serif); font-size:1.3rem; font-weight:600; display:block; }
.occ-label span{ font-size:.82rem; opacity:.9; display:inline-flex; align-items:center; gap:6px; }
.occ-label .ic{ width:14px; height:14px; transition: transform .2s; }
.occ:hover .occ-label .ic{ transform: translateX(3px); }

/* product card */
.prod{ background: var(--surface); border:1px solid var(--border-2); border-radius: var(--r-md); overflow:hidden;
  display:flex; flex-direction:column; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.prod:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-media{ position:relative; aspect-ratio: 1/1; background: var(--bg-2); overflow:hidden; }
.prod-media img{ width:100%; height:100%; object-fit: cover; transition: transform .5s; }
.prod:hover .prod-media img{ transform: scale(1.04); }
.prod-body{ padding: 16px 16px 18px; display:flex; flex-direction:column; gap: 8px; flex:1; }
.prod-tag{ font-size:.74rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color: var(--accent); }
.prod-name{ font-family:var(--serif); font-size:1.22rem; font-weight:600; line-height:1.12; }
.prod-desc{ font-size:.9rem; color: var(--muted); margin:0; flex:1; }
.prod-foot{ display:flex; gap:8px; margin-top: 6px; }
.prod-foot .btn{ flex:1; }

/* service card */
.svc{ position:relative; border-radius: var(--r-lg); overflow:hidden; min-height: 320px; display:flex;
  align-items:flex-end; box-shadow: var(--shadow-sm); }
.svc img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s; }
.svc::after{ content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(33,66,46,.9) 0%, rgba(33,66,46,.35) 50%, rgba(33,66,46,.05) 100%); }
.svc:hover img{ transform: scale(1.05); }
.svc-body{ position:relative; z-index:2; color:#fff; padding: 26px; }
.svc-body h3{ color:#fff; margin-bottom: 8px; }
.svc-body p{ color: rgba(255,255,255,.9); font-size:.95rem; margin-bottom: 14px; }
.svc-body .link-arrow{ color:#fff; }

/* feature / icon tile */
.feature{ background:var(--surface); border:1px solid var(--border-2); border-radius: var(--r-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm); }
.feature .ficon{ width:50px; height:50px; border-radius:14px; background: var(--primary-t); color: var(--primary);
  display:inline-flex; align-items:center; justify-content:center; margin-bottom:16px; }
.feature .ficon .ic{ width:24px; height:24px; }
.feature.blush .ficon{ background: var(--blush-t); color: var(--accent); }
.feature h3{ font-size:1.3rem; margin-bottom:8px; }
.feature p{ color: var(--muted); font-size:.95rem; margin:0; }

/* ---------- Image placeholder (for missing client assets) ---------- */
.ph{ position:relative; background:
    repeating-linear-gradient(135deg, var(--bg-2) 0 12px, #efe6df 12px 24px);
  display:flex; align-items:center; justify-content:center; color: var(--muted); }
.ph span{ font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size:.72rem; letter-spacing:.04em;
  background: rgba(255,255,255,.8); padding:5px 11px; border-radius:999px; border:1px solid var(--border); }

/* ============================================================
   CORPORATE BAND / SPLIT
   ============================================================ */
.split{ display:grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,56px); align-items:center; }
.split-media{ border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split-media img{ width:100%; height:100%; object-fit:cover; }

.ck{ display:flex; gap: 12px; align-items:flex-start; }
.ck .ic{ width:22px; height:22px; color: var(--primary); flex:none; margin-top:2px; }
.ck.rose .ic{ color: var(--accent); }
.ck b{ display:block; font-weight:600; }
.ck p{ margin:0; color: var(--muted); font-size:.92rem; }
.ck-list{ display:grid; gap:18px; }

/* ============================================================
   FORMS
   ============================================================ */
.form{ background: var(--surface); border:1px solid var(--border-2); border-radius: var(--r-lg);
  padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom: 16px; }
.field label{ font-size:.85rem; font-weight:600; color: var(--primary-d); }
.field label .req{ color: var(--accent); }
.field input, .field textarea, .field select{
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: 13px 15px; border:1.5px solid var(--border); border-radius: 12px; background: var(--bg);
  transition: border-color .2s, background .2s; width:100%;
}
.field input:focus, .field textarea:focus, .field select:focus{ background:#fff; border-color: var(--primary); outline:none; }
.field textarea{ resize: vertical; min-height: 108px; }
.field-row{ display:grid; grid-template-columns:1fr; gap: 0 16px; }
.form-note{ font-size:.82rem; color: var(--muted); margin-top: 4px; }
.choice-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice{ display:flex; align-items:center; gap:9px; padding: 12px 14px; border:1.5px solid var(--border);
  border-radius:12px; font-size:.92rem; font-weight:500; background:var(--bg); transition: all .18s; }
.choice:hover{ border-color: var(--primary); }
.choice.on{ border-color: var(--accent); background: var(--blush-t); color: var(--accent-d); font-weight:600; }
.choice .dot{ width:18px; height:18px; border-radius:999px; border:2px solid var(--border); flex:none; transition: all .18s; }
.choice.on .dot{ border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px #fff; }

.form-ok{ text-align:center; padding: 14px 0; }
.form-ok .ic{ width:56px; height:56px; color: var(--primary); margin: 0 auto 14px; display:block; }

/* ============================================================
   SUBSCRIPTION / PRICE-FREE PLANS
   ============================================================ */
.plan{ background: var(--surface); border:1.5px solid var(--border-2); border-radius: var(--r-lg);
  padding: 28px 26px; display:flex; flex-direction:column; gap:16px; position:relative; box-shadow: var(--shadow-sm); }
.plan.featured{ border-color: var(--accent); box-shadow: var(--shadow-md); }
.plan-flag{ position:absolute; top:-13px; left:26px; background: var(--accent); color:#fff; font-size:.74rem;
  font-weight:700; letter-spacing:.04em; padding:5px 13px; border-radius:999px; }
.plan h3{ font-size: 1.5rem; }
.plan .freq{ font-size:.85rem; color: var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:.08em; }
.plan ul{ list-style:none; padding:0; margin:0; display:grid; gap:11px; }
.plan li{ display:flex; gap:10px; align-items:flex-start; font-size:.94rem; color: var(--text); }
.plan li .ic{ width:18px; height:18px; color: var(--primary); flex:none; margin-top:3px; }
.plan.featured li .ic{ color: var(--accent); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.gallery .g-item{ position:relative; border-radius: var(--r-md); overflow:hidden; background:var(--bg-2); }
.gallery .g-item img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 1/1; transition: transform .5s; }
.gallery .g-item.tall{ grid-row: span 2; }
.gallery .g-item.tall img{ aspect-ratio: 1/2.04; }
.gallery .g-item:hover img{ transform: scale(1.05); }
.g-cap{ position:absolute; inset:0; display:flex; align-items:flex-end; padding:14px;
  background: linear-gradient(0deg, rgba(33,66,46,.6), transparent 60%); opacity:0; transition:opacity .3s; }
.gallery .g-item:hover .g-cap{ opacity:1; }
.g-cap span{ color:#fff; font-family:var(--serif); font-size:1.05rem; font-weight:600; }

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.stat{ text-align:center; }
.stat b{ font-family:var(--serif); font-size: clamp(2.2rem,5vw,3.4rem); font-weight:600; color: var(--primary); display:block; line-height:1; }
.stat span{ font-size:.88rem; color: var(--muted); margin-top:8px; display:block; }
.stat-row{ display:grid; grid-template-columns: repeat(2,1fr); gap: 28px 16px; }

/* ============================================================
   CONTACT / BRANCHES
   ============================================================ */
.branch{ background:var(--surface); border:1px solid var(--border-2); border-radius: var(--r-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; gap:14px; }
.branch.main{ border-color: var(--primary); border-width: 1.5px; }
.branch-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.branch h3{ font-size:1.35rem; }
.branch .rows{ display:grid; gap:11px; }
.branch .row{ display:flex; gap:11px; align-items:flex-start; font-size:.92rem; color: var(--text); }
.branch .row .ic{ width:18px; height:18px; color: var(--primary); flex:none; margin-top:3px; }
.branch .row a:hover{ color: var(--accent); }
.branch .acts{ display:flex; gap:8px; margin-top:4px; flex-wrap:wrap; }

.map-embed{ width:100%; aspect-ratio: 16/10; border:1px solid var(--border); border-radius: var(--r-lg);
  overflow:hidden; box-shadow: var(--shadow-sm); background: var(--bg-2); }
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }
.map-note{ font-size:.82rem; color: var(--muted); margin-top:10px; display:flex; gap:7px; align-items:center; }
.map-note .ic{ width:15px; height:15px; }

/* ============================================================
   MOBILE ACTION BAR + WHATSAPP FAB
   ============================================================ */
.mbar{ position: fixed; left:0; right:0; bottom:0; z-index: 70; display:grid; grid-template-columns: repeat(3,1fr);
  gap:1px; background: var(--border-2); border-top:1px solid var(--border-2);
  box-shadow: 0 -6px 24px -10px rgba(35,51,34,.18); padding-bottom: env(safe-area-inset-bottom); }
.mbar a{ background: var(--surface); display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:3px; padding: 10px 4px; font-size:.72rem; font-weight:600; color: var(--text); min-height: 58px; }
.mbar a .ic{ width:21px; height:21px; }
.mbar a.call{ color: var(--primary-d); }
.mbar a.wa{ background: var(--primary); color:#fff; }
.mbar a.wa .ic{ color:#fff; }
.mbar a.order{ color: var(--accent-d); }
.mbar a.order .ic{ color: var(--accent); }

.fab{ position: fixed; right: 18px; bottom: 78px; z-index: 65; width: 56px; height:56px; border-radius:999px;
  background: #25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 28px -6px rgba(37,211,102,.6); border:none; transition: transform .2s; }
.fab:hover{ transform: scale(1.06); }
.fab .ic{ width:30px; height:30px; }
.fab-pulse::after{ content:""; position:absolute; inset:0; border-radius:999px; border:2px solid #25D366;
  animation: pulse 2.2s ease-out infinite; }
@keyframes pulse{ 0%{ transform: scale(1); opacity:.7;} 100%{ transform: scale(1.6); opacity:0;} }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background: var(--primary-d); color: rgba(255,255,255,.82); padding-block: clamp(48px,6vw,80px) 28px; }
.footer h4{ color:#fff; font-family:var(--sans); font-size:.8rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; margin-bottom: 18px; }
.footer a{ color: rgba(255,255,255,.82); }
.footer a:hover{ color: var(--secondary); }
.footer-grid{ display:grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand img{ width: 150px; filter: brightness(0) invert(1); opacity:.95; margin-bottom: 16px; }
.footer-brand p{ font-size:.92rem; max-width: 38ch; }
.footer-links{ display:grid; gap:11px; }
.footer-links a{ font-size:.94rem; }
.footer-soc{ display:flex; gap:12px; margin-top:6px; }
.footer-soc a{ width:42px; height:42px; border-radius:999px; border:1px solid rgba(255,255,255,.22);
  display:inline-flex; align-items:center; justify-content:center; transition: all .2s; }
.footer-soc a:hover{ background: var(--secondary); border-color: var(--secondary); color: var(--primary-d); }
.footer-soc .ic{ width:19px; height:19px; }
.footer-bottom{ padding-top: 22px; display:flex; flex-direction:column; gap:10px; font-size:.82rem;
  color: rgba(255,255,255,.6); }

/* ============================================================
   MISC / ANIMATION
   ============================================================ */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in{ opacity:1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  *{ scroll-behavior: auto !important; }
}

.divider-leaf{ display:flex; align-items:center; gap:14px; color: var(--secondary); }
.divider-leaf::before,.divider-leaf::after{ content:""; height:1px; background: var(--border); flex:1; }
.divider-leaf .ic{ width:22px; height:22px; color: var(--primary); opacity:.6; }

.page-hero{ padding-block: clamp(40px,6vw,80px) clamp(28px,4vw,48px); }
.page-hero .eyebrow{ margin-bottom: 14px; }
.breadcrumb{ font-size:.85rem; color: var(--muted); margin-bottom: 18px; display:flex; gap:8px; align-items:center; }
.breadcrumb a:hover{ color: var(--accent); }

.bottom-pad{ height: 70px; }  /* space for mobile bar */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .field-row{ grid-template-columns: 1fr 1fr; }
  .trust{ grid-template-columns: repeat(4,1fr); }
  .stat-row{ grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 880px){
  .grid-3{ grid-template-columns: repeat(3,1fr); }
  .grid-4{ grid-template-columns: repeat(4,1fr); }
  .gallery{ grid-template-columns: repeat(4,1fr); grid-auto-rows: 1fr; }
  .split.two{ grid-template-columns: 1fr 1fr; }
  .split.media-left{ direction: rtl; }
  .split.media-left > *{ direction: ltr; }
  .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
  .footer-bottom{ flex-direction:row; justify-content:space-between; }
}
@media (min-width: 980px){
  .nav-links{ display:flex; align-items:center; gap: 22px; margin-left: 14px; }
  .nav-cta{ display:flex; }
  .nav-burger{ display:none; }
  .mbar{ display:none; }
  .fab{ bottom: 24px; right: 24px; }
  .bottom-pad{ display:none; }
}
@media (min-width: 1100px){
  .hero-content{ padding-left: 8px; }
}
