/* ─── GRID MARK SVG (inline logo icon) ───────────── */
    .grid-mark {
      display: inline-block;
      width: 40px;
      height: 40px;
    }

/* ─── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.25rem 0;
      transition: background var(--transition), padding var(--transition), border-color var(--transition);
      background: rgba(13,15,14,0.42);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid transparent;
    }

nav.scrolled {
      background: rgba(13, 15, 14, 0.72);
      backdrop-filter: blur(20px) saturate(150%);
      -webkit-backdrop-filter: blur(20px) saturate(150%);
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--glass-edge);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }

/* backdrop-filter on <nav> makes it the containing block for any
   position:fixed descendant, which breaks the full-screen mobile menu
   (a fixed child of <nav>) — it gets confined to the navbar's own small
   box instead of covering the viewport. Drop it while the menu is open;
   the menu's own near-opaque background covers the navbar visually anyway. */
nav.menu-open {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

.nav-logo {
      display: flex;
      align-items: center;
    }

.nav-logo img.logo-img {
      width: 260px;
      height: auto;
      object-fit: contain;
      display: block;
      transition: width var(--transition);
    }

nav.scrolled .nav-logo img.logo-img {
      width: 200px;
    }

/* Footer logo sits outside <nav>, so it needs its own fixed size
   rather than inheriting the nav's scroll-responsive width rules. */
.footer-brand .logo-img {
  width: 200px;
  height: auto;
}

.nav-logo-text {
      font-family: var(--font-cond);
      font-weight: 700;
      font-size: 1.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      line-height: 1;
      color: var(--white);
    }

.nav-logo-text small {
      display: block;
      font-size: 0.5rem;
      letter-spacing: 0.25em;
      color: var(--gray);
      font-weight: 400;
      text-transform: uppercase;
      margin-top: 0.15rem;
    }

.nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }

.nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      font-family: var(--font-cond);
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      transition: color var(--transition);
    }

.nav-links a:hover { color: var(--olive-light); }

.nav-cta {
      font-family: var(--font-cond) !important;
      font-size: 0.85rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.2em !important;
      text-transform: uppercase !important;
      color: var(--olive-light) !important;
      background: var(--white);
      padding: 0.6rem 1.4rem;
      border-radius: var(--radius);
      box-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 0 0 rgba(138,158,92,0);
      transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition) !important;
    }

.nav-cta:hover {
      background: var(--olive-light) !important;
      color: var(--white) !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(0,0,0,0.3), 0 0 20px rgba(138,158,92,0.4);
    }

/* ─── WHO WE ARE BAND (#about) ────────────────────────── */
.about-copy {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.85;
}

.about-copy--first { margin-bottom: 1.5rem; }

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(92,110,58,0.15);
  border: 1px solid var(--olive);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--olive-light);
}

.about-feature-title {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.about-feature-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      background: linear-gradient(165deg, rgba(20,23,21,0.5) 0%, rgba(13,15,14,0.42) 70%);
      backdrop-filter: blur(26px) saturate(150%);
      -webkit-backdrop-filter: blur(26px) saturate(150%);
      border: 1px solid var(--glass-edge);
      border-radius: 16px;
      padding: 3rem 3.5rem;
      box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 60px rgba(96,150,142,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
      overflow: hidden;
      isolation: isolate;
    }

.hero-content::before {
      content: '';
      position: absolute;
      top: 0; left: 6%; right: 6%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--glass-edge-hi), transparent);
      opacity: 0.55;
      z-index: 1;
    }

@media (max-width: 900px) {
  /* Reduce hero-content card padding so it doesn't crowd small screens */
  .hero-content { padding: 2rem 2rem; }
}

.hero-eyebrow {
      font-family: var(--font-cond);
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--olive-light);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

.hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--olive);
    }

.hero-sub {
      font-family: var(--font-cond);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(154,160,166,0.65);
      margin-bottom: 1.2rem;
    }

.hero-desc {
      font-size: 1.05rem;
      color: var(--gray-light);
      max-width: 520px;
      margin-bottom: 2.5rem;
      line-height: 1.75;
    }

.btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-cond);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--white);
      color: var(--olive-light);
      padding: 1rem 2rem;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(0,0,0,0.22), 0 0 0 rgba(138,158,92,0);
      transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    }

.btn-primary svg { transition: transform var(--transition); }

.btn-primary:hover {
      background: var(--olive-light);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.32), 0 0 24px rgba(138,158,92,0.4);
    }

.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-cond);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--off-white);
      padding: 1rem 2rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.15);
      cursor: pointer;
      transition: border-color var(--transition), color var(--transition);
      background: transparent;
    }

.btn-ghost:hover { border-color: var(--olive-light); color: var(--olive-light); }

.stat {
      text-align: center;
      border-right: 2px solid var(--olive);
      padding-right: 1.5rem;
    }

.stat:last-child { border-right: none; padding-right: 0; }

/* On narrow phones the divider borders (which only ever separate items,
   never balance both sides) plus generous gaps caused the 3 stats to wrap
   unevenly (2 + 1), reading as lopsided. Drop the dividers and center each
   stat instead — a tighter, symmetric single row at any phone width. */
@media (max-width: 600px) {
  .stat {
    text-align: center;
    border-right: none;
    padding-right: 0;
  }
}

.stat-number {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      color: var(--white);
      line-height: 1;
    }

.stat-label {
      font-family: var(--font-cond);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
    }

.hero-scroll span {
      font-family: var(--font-cond);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gray);
    }

.hero-scroll svg { color: var(--olive-light); }

.services-intro {
      font-size: 1.05rem;
      color: var(--gray-light);
      line-height: 1.8;
    }

.service-card {
      background: var(--glass-fill-lt);
      backdrop-filter: blur(20px) saturate(150%);
      -webkit-backdrop-filter: blur(20px) saturate(150%);
      border: 1px solid var(--glass-edge);
      border-radius: 12px;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
      cursor: default;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
      isolation: isolate;
    }

.service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0;
      background: linear-gradient(to bottom, var(--olive-light), var(--olive));
      border-radius: 0 0 3px 0;
      transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 2;
    }

.service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--glass-edge-hi), transparent);
      opacity: 0.5;
    }

.service-card:hover {
      background: rgba(61,74,46,0.30);
      border-color: rgba(138,158,92,0.24);
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 34px rgba(96,150,142,0.10), inset 0 1px 0 rgba(255,255,255,0.07);
    }

.service-card:hover::before { height: 100%; }

.service-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 1.5rem;
      color: var(--olive-light);
    }

.service-number {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-family: var(--font-display);
      font-size: 4rem;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }

.service-name {
      font-family: var(--font-cond);
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

.service-desc {
      font-size: 0.92rem;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

.crop-tag {
      font-family: var(--font-cond);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--olive-light);
      border: 1px solid var(--olive-dark);
      padding: 0.2rem 0.6rem;
      border-radius: 2px;
    }

/* ─── SERVICES CAROUSEL (click-to-advance, center-focus) ─── */
    .services-carousel-wrap {
      position: relative;
    }

.carousel-slot {
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

.carousel-slot .service-card {
      height: 100%;
      cursor: default;
    }

/* Active (focused) service — large, full opacity, the "main character" */
    .carousel-slot-active {
      flex: 0 1 620px;
      min-width: 0;
      opacity: 1;
      transform: scale(1);
      z-index: 2;
    }

.carousel-slot-active .service-card {
      box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(92,110,58,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
      border-color: rgba(138,158,92,0.3);
    }

/* Neighbor previews — small, dimmed, clipped so only a sliver peeks in */
    .carousel-slot-prev,
    .carousel-slot-next {
      flex: 0 0 130px;
      min-width: 0;
      max-height: 320px;
      overflow: hidden;
      opacity: 0.4;
      transform: scale(0.82);
      cursor: pointer;
    }

.carousel-slot-prev:hover,
    .carousel-slot-next:hover {
      opacity: 0.7;
      transform: scale(0.86);
    }

.carousel-slot-prev.is-empty,
    .carousel-slot-next.is-empty {
      opacity: 0;
      pointer-events: none;
    }

/* Neighbor cards show only icon/number/name — no desc, no crop tags — so they read as a "preview", not full content */
    .carousel-slot-prev .service-desc,
    .carousel-slot-prev .service-crops,
    .carousel-slot-next .service-desc,
    .carousel-slot-next .service-crops {
      display: none;
    }

.carousel-slot-prev .service-card,
    .carousel-slot-next .service-card {
      pointer-events: none;
    }

.services-carousel-data { display: none; }

.carousel-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(92,110,58,0.12);
      border: 1px solid var(--olive-dark);
      color: var(--olive-light);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition);
      flex-shrink: 0;
    }

.carousel-nav-btn:hover:not(:disabled) {
      background: rgba(92,110,58,0.25);
      border-color: var(--olive-light);
      transform: translateY(-2px);
    }

.carousel-nav-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

.carousel-dot {
      position: relative;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(154,160,166,0.35);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), width var(--transition);
    }

/* Invisible hit-area extending the dot to a 44px touch target without
   changing its visual size */
.carousel-dot::before {
      content: '';
      position: absolute;
      inset: -18px;
    }

.carousel-dot:hover { background: var(--olive-light); }

.carousel-dot.active {
      background: var(--olive-light);
      width: 22px;
      border-radius: 4px;
    }

.carousel-counter {
      font-family: var(--font-cond);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      min-width: 3.5rem;
      text-align: center;
    }

/* ─── HOW WE WORK (#process) ──────────────────────────── */
.process-step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

/* Step 2's circle is highlighted to draw the eye mid-sequence */
.process-step-circle--accent { border-color: var(--olive-light); }

.process-step-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--olive-light);
}

.process-step-title {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

.testimonial-card {
      background: var(--glass-fill);
      backdrop-filter: blur(20px) saturate(145%);
      -webkit-backdrop-filter: blur(20px) saturate(145%);
      border: 1px solid var(--glass-edge);
      padding: 2.25rem 2rem;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

.testimonial-card::after {
      content: '';
      position: absolute;
      top: 0; left: 8%; right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--glass-edge-hi), transparent);
      opacity: 0.5;
    }

.testimonial-card:hover {
      transform: translateY(-4px);
      border-color: rgba(138,158,92,0.22);
      box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 30px rgba(96,150,142,0.08), inset 0 1px 0 rgba(255,255,255,0.07);
    }

.testimonial-title {
      font-family: var(--font-cond);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.03em;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

.testimonial-text {
      font-size: 0.95rem;
      color: var(--gray-light);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

.author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--olive-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--olive-light);
      flex-shrink: 0;
    }

.author-name {
      font-family: var(--font-cond);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      color: var(--white);
    }

.author-role {
      font-size: 0.78rem;
      color: var(--gray);
      letter-spacing: 0.05em;
    }

.stars {
      background: linear-gradient(180deg, #fff2c4 0%, #f4c542 45%, #c8891a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: 1.1rem;
      margin-bottom: 1rem;
      letter-spacing: 0.12em;
      filter: drop-shadow(0 1px 1px rgba(0,0,0,0.35)) drop-shadow(0 0 6px rgba(244,197,66,0.4));
    }

.consultation-desc {
      font-size: 1rem;
      color: var(--gray-light);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

.bullet-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(92,110,58,0.2);
      border: 1px solid var(--olive);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }

.bullet-icon svg { color: var(--olive-light); }

.bullet-text { font-size: 0.92rem; color: var(--gray-light); line-height: 1.6; }

.bullet-text strong { color: var(--white); font-weight: 500; }

/* Form */
    .form-card {
      background: linear-gradient(165deg, rgba(20,23,21,0.6) 0%, rgba(13,15,14,0.5) 70%);
      backdrop-filter: blur(28px) saturate(150%);
      -webkit-backdrop-filter: blur(28px) saturate(150%);
      border: 1px solid var(--glass-edge);
      border-radius: 16px;
      padding: 3rem;
      position: relative;
      z-index: 1;
      overflow: hidden;
      isolation: isolate;
      box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 60px rgba(96,150,142,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
    }

.form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 6%; right: 6%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--glass-edge-hi), transparent);
      opacity: 0.55;
    }

@media (max-width: 600px) {
  .form-card { padding: 2rem 1.5rem; }
}

.form-title {
      font-family: var(--font-cond);
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

.form-subtitle {
      font-size: 0.85rem;
      color: var(--gray);
      margin-bottom: 2rem;
    }

label {
      font-family: var(--font-cond);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--olive-light);
    }

input, select, textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      color: var(--off-white);
      font-family: var(--font-body);
      font-size: 0.92rem;
      padding: 0.75rem 1rem;
      transition: border-color var(--transition), background var(--transition);
      outline: none;
      width: 100%;
    }

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }

input:focus, select:focus, textarea:focus {
      border-color: var(--olive-light);
      background: rgba(92,110,58,0.06);
    }

select option { background: var(--charcoal); color: var(--off-white); }

textarea { resize: vertical; min-height: 100px; }

.checkbox-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      min-height: 44px;
      font-size: 0.85rem;
      color: var(--gray-light);
      cursor: pointer;
    }

.checkbox-label input[type="checkbox"] {
      width: 16px;
      height: 16px;
      padding: 0;
      accent-color: var(--olive-light);
      flex-shrink: 0;
    }

.form-submit {
      width: 100%;
      padding: 1.1rem;
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      margin-top: 0.5rem;
      cursor: pointer;
      font-family: var(--font-cond);
      font-weight: 600;
      text-transform: uppercase;
      border: none;
      background: var(--white);
      color: var(--olive-light);
      border-radius: var(--radius);
      box-shadow: 0 4px 14px rgba(0,0,0,0.22), 0 0 0 rgba(138,158,92,0);
      transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    }

.form-submit .btn-arrow { display: inline-block; transition: transform var(--transition); }

.form-submit:hover {
      background: var(--olive-light);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.32), 0 0 24px rgba(138,158,92,0.4);
    }

.form-submit:hover .btn-arrow { transform: translateX(4px); }

.form-note {
      text-align: center;
      font-size: 0.875rem;
      color: var(--gray);
      margin-top: 1rem;
    }

.success-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(92,110,58,0.2);
      border: 2px solid var(--olive-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

.success-title {
      font-family: var(--font-cond);
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

.success-text { font-size: 0.9rem; color: var(--gray-light); }

.contact-item-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius);
      background: rgba(92,110,58,0.12);
      border: 1px solid rgba(92,110,58,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--olive-light);
    }

.contact-item-label {
      font-family: var(--font-cond);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--olive-light);
      margin-bottom: 0.25rem;
    }

.contact-item-value {
      font-size: 0.95rem;
      color: var(--gray-light);
    }

.service-area-map {
      background: var(--charcoal);
      border: 1px solid rgba(92,110,58,0.2);
      border-radius: 6px;
      padding: 2rem;
    }

.map-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--black);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(92,110,58,0.15);
      gap: 0.75rem;
      margin-bottom: 1.5rem;
      padding: 1rem;
    }

.county-map { width: 100%; height: 100%; }

/* Real California county boundaries (US Census cartographic boundary
   data, public domain) — all 58 counties render at low opacity so the
   full state shape stays visible and recognizable, with the 8 counties
   WCC serves picked out in the brand green. */
.county-path {
      fill: rgba(255,255,255,0.03);
      stroke: rgba(255,255,255,0.18);
      stroke-width: 1;
      transition: fill var(--transition);
    }

.county-path.service-county {
      fill: rgba(138,158,92,0.45);
      stroke: var(--olive-light);
      stroke-width: 1.5;
    }

.county-path.service-county:hover { fill: rgba(138,158,92,0.7); }

.map-placeholder p {
      font-family: var(--font-cond);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray);
    }

/* Small dev-note line under the map placeholder (holds the "add embed here" comment) */
.map-note { font-size: 0.6rem; color: #555; }

/* This one footer-col-title needs extra breathing room above the map placeholder */
.service-area-map .footer-col-title { margin-bottom: 1rem; }

.footer-brand p {
      font-size: 0.88rem;
      color: var(--gray);
      line-height: 1.75;
      margin-top: 1.25rem;
      max-width: 280px;
    }

.footer-col-title {
      font-family: var(--font-cond);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--olive-light);
      margin-bottom: 1.25rem;
    }

.footer-links a {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      font-size: 0.88rem;
      color: var(--gray);
      transition: color var(--transition);
    }

.footer-links a:hover { color: var(--off-white); }

.footer-bottom p {
      font-size: 0.78rem;
      color: var(--gray);
    }

.footer-bottom a { color: var(--olive-light); }

/* Each cert logo comes from a different issuing org designed for a light
   background (one is even an opaque JPEG) — a consistent white card
   behind each keeps them legible and visually uniform regardless of the
   source logo's own colors/transparency. */
.cert-badge {
      height: 90px;
      padding: 0.5rem 1rem;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

.cert-badge img {
      max-height: 74px;
      max-width: 220px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

/* ─── SCROLL ANIMATIONS ───────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

.reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

.reveal-delay-1 { transition-delay: 0.1s; }

.reveal-delay-2 { transition-delay: 0.2s; }

.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── GLASSMORPHISM UTILITIES ─────────────────────── */
    /* Ambient glow orbs for section backgrounds */
    .glow-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
    }

.glow-orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(92,110,58,0.12) 0%, transparent 70%);
      top: -15%; right: -10%;
    }

.glow-orb-2 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(61,74,46,0.15) 0%, transparent 70%);
      bottom: -10%; left: 5%;
    }

/* Noise overlay for sections */
    .noise-overlay {
      position: absolute;
      inset: 0;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
      pointer-events: none;
      z-index: 0;
    }

/* ─── AURORA FIELD ────────────────────────────────────
       Slow-drifting canopy-light ribbons that sit behind every
       frosted panel on the page. Drop the .aurora-field element
       at the top of a section (absolute, inset 0) to reuse it. */
    .aurora-field {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

.aurora-field::before,
    .aurora-field::after {
      content: '';
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(ellipse 45% 38% at 22% 28%, var(--aurora-1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 45% at 78% 62%, var(--aurora-2) 0%, transparent 62%),
        radial-gradient(ellipse 30% 30% at 55% 85%, var(--aurora-3) 0%, transparent 65%),
        radial-gradient(ellipse 35% 32% at 85% 15%, var(--aurora-4) 0%, transparent 60%);
      filter: blur(60px) saturate(115%);
      animation: auroraDrift 34s ease-in-out infinite alternate;
      will-change: transform;
    }

.aurora-field::after {
      animation-duration: 46s;
      animation-direction: alternate-reverse;
      opacity: 0.7;
      mix-blend-mode: screen;
    }

@keyframes auroraDrift {
      0%   { transform: translate3d(0,0,0) scale(1); }
      50%  { transform: translate3d(-2%, 2%, 0) scale(1.06); }
      100% { transform: translate3d(2%, -1%, 0) scale(1.02); }
    }

@media (prefers-reduced-motion: reduce) {
      .aurora-field::before, .aurora-field::after { animation: none; }
    }

/* Five sections each run two infinite, continuously-drifting large-blur
   animations concurrently with backdrop-filter glass panels -- a lot of
   ongoing GPU compositing work. iOS WebKit in particular struggles with
   backdrop-filter + continuous blur animation running at the same time,
   which can show up as visible jitter in nearby (non-animating) content,
   not just the animated element itself. Freeze the drift on mobile,
   where GPUs are weakest and this is most noticeable; the static
   gradients still render, just without the perpetual motion. */
@media (max-width: 768px) {
      .aurora-field::before, .aurora-field::after { animation: none; }
    }

/* Per-section .aurora-field dimming — each section that drops in the
   shared aurora-field element wants a different opacity to suit its
   background, so these are scoped rather than baked into the base rule. */
#about .aurora-field { opacity: 0.6; }
#services .aurora-field { opacity: 0.5; }
#testimonials .aurora-field { opacity: 0.45; }
#consultation .aurora-field { opacity: 0.4; }

/* One glow-orb instance in Testimonials repositions itself vs. the Services default */
#testimonials .glow-orb-1 { top: 10%; right: -5%; }

/* ─── GLASS UTILITY (refined) ─────────────────────────
       Frosted panel with a genuine "edge of glass" highlight
       across the top and a soft chromatic bloom on hover, rather
       than a flat blur — meant to read as thick poured glass. */
    .glass-card {
      position: relative;
      background: var(--glass-fill) !important;
      backdrop-filter: blur(var(--glass-blur)) saturate(140%) !important;
      -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%) !important;
      border: 1px solid var(--glass-edge) !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05) !important;
      border-radius: 14px !important;
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
      isolation: isolate;
      overflow: hidden;
    }

.glass-card::before {
      content: '';
      position: absolute;
      top: 0; left: 8%; right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--glass-edge-hi), transparent);
      opacity: 0.6;
    }

.glass-card:hover {
      transform: translateY(-3px);
      border-color: rgba(138,158,92,0.3) !important;
      box-shadow: 0 20px 48px rgba(0,0,0,0.42), 0 0 40px rgba(96,150,142,0.10), inset 0 1px 0 rgba(255,255,255,0.07) !important;
    }

/* ─── GLASS MARK (signature element) ──────────────────
       The WCC grid mark, recast as a square frosted badge —
       our answer to the "logo etched into the corner of the
       glass" motif. Used once, prominently, per section. */
    .glass-mark {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: linear-gradient(155deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 40%, rgba(0,0,0,0.05) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -6px 14px rgba(0,0,0,0.18);
      z-index: 3;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s ease;
    }

.glass-mark svg { width: 24px; height: 24px; color: var(--olive-light); filter: drop-shadow(0 0 6px rgba(138,158,92,0.5)); }

.glass-card:hover .glass-mark,
    .hero-content:hover .glass-mark {
      transform: rotate(8deg) scale(1.06);
      box-shadow: 0 10px 26px rgba(0,0,0,0.4), 0 0 24px rgba(138,158,92,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
    }

.glass-mark--sm { width: 34px; height: 34px; border-radius: 9px; top: 1rem; right: 1rem; }

.glass-mark--sm svg { width: 16px; height: 16px; }

/* ─── SUITE CARD (full-width feature card) ────────────── */
    .suite-section {
      margin-top: 1.25rem;
    }

.suite-card {
      background: linear-gradient(135deg, rgba(61,74,46,0.45) 0%, rgba(30,34,32,0.6) 60%, rgba(61,74,46,0.25) 100%);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(138,158,92,0.25);
      border-left: 3px solid var(--olive-light);
      border-radius: 10px;
      padding: 2.5rem 3rem;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2.5rem;
      align-items: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 40px rgba(92,110,58,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
      transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
      cursor: default;
    }

.suite-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(92,110,58,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

.suite-card:hover {
      background: linear-gradient(135deg, rgba(61,74,46,0.55) 0%, rgba(30,34,32,0.65) 60%, rgba(61,74,46,0.35) 100%);
      border-color: rgba(138,158,92,0.4);
      transform: translateY(-2px);
      box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 50px rgba(92,110,58,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
    }

.suite-badge {
      background: rgba(138,158,92,0.12);
      border: 1px solid rgba(138,158,92,0.3);
      border-radius: 6px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      min-width: 90px;
    }

.suite-badge-num {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--olive-light);
      line-height: 1;
    }

.suite-badge-label {
      font-family: var(--font-cond);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage);
    }

.suite-body {}

.suite-name {
      font-family: var(--font-cond);
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.6rem;
    }

.suite-desc {
      font-size: 0.9rem;
      color: var(--gray-light);
      line-height: 1.7;
      max-width: 640px;
    }

.suite-includes {
      margin-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

.suite-tags {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      min-width: 160px;
    }

.suite-tag-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-cond);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--sage);
    }

.suite-tag-item::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--olive-light);
      flex-shrink: 0;
    }

/* ─── STANDALONE CARDS (Food Safety & Ag Feasibility) ─── */
    .standalone-section {
      margin-top: 1.25rem;
    }

.standalone-label {
      font-family: var(--font-cond);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

.standalone-label::before, .standalone-label::after {
      content: '';
      display: block;
      height: 1px;
      flex: 1;
      background: rgba(255,255,255,0.06);
    }

.standalone-card {
      background: rgba(30,34,32,0.3);
      border: 1px solid rgba(255,255,255,0.06);
      border-top: 1px solid rgba(138,158,92,0.15);
      border-radius: 10px;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
      cursor: default;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

.standalone-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(138,158,92,0.3), transparent);
    }

.standalone-card:hover {
      background: rgba(61,74,46,0.18);
      border-color: rgba(138,158,92,0.18);
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.3);
    }

/* ─── CHAT WIDGET (hero right col) ────────────────────── */
    .hero-chat {
      position: relative;
      z-index: 2;
    }

.hc-label {
      font-family: var(--font-cond);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--olive-light);
      margin-bottom: 0.6rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

.hc-phone {
      background: rgba(10,13,12,0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(92,110,58,0.12);
      overflow: hidden;
    }

.hc-bar {
      background: rgba(30,34,32,0.98);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 0.65rem 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

.hc-bar-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--olive-light);
      box-shadow: 0 0 5px rgba(138,158,92,0.8);
      flex-shrink: 0;
    }

.hc-bar-name {
      font-family: var(--font-cond);
      font-size: 0.66rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--white); flex: 1;
    }

.hc-bar-pill {
      font-family: var(--font-cond);
      font-size: 0.52rem; letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--olive-light);
      padding: 0.15rem 0.4rem;
      border-radius: 20px;
    }

.hc-msgs {
      padding: 0.85rem;
      height: 240px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      justify-content: flex-end;
    }

.hc-msg {
      display: flex;
      flex-direction: column;
      max-width: 85%;
      animation: hcFadeUp 0.3s ease both;
    }

@keyframes hcFadeUp {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

.hc-msg.grower { align-self: flex-end; align-items: flex-end; }

.hc-msg.advisor { align-self: flex-start; align-items: flex-start; }

.hc-msg-name {
      font-family: var(--font-cond);
      font-size: 0.52rem; letter-spacing: 0.1em;
      text-transform: uppercase; margin-bottom: 0.15rem;
    }

.hc-msg.grower  .hc-msg-name { color: var(--gray); }

.hc-msg.advisor .hc-msg-name { color: var(--olive-light); }

/* Bubble shapes/colors modeled on Apple iMessage (dark mode): blue
   "sent" bubbles for the grower (the customer texting in), iOS gray
   "received" bubbles for Jason — plus the system font Messages uses. */
.hc-bubble {
      padding: 0.5rem 0.75rem;
      font-size: 0.74rem; line-height: 1.4;
      /* -apple-system renders as real San Francisco on Apple devices;
         Inter (loaded in <head>) is a metrically-close, freely-licensed
         stand-in everywhere else, since SF Pro itself isn't embeddable. */
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', system-ui, sans-serif;
    }

.hc-msg.grower  .hc-bubble {
      background: rgba(10, 132, 255, 0.9);
      backdrop-filter: blur(6px) saturate(160%);
      -webkit-backdrop-filter: blur(6px) saturate(160%);
      border: 1px solid rgba(255,255,255,0.25);
      box-shadow: 0 4px 16px rgba(10,132,255,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
      border-radius: 17px 17px 3px 17px;
      color: #ffffff;
    }

.hc-msg.advisor .hc-bubble {
      background: rgba(94, 94, 98, 0.65);
      backdrop-filter: blur(6px) saturate(140%);
      -webkit-backdrop-filter: blur(6px) saturate(140%);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
      border-radius: 17px 17px 17px 3px;
      color: #ffffff;
    }

/* Typing indicator row */
    .hc-typing {
      padding: 0.3rem 0.85rem;
      display: flex; align-items: center; gap: 0.4rem;
      min-height: 22px;
      border-top: 1px solid rgba(255,255,255,0.04);
    }

.hc-typing-lbl {
      font-family: var(--font-cond);
      font-size: 0.55rem; letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--olive-light);
      opacity: 0;
      transition: opacity 0.2s;
    }

.hc-typing-lbl.on { opacity: 1; }

.hc-tdots { display: flex; gap: 2px; }

.hc-tdot {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--olive-light); opacity: 0;
      transition: opacity 0.2s;
    }

.hc-tdot.on { opacity: 1; animation: hcDot 1s infinite; }

.hc-tdot:nth-child(2).on { animation-delay: 0.15s; }

.hc-tdot:nth-child(3).on { animation-delay: 0.3s; }

@keyframes hcDot {
      0%,60%,100% { transform: translateY(0); opacity: 0.3; }
      30% { transform: translateY(-3px); opacity: 1; }
    }

/* Result flash */
    .hc-result {
      margin: 0 0.85rem 0.75rem;
      background: rgba(61,74,46,0.3);
      border: 1px solid rgba(138,158,92,0.25);
      border-left: 2px solid var(--olive-light);
      border-radius: 8px;
      padding: 0.65rem 0.85rem;
      /* visibility, not display:none -- this box's height is reserved at
         all times so its show/hide cycle (every ~20s) doesn't reflow
         .hc-phone's height and shove surrounding page content up/down. */
      visibility: hidden;
      opacity: 0;
    }

.hc-result.show { visibility: visible; opacity: 1; animation: hcFadeUp 0.4s ease both; }

.hc-result-tag {
      font-family: var(--font-cond);
      font-size: 0.52rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--olive-light);
      margin-bottom: 0.25rem;
    }

.hc-result-num {
      font-family: var(--font-display);
      font-size: 1.4rem; color: var(--white);
      letter-spacing: 0.04em; line-height: 1;
    }

.hc-result-txt {
      font-size: 0.68rem; color: var(--gray);
      line-height: 1.5; margin-top: 0.2rem;
    }

/* Progress strip + dots */
    .hc-footer {
      border-top: 1px solid rgba(255,255,255,0.04);
      padding: 0.4rem 0.85rem;
      display: flex; align-items: center; gap: 0.75rem;
    }

.hc-prog { flex: 1; height: 2px; background: rgba(255,255,255,0.06); border-radius: 1px; overflow: hidden; }

.hc-prog-fill { height: 100%; width: 0%; background: var(--olive-light); border-radius: 1px; }

.hc-inds { display: flex; gap: 4px; }

.hc-ind {
      width: 5px; height: 5px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
      transition: background 0.3s;
    }

.hc-ind.on { background: var(--olive-light); }

/* ─── HAMBURGER MENU ──────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,15,14,0.97);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 150;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1.1rem !important;
    letter-spacing: 0.2em !important;
  }

  .nav-cta {
    margin-top: 0.5rem;
    padding: 0.9rem 2rem !important;
    font-size: 0.85rem !important;
  }
}

/* ─── HERO CHAT – responsive visibility ──────────────── */
@media (max-width: 1000px) {
  /* Show chat stacked below hero content in single-column layout */
  .hero-chat {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .hc-msgs { height: 200px; }
}

@media (max-width: 500px) {
  /* Shrink further rather than hide — every real phone is <=500px wide,
     so hiding here meant this never showed on mobile at all. */
  .hc-msgs { height: 180px; }
  .hc-bar-name { font-size: 0.6rem; }
}

/* ─── COOKIE CONSENT BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 500;
  max-width: 640px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid var(--glass-edge);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  transform: translateY(150%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner-text {
  flex: 1 1 320px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-light);
  margin: 0;
}

.cookie-banner-actions {
  flex-shrink: 0;
}

.cookie-banner-btn {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--olive-light);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.cookie-banner-btn:hover { background: var(--olive-light); color: var(--white); }

@media (max-width: 500px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1rem 1.25rem; }
}
