/* ============================================================
   Sonya Plants & Flowers LLC — Design System
   Botanical fresh-green + warm-blush on warm off-white.
   Palette keyed to the brand logo (research/CLAUDE-DESIGN.md).
   ============================================================ */

:root {
  /* Core tokens (from brief) */
  --bg: #FBFAF6;
  --surface: #FFFFFF;
  --text: #1F2D24;
  --muted: #677A6C;
  --primary: #1C563E;
  --secondary: #8EA996;
  --accent: #F08A96;
  --border: #E7E4DA;
  --focus: #1C563E;

  /* Derived */
  --primary-700: #143F2D;
  --primary-900: #0E2C20;
  --accent-700: #D96B78;
  --accent-tint: #FBEEEF;
  --sage-tint: #EEF3EE;
  --sage-tint-2: #E4ECE5;
  --cream: #F4F1E8;
  --shadow-sm: 0 1px 2px rgba(20,45,32,.04), 0 1px 3px rgba(20,45,32,.05);
  --shadow-md: 0 4px 16px rgba(20,45,32,.06), 0 1px 4px rgba(20,45,32,.05);
  --shadow-lg: 0 18px 50px rgba(20,45,32,.10), 0 6px 18px rgba(20,45,32,.06);
  --shadow-xl: 0 30px 80px rgba(20,45,32,.14), 0 10px 30px rgba(20,45,32,.08);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 430;
  color: var(--primary);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
  font-optical-sizing: auto;
}

.display {
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  font-weight: 410;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.display em, .h-em {
  font-style: italic;
  font-weight: 410;
  color: var(--accent-700);
}
h2.section-title {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
}
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-700);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
  text-wrap: pretty;
}

p { text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-sm { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95em 1.6em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-wa { background: #1FA855; color: #fff; box-shadow: var(--shadow-sm); }
.btn-wa:hover { background: #1b9a4d; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); background: var(--surface); transform: translateY(-2px); }

.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { font-size: 1.06rem; padding: 1.1em 1.9em; min-height: 56px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Pills / chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1em;
  border-radius: var(--radius-pill);
  background: var(--sage-tint);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.86rem;
  border: 1px solid transparent;
}
.chip.accent { background: var(--accent-tint); color: var(--accent-700); }

.tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  color: var(--primary);
  font-weight: 650;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.42em 0.85em;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

/* ---------- Filter bar ---------- */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.62em 1.25em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s var(--ease);
  min-height: 44px;
}
.filter:hover { border-color: var(--secondary); color: var(--primary); }
.filter.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,250,246,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(20,45,32,.05);
  background: rgba(251,250,246,.94);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 50px; width: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: 1.32rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.brand-txt span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-weight: 550;
  font-size: 0.97rem;
  color: var(--text);
  padding: 0.55em 0.85em;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--primary); background: var(--sage-tint); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--primary); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 28px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a.m-link {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 420;
  color: var(--primary);
  padding: 0.5em 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a.m-link span { font-family: var(--font-body); font-size: .8rem; color: var(--muted); }
.mobile-menu .m-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding-block: clamp(48px, 7vw, 104px);
}
.hero-copy { max-width: 600px; position: relative; z-index: 2; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy .lead { margin-bottom: 2rem; }
.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1600 / 1180;
  background: #fff;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; }
.hero-media .float-card {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 78%;
}
.hero-media .float-card .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--sage-tint); display: grid; place-items: center; color: var(--primary); flex: none; }
.hero-media .float-card b { font-family: var(--font-display); font-size: 1.05rem; color: var(--primary); display: block; line-height: 1.1; }
.hero-media .float-card small { color: var(--muted); font-size: .82rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 2rem; }
.hero-trust .t { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .92rem; font-weight: 550; }
.hero-trust .t svg { width: 18px; height: 18px; color: var(--secondary); }

.hero-leaf {
  position: absolute;
  font-family: var(--font-display);
  pointer-events: none;
}

/* ============================================================
   QUICK PICK TILES
   ============================================================ */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
  min-height: 188px;
  text-align: left;
}
.tile::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--sage-tint) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tile:hover::after { opacity: 1; }
.tile .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--sage-tint); color: var(--primary); display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease); }
.tile:hover .ico { background: var(--primary); color: #fff; }
.tile.accent .ico { background: var(--accent-tint); color: var(--accent-700); }
.tile.accent:hover .ico { background: var(--accent); color: #fff; }
.tile .ico svg { width: 26px; height: 26px; }
.tile h3 { font-size: 1.25rem; line-height: 1.1; }
.tile p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.tile .arrow { margin-top: auto; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; transition: gap .25s var(--ease); }
.tile:hover .arrow { gap: 12px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; }
.sec-head .lead { margin-top: 1.1rem; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 52px); }
.sec-head-row .sec-head { margin-bottom: 0; }

/* ============================================================
   PRODUCT GRID + CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 22px;
}
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0%, #ffffff 55%, var(--sage-tint) 100%);
  overflow: hidden;
}
.pcard-media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .5s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.045); }
.pcard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard-body .meta { display: flex; align-items: center; gap: 8px; }
.pcard-body .meta small { color: var(--accent-700); font-weight: 650; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.pcard-body h3 { font-size: 1.18rem; line-height: 1.12; }
.pcard-body p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.45; }
.pcard-body .pcard-cta { margin-top: auto; padding-top: 6px; }
.pcard-body .pcard-cta .btn { width: 100%; font-size: .94rem; padding: .8em 1em; min-height: 46px; }

/* ============================================================
   FEATURE / SPLIT BANDS
   ============================================================ */
.band { position: relative; }
.band.tint { background: var(--sage-tint); }
.band.cream { background: var(--cream); }
.band.dark {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-900) 100%);
  color: #fff;
}
.band.dark h2, .band.dark h3 { color: #fff; }
.band.dark .lead { color: rgba(255,255,255,.82); }
.band.dark .eyebrow { color: #F5B8C0; }
.band.dark .eyebrow::before { background: var(--accent); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  position: relative;
  background: #fff;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { max-width: 540px; }

/* B2B rental band */
.rental-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.rental-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 18px 22px;
  flex: 1 1 150px;
}
.rental-stat b { font-family: var(--font-display); font-size: 1.7rem; color: #fff; display: block; line-height: 1; }
.rental-stat small { color: rgba(255,255,255,.78); font-size: .86rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.scard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.scard .ico { width: 54px; height: 54px; border-radius: 16px; background: var(--sage-tint); color: var(--primary); display: grid; place-items: center; }
.scard .ico svg { width: 28px; height: 28px; }
.scard h3 { font-size: 1.42rem; }
.scard p { margin: 0; color: var(--muted); font-size: .96rem; }
.scard ul { margin: 4px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.scard ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--text); }
.scard ul li svg { width: 17px; height: 17px; color: var(--secondary); flex: none; margin-top: 3px; }
.scard .scard-cta { margin-top: auto; padding-top: 8px; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar { display: flex; flex-direction: column; gap: 12px; }
.pillar .ico { width: 56px; height: 56px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--primary); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.pillar .ico svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.3rem; }
.pillar p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--text); }
.field label .req { color: var(--accent-700); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.85em 1em;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  width: 100%;
  min-height: 50px;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(28,86,62,.1);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.form-success {
  background: var(--sage-tint);
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.form-success .ico { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .ico svg { width: 28px; height: 28px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 4px; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-tint); color: var(--primary); display: grid; place-items: center; flex: none; }
.info-item .ico svg { width: 21px; height: 21px; }
.info-item b { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 650; margin-bottom: 3px; }
.info-item a, .info-item span { color: var(--text); font-size: 1.02rem; line-height: 1.5; font-weight: 500; }
.info-item a:hover { color: var(--primary); }

.map-placeholder {
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--secondary);
  background:
    repeating-linear-gradient(45deg, var(--sage-tint) 0 14px, transparent 14px 28px),
    var(--surface);
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  margin-top: 24px;
}
.map-placeholder .ico { width: 52px; height: 52px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--primary); display: grid; place-items: center; margin: 0 auto 12px; }
.map-placeholder b { font-family: var(--font-display); font-size: 1.25rem; color: var(--primary); display: block; }
.map-placeholder small { color: var(--muted); font-size: .88rem; }

/* ============================================================
   GALLERY / IG STRIP
   ============================================================ */
.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-cell {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--sage-tint);
}
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-cell:hover img { transform: scale(1.08); }
.ig-cell .ov { position: absolute; inset: 0; background: rgba(28,86,62,.34); opacity: 0; display: grid; place-items: center; transition: opacity .3s var(--ease); color: #fff; }
.ig-cell:hover .ov { opacity: 1; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-900) 100%);
  color: #fff;
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,169,150,.4) 0%, transparent 70%);
}
.cta-band::before { width: 320px; height: 320px; top: -120px; right: -80px; }
.cta-band::after { width: 260px; height: 260px; bottom: -130px; left: -60px; background: radial-gradient(circle, rgba(240,138,150,.32) 0%, transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.85); margin-inline: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary-900); color: rgba(255,255,255,.74); padding-block: clamp(48px, 6vw, 76px) 0; }
.footer a { color: rgba(255,255,255,.74); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer .brand-txt b { color: #fff; }
.footer .brand-txt span { color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 650; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: .96rem; }
.footer-about p { font-size: .95rem; line-height: 1.6; margin: 16px 0 20px; max-width: 34ch; }
.footer .socials { display: flex; gap: 10px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background .25s var(--ease), border-color .25s, transform .25s; }
.footer .socials a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.footer .socials a svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem; color: rgba(255,255,255,.55); }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   FLOATING WHATSAPP + MOBILE BAR
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1FA855;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(31,168,85,.42);
  z-index: 90;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: wa-pop .5s var(--ease) both;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; }
@keyframes wa-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  gap: 9px;
  box-shadow: 0 -6px 24px rgba(20,45,32,.08);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 14px;
  font-size: .72rem;
  font-weight: 650;
  color: var(--primary);
  min-height: 52px;
  justify-content: center;
}
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar a.wa { background: #1FA855; color: #fff; }
.mobile-bar a.call { background: var(--sage-tint); }
.mobile-bar a.enquire { background: var(--accent); color: #fff; }

/* ============================================================
   MISC
   ============================================================ */
.flag {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  background: var(--accent-tint);
  border: 1px solid #F3D2D6;
  color: var(--accent-700);
  border-radius: 12px;
  padding: 11px 15px;
  font-size: .85rem;
  line-height: 1.45;
  font-weight: 500;
}
.flag svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }

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

.page-head {
  background: var(--sage-tint);
  padding-block: clamp(48px, 7vw, 92px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 1rem; }
.page-head .lead { max-width: 60ch; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; font-weight: 550; }
.breadcrumb a:hover { color: var(--primary); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .pillars { grid-template-columns: 1fr; gap: 18px; }
  .pillar { flex-direction: row; align-items: flex-start; gap: 16px; }
  .pillar .ico { flex: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-desktop { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 16/11; max-height: 360px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .mobile-bar { display: flex; }
  .wa-fab { display: none; }
  body.has-mbar { padding-bottom: 74px; }
  .footer { padding-bottom: 78px; }
  .tiles { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcard-body { padding: 14px 14px 16px; }
  .pcard-body h3 { font-size: 1.05rem; }
  .pcard-body p { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .sec-head-row { flex-direction: column; align-items: flex-start; }
  .btn-row .btn { flex: 1 1 auto; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

@media (max-width: 420px) {
  .product-grid { gap: 10px; }
  .brand-txt span { display: none; }
}

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