/* ============================================================
   NAMIB PHARMACY — Bright Retail Build
   ============================================================ */

:root {
  /* Palette — vivid retail pharmacy */
  --white: #ffffff;
  --paper: #fafcf9;
  --mint: #e8f8ee;
  --mint-deep: #c8ebd3;
  --green: #18a957;
  --green-bright: #25c46c;
  --green-deep: #0f5132;
  --green-ink: #0a3320;
  --orange: #ff6b35;
  --orange-bright: #ff8246;
  --orange-soft: #ffe4d1;
  --peach: #ffd0b3;
  --yellow: #ffd23f;
  --ink: #0a1a14;
  --ink-soft: #4a5854;
  --ink-muted: #8a9590;
  --line: #e5ebe7;

  /* Type */
  --display: "Bricolage Grotesque", "Plus Jakarta Sans", -apple-system, sans-serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* System */
  --rad: 8px;
  --rad-lg: 20px;
  --rad-xl: 32px;
  --rad-pill: 999px;
  --gut: clamp(20px, 4vw, 56px);
  --shadow-sm: 0 2px 6px rgba(10, 26, 20, .06);
  --shadow: 0 8px 24px -8px rgba(15, 81, 50, .15), 0 2px 6px rgba(10, 26, 20, .04);
  --shadow-lg: 0 24px 60px -20px rgba(15, 81, 50, .25);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--green); color: var(--white); }

/* ----------------------------------------------------------- */
/*  Typography                                                  */
/* ----------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "wdth" 100, "opsz" 96;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--green-ink);
  margin: 0;
}
.display .hl { color: var(--green); }
.display .ho { color: var(--orange); }
.display .marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.display .marker::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4%;
  right: -4%;
  bottom: 6%;
  height: 38%;
  background: var(--yellow);
  border-radius: 4px;
  transform: skew(-3deg);
}

h1.display { font-size: clamp(44px, 7.6vw, 116px); letter-spacing: -.04em; }
h2.display { font-size: clamp(34px, 5.2vw, 76px); letter-spacing: -.035em; }
h3.display { font-size: clamp(24px, 3vw, 38px); letter-spacing: -.025em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: var(--mint);
  color: var(--green-deep);
  border-radius: var(--rad-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.eyebrow.orange { background: var(--orange-soft); color: var(--orange); }
.eyebrow .pulse {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--green-bright);
  animation: pulse 2s infinite;
}
.eyebrow.orange .pulse { background: var(--orange); box-shadow: 0 0 0 0 var(--orange); }
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ----------------------------------------------------------- */
/*  Layout                                                      */
/* ----------------------------------------------------------- */
.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
section { position: relative; }

/* ----------------------------------------------------------- */
/*  Top bar                                                     */
/* ----------------------------------------------------------- */
.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
.topbar .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--gut);
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.topbar a:hover { text-decoration-thickness: 2px; }
.topbar .spark::before {
  content: "⚡";
  margin-right: 8px;
}

/* ----------------------------------------------------------- */
/*  Nav                                                         */
/* ----------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gut);
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 14px -4px rgba(15, 81, 50, .35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: -.015em;
}
.brand-text .sub {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-top: 4px;
}

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: var(--rad-pill);
  transition: all .2s var(--ease);
}
.nav-links a:hover { color: var(--green-ink); background: var(--mint); }
.nav-links a.active { color: var(--green); background: var(--mint); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 18px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--rad-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
  box-shadow: 0 4px 12px -2px rgba(24, 169, 87, .4);
}
.nav-cta:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(24, 169, 87, .5);
}
.nav-cta svg { width: 18px; height: 18px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--rad-pill);
  background: var(--mint);
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 18px; height: 2px;
  background: var(--green-ink);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { top: 18px; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px var(--gut) 24px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .nav.menu-open .nav-links a {
    padding: 14px 18px;
    font-size: 17px;
  }
  .nav.menu-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: 100%;
    left: var(--gut);
    margin-top: 12px;
  }
}

/* ----------------------------------------------------------- */
/*  Hero                                                        */
/* ----------------------------------------------------------- */
.hero {
  padding: clamp(48px, 6vw, 88px) 0 clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--mint), transparent 70%);
  pointer-events: none;
}
.hero .shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .eyebrow { margin-bottom: 28px; }
.hero-text h1 { margin-bottom: 28px; }
.hero-text .lede { margin-bottom: 36px; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--rad-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .005em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 18px -4px rgba(24, 169, 87, .5);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(24, 169, 87, .6);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px -4px rgba(255, 107, 53, .5);
}
.btn-orange:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--white);
  color: var(--green-ink);
  border: 1.5px solid var(--green-deep);
}
.btn-ghost:hover { background: var(--green-deep); color: var(--white); }
.btn-cream {
  background: var(--white);
  color: var(--green-ink);
  box-shadow: var(--shadow);
}
.btn-cream:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.trust-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-row .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-row .item svg { width: 18px; height: 18px; color: var(--green); }

/* Hero visual — illustrated phone + product collage */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-burst {
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 50%;
  transform: scale(.78);
  z-index: 0;
}
.hero-burst::before, .hero-burst::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.25);
}
.hero-burst::before { transform: scale(1.08); }
.hero-burst::after { transform: scale(1.18); }

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--rad-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 78%;
  max-width: 340px;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.hero-card-head .icon-wa {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-card-head .icon-wa svg { width: 22px; height: 22px; color: white; }
.hero-card-head .who { font-size: 13px; line-height: 1.3; }
.hero-card-head .who strong { display: block; font-size: 14px; color: var(--green-ink); }
.hero-card-head .who span { color: var(--ink-muted); font-size: 11px; }
.hero-card-head .online {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  padding: 4px 9px;
  background: var(--mint);
  border-radius: var(--rad-pill);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bubble {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #f0f3ef;
  border-radius: 14px 14px 14px 4px;
  font-size: 14px;
  color: var(--ink);
  max-width: 86%;
  position: relative;
  animation: bubbleIn .5s var(--bounce) both;
}
.bubble.me {
  background: #dcf8c6;
  border-radius: 14px 14px 4px 14px;
  margin-left: auto;
}
.bubble small {
  display: block;
  font-size: 10px;
  color: var(--ink-muted);
  margin-top: 4px;
  text-align: right;
}
.bubble .check { color: #4FC3F7; }
.bubble.delay-1 { animation-delay: .3s; }
.bubble.delay-2 { animation-delay: .7s; }
.bubble.delay-3 { animation-delay: 1.1s; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--orange);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--rad-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  box-shadow: var(--shadow-lg);
  transform: rotate(-6deg);
}
.hero-badge.tl { top: 6%; left: -6%; }
.hero-badge.br { bottom: 6%; right: -4%; transform: rotate(4deg); background: var(--white); color: var(--green-ink); }
.hero-badge svg { width: 22px; height: 22px; }
.hero-badge strong { display: block; font-size: 18px; font-family: var(--display); font-weight: 800; letter-spacing: -.01em; }
.hero-badge .small { font-size: 11px; opacity: .8; font-weight: 600; }

@media (max-width: 920px) {
  .hero .shell { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; aspect-ratio: 1; }
  .hero-badge.tl { left: 0; }
  .hero-badge.br { right: 0; }
}

/* ----------------------------------------------------------- */
/*  Trust strip (logos/icon strip)                              */
/* ----------------------------------------------------------- */
.trust-strip {
  background: var(--green-ink);
  color: var(--mint);
  padding: 22px 0;
  overflow: hidden;
}
.trust-strip .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.trust-strip .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.trust-strip .item svg { width: 20px; height: 20px; color: var(--green-bright); }
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); opacity: .5; }

/* ----------------------------------------------------------- */
/*  Section header                                              */
/* ----------------------------------------------------------- */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-mint { background: var(--mint); }
.section-paper { background: var(--paper); }
.section-deep { background: var(--green-ink); color: var(--white); }
.section-deep .display { color: var(--white); }
.section-deep .lede { color: var(--mint-deep); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange .display { color: var(--white); }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .lede { margin: 0; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

/* ----------------------------------------------------------- */
/*  Services bento                                              */
/* ----------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.svc {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc.green { background: var(--green); color: var(--white); border-color: var(--green); }
.svc.green h3 { color: var(--white); }
.svc.green p { color: rgba(255,255,255,.85); }
.svc.green .svc-tag { background: rgba(255,255,255,.15); color: white; }
.svc.green .svc-icon { background: rgba(255,255,255,.18); color: white; }

.svc.mint { background: var(--mint); border-color: var(--mint-deep); }
.svc.orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.svc.orange h3 { color: var(--white); }
.svc.orange p { color: rgba(255,255,255,.9); }
.svc.orange .svc-tag { background: rgba(255,255,255,.18); color: white; }
.svc.orange .svc-icon { background: rgba(255,255,255,.2); color: white; }

.svc.peach { background: var(--orange-soft); border-color: var(--peach); }
.svc.peach .svc-icon { background: var(--orange); color: white; }

.svc.dark { background: var(--green-ink); color: var(--white); border-color: var(--green-ink); }
.svc.dark h3 { color: var(--white); }
.svc.dark p { color: var(--mint-deep); }
.svc.dark .svc-icon { background: var(--green); color: white; }
.svc.dark .svc-tag { background: rgba(255,255,255,.1); color: var(--mint-deep); }

.svc:nth-child(1) { grid-column: span 5; }
.svc:nth-child(2) { grid-column: span 4; }
.svc:nth-child(3) { grid-column: span 3; }
.svc:nth-child(4) { grid-column: span 4; }
.svc:nth-child(5) { grid-column: span 4; }
.svc:nth-child(6) { grid-column: span 4; }

.svc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 28px; height: 28px; }
.svc h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--green-ink);
}
.svc p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.svc-tag {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 12px;
  background: var(--white);
  border-radius: var(--rad-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-deep);
}

@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; }
  .svc { grid-column: span 1 !important; min-height: 0; padding: 24px; }
}

/* ----------------------------------------------------------- */
/*  How it works (3 steps)                                      */
/* ----------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 16%; right: 16%;
  height: 2px;
  border-top: 2px dashed var(--green-bright);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.step-num {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--green);
  position: relative;
}
.step:nth-child(2) .step-num { background: var(--green); color: var(--white); }
.step:nth-child(3) .step-num { background: var(--orange); border-color: var(--orange); color: var(--white); }
.step h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-ink);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 30ch;
  margin-inline: auto;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .steps::before { display: none; }
  .step { padding: 16px; background: var(--paper); border-radius: var(--rad-lg); }
}

/* ----------------------------------------------------------- */
/*  Stats band                                                  */
/* ----------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--rad-lg);
  border: 1.5px solid var(--line);
  transition: all .3s var(--ease);
}
.stat:hover { transform: translateY(-2px); border-color: var(--green); box-shadow: var(--shadow); }
.stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  font-variation-settings: "wdth" 100;
  line-height: 1;
  color: var(--green);
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.stat-num .small { font-size: .5em; color: var(--orange); font-weight: 700; }
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
}
.stat-label strong { display: block; color: var(--green-ink); font-size: 15px; margin-bottom: 4px; }
@media (max-width: 880px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ----------------------------------------------------------- */
/*  Testimonial / quote                                         */
/* ----------------------------------------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--white);
  border-radius: var(--rad-lg);
  padding: 28px;
  border: 1.5px solid var(--line);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--orange);
}
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 500;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 16px;
}
.review-author .meta { line-height: 1.3; }
.review-author .meta strong { display: block; font-size: 14px; color: var(--green-ink); }
.review-author .meta span { font-size: 12px; color: var(--ink-muted); }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- */
/*  Big CTA panel                                               */
/* ----------------------------------------------------------- */
.cta-panel {
  background: var(--green);
  color: var(--white);
  padding: clamp(48px, 7vw, 88px) clamp(32px, 5vw, 80px);
  border-radius: var(--rad-xl);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, var(--green-bright), transparent 60%);
  opacity: .5;
}
.cta-panel.orange { background: var(--orange); }
.cta-panel.orange::before { background: radial-gradient(circle, var(--orange-bright), transparent 60%); }

.cta-panel h2 { color: var(--white); margin-bottom: 20px; }
.cta-panel .lede { color: rgba(255,255,255,.92); margin: 0; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .cta-panel { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------- */
/*  Page hero (inner pages)                                     */
/* ----------------------------------------------------------- */
.page-hero {
  padding: clamp(64px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  background: linear-gradient(180deg, var(--mint) 0%, var(--white) 100%);
}
.page-hero .shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 { margin: 24px 0 0; }
@media (max-width: 880px) {
  .page-hero .shell { grid-template-columns: 1fr; gap: 24px; }
}

/* ----------------------------------------------------------- */
/*  About sections                                              */
/* ----------------------------------------------------------- */
.about-text-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about-text-grid h2 { position: sticky; top: 110px; }
.about-text-grid .body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 60ch;
}
.about-text-grid .body p strong { color: var(--green-ink); font-weight: 700; }
@media (max-width: 880px) {
  .about-text-grid { grid-template-columns: 1fr; }
  .about-text-grid h2 { position: static; }
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.value {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.value:nth-child(1) { background: var(--mint); border-color: var(--mint-deep); }
.value:nth-child(2) { background: var(--orange-soft); border-color: var(--peach); }
.value:nth-child(3) { background: var(--white); }
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--green);
}
.value-icon svg { width: 26px; height: 26px; }
.value:nth-child(2) .value-icon { color: var(--orange); }
.value h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--green-ink);
  letter-spacing: -.02em;
}
.value p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- */
/*  Services detail page                                        */
/* ----------------------------------------------------------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.svc-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-xl);
  overflow: hidden;
}
.svc-card-body { padding: clamp(28px, 4vw, 48px); }
.svc-card-side {
  background: var(--mint);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.svc-card:nth-child(even) { grid-template-columns: 1fr 1.4fr; }
.svc-card:nth-child(even) .svc-card-body { order: 2; }
.svc-card:nth-child(even) .svc-card-side { order: 1; background: var(--orange-soft); }
.svc-card:nth-child(3n) .svc-card-side { background: var(--green); color: var(--white); }
.svc-card:nth-child(3n) .svc-card-side .svc-side-icon { background: rgba(255,255,255,.18); color: white; }
.svc-card:nth-child(3n) .svc-card-side .svc-side-label { color: rgba(255,255,255,.85); }

.svc-card-num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.svc-card h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--green-ink);
  margin: 0 0 20px;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.svc-card .lede-sm {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.svc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.svc-card li {
  font-size: 14.5px;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
  font-weight: 500;
}
.svc-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.svc-side-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--green);
}
.svc-side-icon svg { width: 32px; height: 32px; }
.svc-side-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green-deep);
}
.svc-side-value {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--green-ink);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.svc-card:nth-child(3n) .svc-side-value { color: var(--white); }

@media (max-width: 880px) {
  .svc-card, .svc-card:nth-child(even) { grid-template-columns: 1fr; }
  .svc-card:nth-child(even) .svc-card-body { order: 1; }
  .svc-card:nth-child(even) .svc-card-side { order: 2; }
  .svc-card ul { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------- */
/*  Contact page                                                */
/* ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cc {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 24px;
  transition: all .25s var(--ease);
}
.cc:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.cc.full { grid-column: span 2; background: var(--green); color: var(--white); border-color: var(--green); }
.cc.full .cc-icon { background: rgba(255,255,255,.2); color: white; }
.cc.full .cc-label { color: rgba(255,255,255,.85); }
.cc.full .cc-value, .cc.full .cc-value a { color: var(--white); }
.cc.full .cc-sub { color: rgba(255,255,255,.85); }

.cc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.cc-icon svg { width: 22px; height: 22px; }
.cc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.cc-value {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-ink);
  line-height: 1.25;
  letter-spacing: -.015em;
}
.cc-value a:hover { color: var(--orange); }
.cc-sub { font-size: 13px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }

.hours-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 28px;
  margin-top: 16px;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 32px;
  margin-top: 16px;
}
.hours-grid .day { color: var(--ink-soft); font-weight: 500; font-size: 14.5px; }
.hours-grid .time { color: var(--green-ink); font-weight: 700; font-size: 14.5px; }
.hours-grid .time.closed { color: var(--orange); }
.hours-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--mint);
  border-radius: var(--rad-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--green-deep);
}

.map-card {
  background: var(--green-ink);
  border-radius: var(--rad-xl);
  overflow: hidden;
  position: sticky;
  top: 100px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.map-frame {
  flex: 1;
  width: 100%;
  border: 0;
}
.map-foot {
  padding: 24px 28px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--green-ink);
}
.map-foot strong { font-family: var(--display); font-weight: 700; font-size: 17px; }
.map-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--green);
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
}
.map-foot a:hover { background: var(--green-bright); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .cc.full { grid-column: span 1; }
  .map-card { position: static; min-height: 400px; }
}

/* ----------------------------------------------------------- */
/*  Footer                                                      */
/* ----------------------------------------------------------- */
footer {
  background: var(--green-ink);
  color: var(--mint-deep);
  padding: 72px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.foot-brand { max-width: 320px; }
.foot-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.foot-brand-row img { width: 44px; height: 44px; border-radius: 50%; }
.foot-brand-row .name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.015em;
}
.foot-brand p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
  color: var(--mint-deep);
}
.foot-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
}
.foot-wa:hover { background: var(--green-bright); }
.foot-wa svg { width: 16px; height: 16px; }

.foot-col h5 {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin: 0 0 18px;
  font-weight: 700;
}
.foot-col a, .foot-col p {
  display: block;
  font-size: 14px;
  color: var(--mint-deep);
  margin: 0 0 10px;
  line-height: 1.55;
}
.foot-col a:hover { color: var(--white); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--mint-deep);
}
.foot-bottom .vance { color: var(--green-bright); font-weight: 600; }
.foot-bottom .vance:hover { color: var(--white); }

@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: span 2; max-width: none; }
}

/* ----------------------------------------------------------- */
/*  Reveal motion                                               */
/* ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eyebrow .pulse { animation: none; }
}

/* ----------------------------------------------------------- */
/*  Promo banners                                               */
/* ----------------------------------------------------------- */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.promo {
  position: relative;
  background: var(--white);
  border-radius: var(--rad-xl);
  overflow: hidden;
  border: 1.5px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 320px;
  transition: all .3s var(--ease);
}
.promo:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.promo-img {
  background: #fff5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.promo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.promo-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--orange);
  color: white;
  border-radius: var(--rad-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.promo-body h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--green-ink);
  margin: 0;
  line-height: 1.1;
}
.promo-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--green);
  letter-spacing: -.02em;
  line-height: 1;
}
.promo-price .unit { color: var(--orange); font-size: 14px; margin-left: 6px; }
.promo-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.promo-cta {
  margin-top: 6px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--green);
  color: white;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
}
.promo-cta:hover { background: var(--green-bright); }
.promo-cta svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .promo-grid { grid-template-columns: 1fr; }
  .promo { grid-template-columns: 1fr; min-height: 0; }
  .promo-img { min-height: 240px; }
}

/* ----------------------------------------------------------- */
/*  Product grid                                                */
/* ----------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
  position: relative;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8fcf9;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product:hover .product-img img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--green);
  color: white;
  border-radius: var(--rad-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge.orange { background: var(--orange); }
.product-badge.dark { background: var(--green-ink); }

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.product-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin: 0;
  min-height: 40px;
}
.product-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--green-ink);
  letter-spacing: -.01em;
}
.product-price .small { color: var(--ink-muted); font-size: 11px; font-weight: 600; margin-left: 4px; }
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  background: var(--green);
  color: white;
  border-radius: var(--rad-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: all .2s var(--ease);
}
.product-cta:hover { background: var(--green-bright); transform: translateY(-1px); }
.product-cta svg { width: 14px; height: 14px; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 15px; min-height: 0; }
  .product-cta { padding: 7px 10px; font-size: 11px; }
}

/* Featured products section on homepage uses same grid */
.product-grid.featured { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .product-grid.featured { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid.featured { grid-template-columns: 1fr 1fr; } }
