/* ============================================================
   URVARAM — Design System
   A living-soil brand: deep growth greens, warm earth cream,
   a terracotta accent, and a recurring root-line motif that
   echoes the mark under the logo's "U".
   ============================================================ */

:root {
  /* ---- Color: brand greens (from the logo gradient) ---- */
  --green-900: #0f3d2c;
  --green-800: #144a37;
  --green-700: #1a5c42;
  --green-600: #24714f;
  --green-500: #3d9271;
  --green-400: #63ab8d;
  --green-100: #e6efe8;
  --green-50:  #f2f7f3;

  /* ---- Color: earth + accent ---- */
  --cream:       #f3ead9;
  --cream-dark:  #e9dbc0;
  --paper:       #fffbf4;
  --brown-900:   #34261b;
  --brown-800:   #4a3728;
  --terracotta:      #d97a3f;
  --terracotta-dark: #b85f28;
  --terracotta-light:#f3d9c3;

  /* ---- Neutrals / text ---- */
  --ink:        #211f1a;
  --ink-soft:   #55524a;
  --line:       #e4dcc9;
  --line-dark:  rgba(255,255,255,0.16);
  --white:      #ffffff;

  /* ---- Semantic ---- */
  --success: #2f7d4f;
  --warn: #b8862c;
  --error: #b23b2f;

  /* ---- Type ---- */
  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  /* ---- Scale ---- */
  --step-1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step1:  clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --step2:  clamp(1.5rem, 1.35rem + 0.7vw, 1.9rem);
  --step3:  clamp(1.9rem, 1.6rem + 1.3vw, 2.6rem);
  --step4:  clamp(2.4rem, 1.9rem + 2.2vw, 3.6rem);
  --step5:  clamp(3rem, 2.2rem + 3.6vw, 4.8rem);

  /* ---- Layout ---- */
  --container: 1220px;
  --container-narrow: 820px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --radius-pill: 999px;
  --gap: clamp(1.5rem, 1rem + 2vw, 3.5rem);
  --header-h: 84px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur-s: 160ms;
  --dur-m: 320ms;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: var(--step0);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

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

.visually-hidden {
  position: absolute !important;
  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; top: -60px; left: 12px; z-index: 1000;
  background: var(--green-900); color: var(--white);
  padding: 0.8em 1.3em; border-radius: var(--radius-s);
  transition: top var(--dur-s) var(--ease);
}
.skip-link:focus { top: 12px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--green-900);
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { font-size: var(--step5); font-weight: 600; }
h2 { font-size: var(--step3); }
h3 { font-size: var(--step2); }
h4 { font-size: var(--step1); font-weight: 600; }
p { color: var(--ink-soft); }
p + p { margin-top: 1em; }
strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-mono);
  font-size: var(--step-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 500;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1.5px; background: currentColor; display: inline-block;
}

.lede { font-size: var(--step1); color: var(--ink-soft); max-width: 62ch; }
.text-on-dark, .text-on-dark p { color: rgba(255,255,255,0.86); }
.text-on-dark h1, .text-on-dark h2, .text-on-dark h3, .text-on-dark h4 { color: var(--white); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 6vw, 6.5rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 4vw, 4rem); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--brown { background: var(--brown-900); }
.section--green { background: linear-gradient(160deg, var(--green-800), var(--green-900)); }
.section--green-mid { background: linear-gradient(160deg, var(--green-700), var(--green-800)); }

.section-head { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.5rem; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}
.split--reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split--reverse .split-media { order: 0; }
}
.split--checkout { grid-template-columns: 1.5fr 1fr; align-items: flex-start; }
@media (max-width: 860px) {
  .split--checkout { grid-template-columns: 1fr; }
}

/* root-line divider (signature motif) */
.root-divider {
  display: block; width: 100%; height: clamp(40px, 6vw, 90px);
  color: var(--green-500);
}
.root-divider--light { color: rgba(255,255,255,0.35); }
.section--brown .root-divider,
.section--green .root-divider,
.section--green-mid .root-divider { color: rgba(255,255,255,0.28); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600; font-size: var(--step-1);
  letter-spacing: 0.01em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform var(--dur-s) var(--ease), background var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease), color var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--terracotta); color: var(--white); box-shadow: 0 10px 24px -12px rgba(217,122,63,0.65); }
.btn--primary:hover { background: var(--terracotta-dark); }

.btn--dark { background: var(--green-900); color: var(--white); }
.btn--dark:hover { background: var(--green-800); }

.btn--light { background: var(--white); color: var(--green-900); }
.btn--light:hover { background: var(--cream); }

.btn--outline { background: transparent; border-color: currentColor; color: inherit; }
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.section--white .btn--outline, .section--cream .btn--outline, .section--paper .btn--outline { color: var(--green-900); }
.section--white .btn--outline:hover, .section--cream .btn--outline:hover, .section--paper .btn--outline:hover { background: var(--green-900); color: var(--white); }

.btn--ghost { background: transparent; color: inherit; padding-inline: 0.4em; }
.btn--ghost:hover { color: var(--terracotta); transform: none; }

.btn--sm { padding: 0.65em 1.3em; font-size: var(--step-1); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: none; color: inherit;
  transition: background var(--dur-s) var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { background: rgba(0,0,0,0.06); }
.text-on-dark .icon-btn:hover, .site-header .icon-btn:hover { background: rgba(255,255,255,0.12); }
.icon-btn .badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--terracotta); color: var(--white);
  font-family: var(--font-mono); font-size: 0.63rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.icon-btn .badge:empty, .icon-btn .badge[data-count="0"] { display: none; }

/* ============================================================
   PILLS / TAGS
   ============================================================ */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55em 1.1em;
  border-radius: var(--radius-pill);
  background: var(--terracotta-light); color: var(--terracotta-dark);
  border: 1px solid transparent;
}
.pill--outline { background: transparent; border-color: var(--terracotta); color: var(--terracotta-dark); }
.pill--dark { background: rgba(255,255,255,0.12); color: var(--white); }
.pill--btn { background: var(--cream-dark); color: var(--brown-800); border: none; cursor: pointer; transition: background var(--dur-s) var(--ease), color var(--dur-s) var(--ease); }
.pill--btn:hover, .pill--btn.is-active { background: var(--green-700); color: var(--white); }
.pill--sm { padding: 0.4em 0.85em; font-size: 0.72rem; }

/* ============================================================
   HEADER
   ============================================================ */
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--dur-m) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -18px rgba(0,0,0,0.5); }
.main-nav > ul > li > a[aria-current="page"] { color: var(--terracotta); }
.header-inner {
  display: flex; align-items: center; gap: clamp(1rem,3vw,2.5rem);
  min-height: var(--header-h);
}
.logo { flex: none; display: block; }
.logo img { height: 34px; width: auto; display: block; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: clamp(0.4rem, 1.6vw, 1.6rem); }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 0.35em;
  padding: 0.9rem 0.3rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  transition: color var(--dur-s) var(--ease);
}
.main-nav > ul > li > a svg { width: 14px; height: 14px; transition: transform var(--dur-s) var(--ease); }
.main-nav > ul > li:hover > a { color: var(--terracotta); }
.main-nav > ul > li > a[aria-expanded="true"] { color: var(--terracotta); }
.main-nav > ul > li > a[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: 0 24px 48px -16px rgba(15,61,44,0.35);
  padding: 0.6rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease), visibility var(--dur-m);
}
/* Desktop dropdown is click-driven (via .is-open, toggled in main.js) —
   not hover — per client request. :focus-within stays as a pure-CSS
   fallback so keyboard tabbing still reveals the panel with no JS.
   Hard-scoped to min-width:981px (the mirror of the 980px mobile
   breakpoint below): .is-open is the SAME class the mobile accordion
   uses, and this rule's 3-class selector otherwise outranks the mobile
   media query's plain ".dropdown" reset on specificity alone regardless
   of viewport — that mismatch is what pushed the mobile submenu
   off-screen, so it must never be reachable below the breakpoint. */
@media (min-width: 981px) {
  .has-dropdown.is-open .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 10px);
  }
}
.dropdown li a {
  display: block; padding: 0.7rem 0.9rem; border-radius: var(--radius-s);
  font-size: 0.92rem; color: var(--ink); font-weight: 500;
  transition: background var(--dur-s) var(--ease), color var(--dur-s) var(--ease);
}
.dropdown li a:hover { background: var(--green-50); color: var(--green-800); }

.header-actions { display: flex; align-items: center; gap: 0.2rem; flex: none; color: var(--white); }

.mobile-nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%;
}
.mobile-nav-toggle svg { width: 24px; height: 24px; }
.mobile-nav-toggle .icon-close { display: none; }
.nav-open .mobile-nav-toggle .icon-menu { display: none; }
.nav-open .mobile-nav-toggle .icon-close { display: block; }

@media (max-width: 980px) {
  /* Mobile accordion nav. Every element in this chain gets an explicit
     width/max-width/min-width/box-sizing so nothing (a flex or block
     child, a leftover desktop min-width, a long dropdown label) can ever
     force the panel wider than the viewport — see the width/min-width
     resets below, which are the actual fix, not overflow-x band-aids. */
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    width: 100%; max-width: 100vw; box-sizing: border-box;
    background: var(--green-900);
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 1rem 1.25rem calc(2.5rem + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch;
    max-height: 100dvh;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease), visibility var(--dur-m);
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > ul {
    flex-direction: column; align-items: stretch;
    width: 100%; max-width: 100%; min-width: 0; gap: 0; box-sizing: border-box;
  }
  .main-nav > ul > li {
    width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav > ul > li > a {
    width: 100%; max-width: 100%; box-sizing: border-box;
    padding: 1.1rem 0.2rem; justify-content: space-between; font-size: 1.05rem;
  }
  /* Desktop's absolutely-positioned flyout becomes a normal in-flow
     accordion panel on mobile: static position, no transform/left offset,
     no min-width floor — it can only ever be as wide as its parent <li>. */
  .dropdown {
    position: static; left: auto; top: auto; transform: none;
    width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
    opacity: 1; visibility: visible; pointer-events: none;
    max-height: 0; overflow: hidden; box-shadow: none; background: transparent;
    padding: 0 0 0 0.9rem; margin: 0;
    transition: max-height var(--dur-m) var(--ease), padding var(--dur-m) var(--ease);
  }
  .has-dropdown.is-open .dropdown { max-height: 700px; pointer-events: auto; padding: 0.2rem 0 0.8rem 0.9rem; }
  .dropdown li { width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
  .dropdown li a {
    display: block; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
    white-space: normal; overflow-wrap: break-word; word-break: break-word;
    color: rgba(255,255,255,0.82);
  }
  .dropdown li a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
  .mobile-nav-toggle { display: inline-flex; }
}

/* ============================================================
   HERO (home slider)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: min(78vh, 680px);
  display: flex; align-items: flex-end;
  color: var(--white);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 900ms var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide--home { background-image: url('../images/photos/home-hero.webp'); }
@media (max-width: 640px) {
  .hero-slide--home { background-image: url('../images/photos/mobile-hero.webp'); }
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,26,20,0.86) 0%, rgba(15,26,20,0.45) 46%, rgba(15,26,20,0.35) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(2.5rem, 8vw, 5rem) clamp(3rem, 9vw, 6rem); max-width: 640px; }
.hero-inner .eyebrow { color: var(--terracotta); }
.hero-inner h1 { color: var(--white); margin-top: 0.7rem; font-size: var(--step4); }
.hero-inner p { color: rgba(255,255,255,0.85); margin-top: 1.1rem; font-size: var(--step0); max-width: 46ch; }
.hero-inner .btn { margin-top: 1.8rem; }

.hero-nav {
  position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--dur-s) var(--ease);
}
.hero-nav:hover { background: rgba(255,255,255,0.28); }
.hero-nav svg { width: 20px; height: 20px; }
.hero-prev { left: clamp(0.8rem, 3vw, 2.5rem); }
.hero-next { right: clamp(0.8rem, 3vw, 2.5rem); }
.hero-dots { position: absolute; z-index: 3; bottom: clamp(1rem,3vw,1.8rem); left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; padding: 0; }
.hero-dots button.is-active { background: var(--terracotta); width: 22px; border-radius: 999px; transition: width var(--dur-m) var(--ease); }
@media (max-width: 640px) {
  .hero-nav { display: none; }
}

/* page header (non-home hero) */
.page-hero {
  position: relative; color: var(--white);
  padding-block: clamp(3.5rem, 9vw, 6rem) clamp(2.8rem, 7vw, 4.5rem);
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.14;
  background-image: radial-gradient(circle at 18% 20%, var(--green-400), transparent 45%), radial-gradient(circle at 85% 80%, var(--terracotta), transparent 40%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-top: 0.6rem; }
.page-hero .lede { color: rgba(255,255,255,0.82); margin-top: 0.9rem; }
.breadcrumbs { display: flex; gap: 0.5em; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumbs a:hover { color: var(--white); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
}

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--brown-800); color: var(--cream);
  flex: none;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--green { background: var(--green-700); color: var(--white); }
.icon-badge--cream { background: var(--cream-dark); color: var(--green-800); }
.icon-badge--terracotta { background: var(--terracotta); color: var(--white); }
.icon-badge--outline { background: transparent; border: 1.5px solid currentColor; }

.feature-list { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }
.feature-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-item h4 { margin-bottom: 0.35rem; }
.feature-item p { font-size: 0.95rem; }

.stat-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.stat-strip .feature-item { flex-direction: column; text-align: center; align-items: center; padding: 2rem 1rem; border-left: 1px solid var(--line-dark); }
.stat-strip .feature-item:first-child { border-left: none; }
@media (max-width: 980px) {
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-strip .feature-item:nth-child(3n+1) { border-left: none; }
  .stat-strip .feature-item:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
}
@media (max-width: 620px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .feature-item:nth-child(odd) { border-left: none; }
  .stat-strip .feature-item:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
}

.service-card {
  display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--white); border-radius: var(--radius-m); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(15,61,44,0.35); }
.service-card__media { aspect-ratio: 4/3; background: var(--green-100); position: relative; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
/* Cutout product/feature shots (transparent PNG/WebP subjects) are shown
   whole on a soft brand-tinted backdrop instead of being cropped to fill. */
.media-cutout { background: linear-gradient(150deg, var(--green-100), var(--cream-dark)); }
.media-cutout img, .service-card__media.media-cutout img { object-fit: contain !important; padding: clamp(1rem, 4vw, 2.2rem); }
.service-card__tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--white); color: var(--green-800); padding: 0.4em 0.8em; border-radius: var(--radius-pill);
}
.service-card__body { padding: 0 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.service-card__body p { font-size: 0.94rem; flex: 1; }
.service-card__link { display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--font-display); font-weight: 600; color: var(--terracotta-dark); font-size: 0.9rem; }
.service-card__link svg { width: 15px; height: 15px; transition: transform var(--dur-s) var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

.placeholder-media {
  background: linear-gradient(150deg, var(--green-100), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600); position: relative;
}
.placeholder-media svg { width: 34%; height: 34%; opacity: 0.7; }

/* why-choose grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.why-item h4 { font-size: 1.05rem; }
.why-item p { font-size: 0.92rem; }
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* process / timeline (numbered — real sequences only) */
.process-list { counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.process-step { counter-increment: step; background: var(--white); padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.2rem); display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; }
.process-step__num {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  width: 46px; height: 46px; border-radius: 50%; background: var(--green-800); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.process-step__num::before { content: counter(step, decimal-leading-zero); }
.process-step h4 { margin-bottom: 0.3rem; }
.process-step p { font-size: 0.94rem; }

/* quote / testimonial */
.quote-card { background: var(--cream); border-radius: var(--radius-l); padding: clamp(2rem,4vw,3rem); position: relative; }
.quote-card svg.quote-mark { width: 34px; height: 34px; color: var(--terracotta); margin-bottom: 1rem; }
.quote-card p.quote-text { font-family: var(--font-display); font-size: var(--step1); color: var(--green-900); font-weight: 500; line-height: 1.45; }
.quote-card .quote-attrib { margin-top: 1.3rem; display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--ink-soft); }

/* team card */
.team-card { text-align: left; }
.team-card__media { aspect-ratio: 1; border-radius: var(--radius-m); overflow: hidden; margin-bottom: 1rem; }
.team-card h4 { margin-bottom: 0.1rem; }
.team-card .role { font-family: var(--font-mono); font-size: 0.8rem; color: var(--terracotta-dark); letter-spacing: 0.02em; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 0.75rem; }
.gallery-grid .placeholder-media { border-radius: var(--radius-s); }
.gallery-grid > :nth-child(4n+1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid > :nth-child(4n+1) { grid-column: span 2; grid-row: span 1; } }

/* ============================================================
   FORMS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--green-900); }
.field .hint { font-size: 0.8rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  padding: 0.85em 1.05em; border-radius: var(--radius-s);
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  transition: border-color var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
  font-size: 0.96rem; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-600); box-shadow: 0 0 0 4px var(--green-50); outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-stack { display: grid; gap: 1.1rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: var(--ink-soft); }
.checkbox-row input { margin-top: 0.25rem; width: 16px; height: 16px; accent-color: var(--green-700); }
.form-msg { font-size: 0.88rem; padding: 0.85em 1.1em; border-radius: var(--radius-s); display: none; }
.form-msg.is-visible { display: block; }
.form-msg--success { background: #e6f3ea; color: var(--success); }
.form-msg--error { background: #fbe9e7; color: var(--error); }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute; right: 1em; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.select-wrap select { appearance: none; padding-right: 2.4em; }

/* payment method radio cards (checkout) */
.pay-options { display: grid; gap: 0.8rem; }
.pay-option {
  display: flex; align-items: center; gap: 0.9rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-s); padding: 1rem 1.2rem;
  cursor: pointer; transition: border-color var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.pay-option:hover { border-color: var(--green-500); }
.pay-option input { accent-color: var(--green-700); width: 18px; height: 18px; }
.pay-option.is-checked { border-color: var(--green-700); background: var(--green-50); }
.pay-option .pay-name { font-weight: 600; font-family: var(--font-display); font-size: 0.94rem; }
.pay-option .pay-sub { font-size: 0.8rem; color: var(--ink-soft); }

/* ============================================================
   SHOP + PRODUCT
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(1.5rem,3vw,2.8rem); align-items: start; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.filter-panel { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 1.8rem; }
.filter-group h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-900); margin-bottom: 0.9rem; font-family: var(--font-mono); font-weight: 600; }
.filter-option { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding: 0.4rem 0; cursor: pointer; font-size: 0.92rem; color: var(--ink-soft); }
.filter-option input { accent-color: var(--green-700); width: 16px; height: 16px; }
.filter-option .count { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-soft); opacity: 0.7; }
.filter-panel-mobile-toggle { display: none; }
@media (max-width: 900px) {
  .filter-panel-mobile-toggle { display: inline-flex; margin-bottom: 1rem; }
  .filter-panel { display: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 1.5rem; position: static; }
  .filter-panel.is-open { display: flex; }
}

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.shop-toolbar .result-count { font-size: 0.88rem; color: var(--ink-soft); }
.search-box { position: relative; flex: 1; min-width: 220px; max-width: 380px; }
.search-box svg { position: absolute; left: 1em; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--ink-soft); }
.search-box input { width: 100%; padding: 0.75em 1em 0.75em 2.6em; border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: var(--white); }
.search-box input:focus { border-color: var(--green-600); outline: none; box-shadow: 0 0 0 4px var(--green-50); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 26px 44px -28px rgba(15,61,44,0.32); }
.product-card__media { aspect-ratio: 1/1; position: relative; }
.product-card__wishlist {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--green-900);
  display: flex; align-items: center; justify-content: center; border: none;
}
.product-card__wishlist svg { width: 18px; height: 18px; }
.product-card__wishlist.is-active { color: var(--terracotta); }
.product-card__wishlist.is-active svg#icon-heart-use { display: none; }
.product-card__badge {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--green-800); color: var(--white); padding: 0.4em 0.75em; border-radius: var(--radius-pill);
}
.product-card__body { padding: 1.1rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-card__cat { font-family: var(--font-mono); font-size: 0.72rem; color: var(--terracotta-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.product-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--green-900); }
.product-card__title a::after { content: ''; position: absolute; inset: 0; }
.product-card__rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--ink-soft); }
.product-card__rating svg { width: 13px; height: 13px; color: var(--terracotta); }
.product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding-top: 0.6rem; }
.product-card__price { font-family: var(--font-mono); font-weight: 600; color: var(--green-900); font-size: 1.02rem; }
.product-card__price .was { font-family: var(--font-body); font-weight: 400; text-decoration: line-through; color: var(--ink-soft); font-size: 0.82rem; margin-right: 0.4em; }
.product-card__add {
  position: relative; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-800); color: var(--white);
  display: flex; align-items: center; justify-content: center; border: none; flex: none;
  transition: background var(--dur-s) var(--ease);
}
.product-card__add:hover { background: var(--terracotta); }
.product-card__add svg { width: 18px; height: 18px; }
.product-card__quote { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; color: var(--green-800); position: relative; z-index: 2; }

.empty-state { text-align: center; padding: 4rem 1rem; color: var(--ink-soft); }
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--green-400); }

/* product detail */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 900px) { .pd-layout { grid-template-columns: 1fr; } }
.pd-gallery-main { aspect-ratio: 1/1; border-radius: var(--radius-m); overflow: hidden; margin-bottom: 0.9rem; }
.pd-gallery-thumbs { display: flex; gap: 0.7rem; }
.pd-gallery-thumbs button { width: 74px; height: 74px; border-radius: var(--radius-s); overflow: hidden; border: 2px solid transparent; padding: 0; }
.pd-gallery-thumbs button.is-active { border-color: var(--green-700); }
.pd-price-row { display: flex; align-items: baseline; gap: 0.8rem; margin: 0.9rem 0 1.3rem; }
.pd-price { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 600; color: var(--green-900); }
.pd-price .was { font-family: var(--font-body); font-size: 1rem; text-decoration: line-through; color: var(--ink-soft); font-weight: 400; }
.pd-meta-list { display: grid; gap: 0.6rem; margin: 1.4rem 0; font-size: 0.92rem; }
.pd-meta-list div { display: flex; gap: 0.6rem; }
.pd-meta-list dt { font-weight: 600; color: var(--green-900); min-width: 8.5em; }
.pd-meta-list dd { color: var(--ink-soft); }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.qty-stepper button { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: none; background: transparent; }
.qty-stepper button svg { width: 16px; height: 16px; }
.qty-stepper input { width: 44px; text-align: center; border: none; background: transparent; font-weight: 600; }
.pd-actions { display: flex; gap: 0.9rem; align-items: center; margin-top: 1.6rem; flex-wrap: wrap; }
.pd-tabs { display: flex; gap: 1.8rem; border-bottom: 1.5px solid var(--line); margin: 3rem 0 1.8rem; overflow-x: auto; }
.pd-tab { padding-bottom: 0.9rem; font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); border-bottom: 2.5px solid transparent; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; }
.pd-tab.is-active { color: var(--green-900); border-color: var(--terracotta); }
.pd-tabpanel { display: none; }
.pd-tabpanel.is-active { display: block; }

.review { display: flex; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: none; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; flex: none; }
.review__stars { display: flex; gap: 0.15rem; color: var(--terracotta); margin: 0.2rem 0 0.5rem; }
.review__stars svg { width: 14px; height: 14px; }
.review__meta { font-size: 0.8rem; color: var(--ink-soft); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: grid; gap: 0.8rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.5rem; background: none; border: none; text-align: left;
  font-family: var(--font-display); font-weight: 600; color: var(--green-900); font-size: 1rem;
}
.faq-q svg { width: 18px; height: 18px; flex: none; transition: transform var(--dur-m) var(--ease); color: var(--terracotta); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-m) var(--ease); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; font-size: 0.95rem; color: var(--ink-soft); }

/* resource cards */
.resource-card { display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--white); }
.resource-card__type { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--terracotta-dark); }

/* ============================================================
   CART DRAWER + TOAST
   ============================================================ */
.overlay {
  position: fixed; inset: 0; background: rgba(15,26,20,0.55); z-index: 400;
  opacity: 0; visibility: hidden; transition: opacity var(--dur-m) var(--ease), visibility var(--dur-m);
}
.overlay.is-visible { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); z-index: 401;
  background: var(--paper); box-shadow: -20px 0 50px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--dur-m) var(--ease);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 1.15rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.drawer-foot { padding: 1.3rem 1.5rem 1.6rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 0.9rem; }
.drawer-subtotal { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--green-900); }

.cart-line { display: grid; grid-template-columns: 68px 1fr auto; gap: 0.9rem; }
.cart-line__media { width: 68px; height: 68px; border-radius: var(--radius-s); overflow: hidden; }
.cart-line__title { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.cart-line__variant { font-size: 0.8rem; color: var(--ink-soft); }
.cart-line__row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; gap: 0.5rem; }
.cart-line__remove { font-size: 0.78rem; color: var(--ink-soft); text-decoration: underline; }
.cart-line__price { font-family: var(--font-mono); font-weight: 600; font-size: 0.9rem; }
.qty-stepper--sm button { width: 30px; height: 30px; }
.qty-stepper--sm input { width: 30px; font-size: 0.85rem; }

.toast-stack { position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 500; display: flex; flex-direction: column; gap: 0.6rem; align-items: center; width: 100%; padding: 0 1rem; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--green-900); color: var(--white);
  padding: 0.85em 1.3em; border-radius: var(--radius-pill);
  font-size: 0.88rem; box-shadow: 0 16px 32px -12px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(10px); transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease);
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast svg { width: 17px; height: 17px; color: var(--terracotta); flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.78); }
.footer-top { padding-block: clamp(3rem, 6vw, 5rem) 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: clamp(1.8rem, 3vw, 3rem); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 30px; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 30ch; font-size: 0.9rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.2rem; font-size: 0.88rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 0.18rem; color: var(--terracotta); }
.footer-contact a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; transition: background var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease); }
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { font-family: var(--font-display); color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.9rem; transition: color var(--dur-s) var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-newsletter { display: flex; gap: 0.5rem; margin-top: 0.9rem; }
.footer-newsletter input { flex: 1; min-width: 0; padding: 0.75em 1em; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); color: var(--white); font-size: 0.85rem; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--terracotta); color: var(--white); border: none; display: flex; align-items: center; justify-content: center; }
.footer-newsletter button svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.4rem; }

/* ============================================================
   REVEAL-ON-SCROLL (subtle, respects reduced motion)
   ============================================================ */
/* Visible by default so content never depends on JS running (no-JS users,
   crawlers, slow/broken scripts). main.js opts elements into the pending
   (pre-animation) state right before observing them, then reveals on scroll. */
.reveal { opacity: 1; transform: none; }
.reveal.reveal-pending { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.reveal-pending.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal.reveal-pending { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.is-hidden { display: none !important; }
.flow > * + * { margin-top: 1.2rem; }
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.divider-line { height: 1px; background: var(--line); border: none; }
.badge-check { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.86rem; color: var(--ink-soft); }
.badge-check svg { width: 16px; height: 16px; color: var(--green-600); flex: none; }

.whatsapp-fab {
  position: fixed; left: 1.4rem; bottom: 1.4rem; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.45);
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 36px -10px rgba(0,0,0,0.5); }
.whatsapp-fab svg { width: 27px; height: 27px; }
@media (max-width: 640px) {
  .whatsapp-fab { left: 1rem; bottom: 1rem; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

.back-to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%; background: var(--green-900); color: var(--white);
  display: flex; align-items: center; justify-content: center; border: none;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease), visibility var(--dur-m);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; transform: rotate(-90deg); }

::selection { background: var(--terracotta-light); color: var(--brown-900); }

@media print {
  .site-header, .site-footer, .back-to-top, .drawer, .overlay { display: none !important; }
}
