/* ============================================================
   Lucky Flowers & Plants — Al Karama, Dubai
   Design system + layout. Light/airy botanical editorial with
   one dark "bouquet wall" band. Brand palette per brand-system.md
   ============================================================ */

:root {
  --bg: #FFFDFB;
  --surface: #FFFFFF;
  --surface-2: #FBF4F1;     /* warm tint panel */
  --text: #2B2B2E;
  --muted: #6B6B72;
  --primary: #D6486B;        /* rose */
  --primary-deep: #B23457;
  --secondary: #2E7D52;      /* botanical green */
  --secondary-deep: #245F3F;
  --accent: #F2B705;         /* gold */
  --border: #EFE6E8;
  --ink: #1A1413;            /* dark band background (warm near-black) */
  --ink-2: #241B19;
  --on-ink: #F3E9E4;
  --on-ink-muted: #B6A39B;
  --focus: #D6486B;

  --shadow-sm: 0 1px 2px rgba(43,43,46,.05), 0 2px 8px rgba(43,43,46,.05);
  --shadow-md: 0 6px 22px rgba(43,43,46,.10);
  --shadow-lg: 0 24px 60px rgba(26,20,19,.22);

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 24px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -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(--primary); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.display em { font-style: italic; font-weight: 500; color: var(--primary); }
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "✦";
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0;
}
.eyebrow.on-ink { color: var(--accent); }
.eyebrow.on-ink::before { color: var(--accent); }
.lead { color: var(--muted); font-size: clamp(16px, 2.1vw, 19px); max-width: 56ch; }
.tabular { font-variant-numeric: tabular-nums; letter-spacing: 0; }

/* ---------- Layout primitives ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 116px); }
.section-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .display { font-size: clamp(32px, 5vw, 54px); margin-top: 14px; }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(214,72,107,.28); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 12px 26px rgba(214,72,107,.34); }
.btn-dark { background: var(--ink); color: var(--on-ink); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost.on-ink { color: var(--on-ink); border-color: rgba(243,233,228,.28); }
.btn-ghost.on-ink:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold { background: var(--accent); color: #3a2c00; box-shadow: 0 8px 20px rgba(242,183,5,.3); }
.btn-gold:hover { background: #e0a800; }

/* ---------- Pills / chips ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 3px rgba(46,125,82,.16); }
.pill.gold { background: rgba(242,183,5,.12); border-color: rgba(242,183,5,.4); color: #8a6900; }
.star { color: var(--accent); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; gap: 18px; width: 100%; }
.site-header.scrolled {
  background: rgba(255,253,251,.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-chip {
  width: 46px; height: 46px; border-radius: 13px;
  background: #fff; padding: 4px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand-chip img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--ff-display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; }
.brand-name span { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  color: var(--text); transition: background .18s, color .18s;
}
.nav a:hover { background: var(--surface-2); color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { display: inline-flex; }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: #fff; border: 1px solid var(--border); align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: .25s; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .25s; }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .hamburger span::after { top: 0; transform: rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--bg);
  padding: calc(var(--header-h) + 20px) var(--pad) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .26s ease, transform .26s ease;
}
body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a.m-link {
  font-family: var(--ff-display); font-size: 30px; font-weight: 600;
  padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a.m-link span { font-family: var(--ff-body); font-size: 13px; color: var(--muted); }
.mobile-menu .m-actions { margin-top: 22px; display: grid; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(24px, 5vw, 56px)); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(44px, 7vw, 86px); margin: 18px 0 0; }
.hero h1 .thin { display: block; }
.hero-sub { margin: 22px 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 30px;
  padding-top: 26px; border-top: 1px solid var(--border);
}

/* hero media composition */
.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--ink);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,15,.5));
}
.hero-inset {
  position: absolute; left: -26px; bottom: -26px; width: 44%;
  border-radius: 16px; overflow: hidden; border: 5px solid #fff;
  box-shadow: var(--shadow-md); aspect-ratio: 3/4; background: var(--surface-2);
  z-index: 2;
}
.hero-inset img { width: 100%; height: 100%; object-fit: cover; }
.hero-seal {
  position: absolute; right: -14px; top: -14px; z-index: 3;
  width: 112px; height: 112px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(242,183,5,.4);
}
.hero-seal b { font-family: var(--ff-display); font-size: 30px; line-height: .9; font-weight: 700; }
.hero-seal small { display: block; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--on-ink-muted); margin-top: 4px; }

/* marquee strip below hero */
.strip { border-block: 1px solid var(--border); background: var(--surface-2); overflow: hidden; }
.strip-track {
  display: flex; gap: 48px; align-items: center; white-space: nowrap;
  padding-block: 16px; width: max-content;
  animation: marquee 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }
.strip-track span { font-family: var(--ff-display); font-size: 20px; font-style: italic; color: var(--secondary); display: inline-flex; gap: 48px; align-items: center; }
.strip-track span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: 13px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   OCCASIONS / ARRANGEMENTS
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-btn {
  padding: 9px 17px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border); transition: .18s;
}
.filter-btn:hover { color: var(--text); border-color: var(--muted); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .28s ease, box-shadow .28s ease, opacity .3s ease;
  display: flex; flex-direction: column;
}
.card.is-hidden { display: none; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,253,251,.92); color: var(--secondary-deep);
  padding: 6px 11px; border-radius: 999px; backdrop-filter: blur(4px);
}
.card-body { padding: 18px 18px 20px; }
.card-body h3 { font-family: var(--ff-display); font-weight: 600; font-size: 23px; margin: 0 0 6px; }
.card-body p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.card-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; color: var(--primary); }
.card-link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ============================================================
   DARK BAND — "Bouquet wall" signature motif
   ============================================================ */
.band-dark { background: var(--ink); color: var(--on-ink); position: relative; }
.band-dark .eyebrow { color: var(--accent); }
.band-dark .lead { color: var(--on-ink-muted); }
.band-dark .display { color: var(--on-ink); }
.band-dark .display em { color: #f6a8bf; }

.wall {
  display: grid; gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px; grid-auto-flow: dense;
  margin-top: clamp(28px, 4vw, 44px);
}
.wall figure { margin: 0; position: relative; overflow: hidden; border-radius: 10px; background: var(--ink-2); }
.wall img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1), filter .4s; filter: saturate(1.02); }
.wall figure:hover img { transform: scale(1.06); }
.wall .tall { grid-row: span 2; }
.wall .wide { grid-column: span 2; }
.wall .big { grid-column: span 2; grid-row: span 2; }
.wall figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--ff-display); font-style: italic; font-size: 18px; color: #fff;
  padding: 28px 16px 12px; opacity: 0; transform: translateY(8px);
  background: linear-gradient(transparent, rgba(20,16,15,.78));
  transition: .3s;
}
.wall figure:hover figcaption { opacity: 1; transform: none; }

/* ============================================================
   FEATURE ROWS (events / plants / maintenance — alternating)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.feature + .feature { margin-top: clamp(48px, 7vw, 96px); }
.feature.flip .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media .ph {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 5/4; background: var(--surface-2);
}
.feature.tall .feature-media .ph { aspect-ratio: 4/5; }
.feature-media .ph img { width: 100%; height: 100%; object-fit: cover; }
.feature-media .badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,253,251,.94); border-radius: 12px; padding: 12px 15px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 10px; backdrop-filter: blur(6px);
}
.feature.flip .feature-media .badge { left: auto; right: 16px; }
.feature-media .badge b { font-family: var(--ff-display); font-size: 22px; }
.feature-media .badge small { color: var(--muted); font-size: 12px; display: block; }
.feature-copy h2 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(30px, 4.6vw, 50px); margin: 14px 0 0; line-height: 1.06; }
.feature-copy p { color: var(--muted); margin: 18px 0 0; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.feature-list li::before { content: "✦"; color: var(--accent); font-size: 13px; margin-top: 4px; flex: none; }
.feature-copy .btn { margin-top: 28px; }

/* plant mini cards */
.plant-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.plant-mini { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-align: center; }
.plant-mini .pm-img { aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--surface-2); margin-bottom: 10px; }
.plant-mini .pm-img img { width: 100%; height: 100%; object-fit: cover; }
.plant-mini b { font-family: var(--ff-display); font-size: 18px; display: block; }
.plant-mini small { color: var(--muted); font-size: 12.5px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-grid figure { margin: 0 0 14px; break-inside: avoid; border-radius: 12px; overflow: hidden; position: relative; cursor: zoom-in; background: var(--surface-2); }
.gallery-grid img { width: 100%; height: auto; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figure::after {
  content: "⤢"; position: absolute; top: 10px; right: 12px; color: #fff; font-size: 16px;
  width: 32px; height: 32px; display: grid; place-content: center; border-radius: 50%;
  background: rgba(26,20,19,.5); opacity: 0; transition: .25s;
}
.gallery-grid figure:hover::after { opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(15,11,10,.93); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 22px;
  display: grid; place-content: center; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-close { right: 18px; top: 18px; }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.story { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.story-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story-imgs .si { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface-2); }
.story-imgs .si img { width: 100%; height: 100%; object-fit: cover; }
.story-imgs .si:first-child { grid-row: span 2; aspect-ratio: 3/4.4; }
.story-imgs .si:nth-child(2) { aspect-ratio: 4/3; }
.story-imgs .si:nth-child(3) { aspect-ratio: 4/3; }
.story blockquote {
  font-family: var(--ff-display); font-style: italic; font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.35; margin: 24px 0 0; padding-left: 18px; border-left: 2px solid var(--accent); color: var(--text);
}
.story cite { display: block; font-style: normal; font-size: 13px; color: var(--muted); margin-top: 12px; letter-spacing: .04em; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.contact { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-panel { background: var(--ink); color: var(--on-ink); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); position: relative; overflow: hidden; }
.contact-panel .eyebrow { color: var(--accent); }
.contact-panel h2 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(28px, 3.4vw, 40px); margin: 12px 0 0; color: #fff; }
.contact-rows { margin: 26px 0 0; display: grid; gap: 4px; }
.crow { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(243,233,228,.13); align-items: flex-start; }
.crow:first-child { border-top: 0; }
.crow .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(243,233,228,.08); display: grid; place-content: center; flex: none; color: var(--accent); }
.crow .ic svg { width: 18px; height: 18px; }
.crow .k { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-ink-muted); }
.crow .v { font-size: 16.5px; color: var(--on-ink); font-weight: 500; }
.crow a.v:hover { color: var(--accent); }
.contact-panel .panel-cta { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }

.map-ph {
  margin-top: 22px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(243,233,228,.16);
  aspect-ratio: 16/7; position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(243,233,228,.04) 0 12px, rgba(243,233,228,.07) 12px 24px),
    var(--ink-2);
  display: grid; place-content: center; text-align: center; gap: 6px;
}
.map-ph .mlabel { font-family: var(--ff-body); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--on-ink-muted); }
.map-ph .mpin { font-family: var(--ff-display); font-style: italic; font-size: 22px; color: var(--on-ink); }
.map-ph a { position: relative; z-index: 2; margin-top: 8px; }

/* form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-sm); }
.form-card h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); margin: 0; }
.form-card .sub { color: var(--muted); font-size: 14.5px; margin: 6px 0 22px; }
.field { margin-bottom: 16px; }
.field > label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field .req { color: var(--primary); }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1.5px solid var(--border);
  background: var(--bg); font-family: inherit; font-size: 15px; color: var(--text); transition: border-color .18s, box-shadow .18s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(214,72,107,.12); }
.textarea { min-height: 110px; resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 9px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; pointer-events: none; }
.radio-chip span { display: inline-flex; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--border); font-size: 14px; font-weight: 600; color: var(--muted); transition: .15s; }
.radio-chip input:checked + span { border-color: var(--primary); background: rgba(214,72,107,.08); color: var(--primary-deep); }
.radio-chip input:focus-visible + span { outline: 2.5px solid var(--focus); outline-offset: 2px; }
.field .err { color: var(--primary-deep); font-size: 12.5px; margin-top: 6px; display: none; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: var(--primary); }
.field.invalid .err { display: block; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none; text-align: center; padding: 20px 10px;
}
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(46,125,82,.12); color: var(--secondary); display: grid; place-content: center; margin: 0 auto 16px; }
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-2); color: var(--on-ink); padding-block: clamp(44px, 6vw, 72px) 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-chip { background: #fff; }
.footer-brand b { font-family: var(--ff-display); font-size: 22px; color: #fff; }
.footer-about { color: var(--on-ink-muted); font-size: 14.5px; margin-top: 18px; max-width: 38ch; }
.footer-col h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.footer-col a, .footer-col p { display: block; color: var(--on-ink-muted); font-size: 14.5px; margin: 0 0 11px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(243,233,228,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--on-ink-muted); font-size: 12.5px; }
.footer-bottom .disclaimer { max-width: 60ch; }

/* ============================================================
   MOBILE BOTTOM ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  display: none; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(26,20,19,.12);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.action-bar a {
  background: var(--surface); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 10px 4px; min-height: 60px; font-size: 11.5px; font-weight: 600; color: var(--text);
}
.action-bar a svg { width: 20px; height: 20px; color: var(--primary); }
.action-bar a.call { background: var(--primary); color: #fff; }
.action-bar a.call svg { color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .wall { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 2; }
}
@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 28px; }
  .feature.flip .feature-media { order: 0; }
  .story { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .action-bar { display: grid; }
  body { padding-bottom: 64px; }
  .plant-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-body { padding: 14px; }
  .card-body h3 { font-size: 19px; }
  .wall { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .wall .big { grid-column: span 2; }
  .gallery-grid { columns: 2; column-gap: 10px; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-seal { width: 92px; height: 92px; }
  .hero-seal b { font-size: 24px; }
  .plant-row { grid-template-columns: 1fr; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
@media (max-width: 380px) {
  .cards { grid-template-columns: 1fr; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
