*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink:    #0f1a14;
      --mist:   #e8ede9;
      --river:  #1c6b4a;
      --foam:   #f4f7f5;
      --white:  #ffffff;
      --accent: #d4621a;
      --mid:    #647568;
      --serif:  'DM Serif Display', Georgia, serif;
      --sans:   'DM Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 4vw;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(28,107,74,0.1);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(15,26,20,0.08); }

    .logo {
      font-family: var(--serif);
      font-size: 1.25rem;
      color: var(--river);
      letter-spacing: -0.01em;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .logo span { color: var(--ink); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--mid);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--river); }

    /* Travel dropdown */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > a {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }
    .nav-dropdown > a::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      opacity: 0.6;
      transition: transform 0.2s;
    }
    .nav-dropdown:hover > a::after,
    .nav-dropdown.open > a::after {
      transform: rotate(180deg);
    }
    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      margin-top: 0.75rem;
      background: var(--white);
      border: 1px solid var(--mist);
      border-radius: 0.6rem;
      box-shadow: 0 12px 32px rgba(15,26,20,0.12);
      padding: 0.5rem;
      min-width: 160px;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
      z-index: 200;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu li { margin: 0; }
    .nav-dropdown-menu a {
      display: block;
      padding: 0.55rem 0.85rem;
      border-radius: 0.4rem;
      font-size: 0.8rem;
      letter-spacing: 0.02em;
      text-transform: none;
      color: var(--ink);
      white-space: nowrap;
    }
    .nav-dropdown-menu a:hover {
      background: var(--foam);
      color: var(--river);
    }
/* ── FOOTER ── */
footer {
  padding: 3rem 8vw;
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--white); }
.footer-logo span { color: var(--white); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SITE-WIDE RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
    box-shadow: 0 12px 24px rgba(15,26,20,0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .nav-links.nav-open {
    max-height: 80vh;
    opacity: 1;
    overflow-y: auto;
  }
  .nav-links > li {
    width: 100%;
    border-top: 1px solid var(--mist);
  }
  .nav-links > li > a {
    display: block;
    padding: 1rem 6vw;
  }
  /* Dropdown becomes a static, always-expanded sub-list on mobile
     instead of a hover flyout, since there's no hover on touch */
  .nav-dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 6vw !important;
    background: var(--foam) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}
@media (max-width: 600px) {
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}
/* ============================================================
   ASTRA BUTTON OVERRIDE PATCH
   Paste this into your global CSS block (01-global-css.css)
   in the Insert Headers and Footers plugin, AFTER the
   existing global CSS. This fixes Astra's default link
   styles leaking into your custom buttons.
   ============================================================ */

/* --- Kill Astra's global link underline on all buttons --- */
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
.btn-white,
.btn-white:link,
.btn-white:visited,
.btn-white:hover,
.btn-white:active,
.btn-outline-white,
.btn-outline-white:link,
.btn-outline-white:visited,
.btn-outline-white:hover,
.btn-outline-white:active,
.btn-ghost,
.btn-ghost:link,
.btn-ghost:visited,
.btn-ghost:hover,
.btn-ghost:active,
.why-cta,
.why-cta:link,
.why-cta:visited,
.why-cta:hover,
.why-cta:active,
.trip-cta,
.trip-cta:link,
.trip-cta:visited,
.trip-cta:hover,
.trip-cta:active,
.section-link,
.section-link:link,
.section-link:visited,
.section-link:hover,
.section-link:active,
.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active,
.nav-dropdown-menu a,
.nav-dropdown-menu a:link,
.nav-dropdown-menu a:visited,
.footer-links a,
.footer-links a:link,
.footer-links a:visited,
.strip-item,
.strip-item:link,
.strip-item:visited,
.strip-item:hover,
.strip-item:active {
  text-decoration: none !important;
  box-shadow: none !important;
}

/* --- Solid filled buttons: lock in color on visited/active --- */
.btn-primary:link,
.btn-primary:visited {
  background: var(--ink) !important;
  color: var(--white) !important;
}
.btn-go-light:link,
.btn-go-light:visited {
  background: var(--river) !important;
  color: var(--white) !important;
}
.btn-explore-gear:link,
.btn-explore-gear:visited {
  background: var(--ink) !important;
  color: var(--white) !important;
}
.btn-white:link,
.btn-white:visited {
  background: var(--white) !important;
  color: var(--river) !important;
}
.btn-outline-white:link,
.btn-outline-white:visited {
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
}
.why-cta:link,
.why-cta:visited {
  background: var(--river) !important;
  color: var(--white) !important;
}
.trip-cta:link,
.trip-cta:visited {
  color: var(--river) !important;
}

/* --- Ghost button: lock in ink color on visited --- */
.btn-ghost:link,
.btn-ghost:visited {
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* --- Section links --- */
.section-link:link,
.section-link:visited {
  color: var(--mid) !important;
}

/* --- Nav links: never show as visited purple --- */
.nav-links a:visited {
  color: var(--mid) !important;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--river) !important;
}
.nav-dropdown-menu a:visited {
  color: var(--ink) !important;
}

/* --- Footer links --- */
.footer-links a:visited {
  color: rgba(255,255,255,0.45) !important;
}
.footer-links a:hover {
  color: var(--white) !important;
}

/* --- Ticker strip links --- */
.strip-item:visited {
  color: inherit !important;
}

/* --- Logo link --- */
.logo,
.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
  text-decoration: none !important;
  color: var(--river) !important;
}
.logo span {
  color: var(--ink) !important;
}
/* ── HERO ── */
    .hero {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: start;
      background: var(--foam);
      overflow: hidden;
    }

    .hero-left {
      padding: 0 3vw 0 8vw;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .hero-right {
      position: relative;
      background: var(--mist);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 4 / 3;
    }
    /* Real photo dropped in */
    .hero-right img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: var(--mist);
    }
    .hero-right img ~ .hero-photo-placeholder { display: none; }

    .hero-photo-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    .hero-photo-placeholder span {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(100,117,104,0.6);
    }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { min-height: 280px; }
      .hero-left { padding: 3rem 6vw; }
    }



    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--river);
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.2s ease forwards;
    }
    .hero-kicker::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--river);
    }

    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 3.4vw, 3.75rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-top: 0;
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.35s ease forwards;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--river);
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--mid);
      max-width: 100%;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.5s ease forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.7s 0.65s ease forwards;
    }

    .btn-primary {
      background: var(--ink);
      color: var(--white);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 2rem;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--river); transform: translateY(-1px); }

    .btn-explore-gear:hover {
      background: var(--accent) !important;
      transform: translateY(-1px);
    }

    .btn-go-light {
      background: var(--river) !important;
    }
    .btn-go-light:hover {
      background: var(--accent) !important;
      transform: translateY(-1px);
    }

    .btn-ghost {
      color: var(--ink);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      position: relative;
      transition: color 0.25s, gap 0.25s;
    }
    .btn-ghost::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--river);
      transition: width 0.25s ease;
    }
    .btn-ghost:hover {
      color: var(--river);
      gap: 0.75rem;
    }
    .btn-ghost:hover::before { width: 100%; }
    .btn-ghost::after { content: '→'; transition: transform 0.25s; }
    .btn-ghost:hover::after { transform: translateX(3px); }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid var(--mist);
      opacity: 0;
      animation: fadeUp 0.7s 0.8s ease forwards;
    }
    .stat-num {
      font-family: var(--serif);
      font-size: 2rem;
      color: var(--ink);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem;
      color: var(--mid);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    .hero-right {
      position: relative;
      background: var(--mist);
      overflow: hidden;
    }
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(28,107,74,0.12) 0%, transparent 60%);
      z-index: 1;
    }

    /* River SVG illustration */
    .hero-illustration {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .river-scene {
      width: 90%;
      max-width: 520px;
      opacity: 0;
      animation: fadeIn 1s 0.9s ease forwards;
    }

    /* Water ripple effect */
    .ripple-container {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      overflow: hidden;
      z-index: 0;
    }
    .wave {
      position: absolute;
      width: 200%;
      height: 100%;
      background: rgba(28,107,74,0.06);
      border-radius: 40%;
      animation: wave 8s linear infinite;
    }
    .wave:nth-child(2) {
      background: rgba(28,107,74,0.04);
      animation-duration: 12s;
      animation-delay: -4s;
    }
    .wave:nth-child(3) {
      background: rgba(28,107,74,0.03);
      animation-duration: 10s;
      animation-delay: -2s;
    }

    @keyframes wave {
      0% { transform: translateX(-50%) rotate(0deg); }
      100% { transform: translateX(-50%) rotate(360deg); }
    }

    /* ── TAGLINE STRIP ── */
    .strip {
      background: var(--ink);
      color: var(--white);
      padding: 1.1rem 4vw;
      overflow: hidden;
    }
    .strip-inner {
      display: flex;
      gap: 5rem;
      white-space: nowrap;
      animation: ticker 22s linear infinite;
    }
    .strip-item {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 400;
      opacity: 0.9;
      flex-shrink: 0;
      color: inherit;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .strip-item:hover { opacity: 1; }
    .strip-dot {
      color: rgba(255,255,255,0.4);
    }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── SPEC PILLS ── */
    .spec-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.75rem;
    }
    .spec-pill {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 0.1rem;
      padding: 0.35rem 0.7rem;
      border-radius: 2rem;
      border: 1px solid var(--mist);
      background: var(--foam);
    }
    .spec-pill-label {
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
    }
    .spec-pill-value {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--ink);
    }
    .spec-pill.weight { background: rgba(28,107,74,0.06); border-color: rgba(28,107,74,0.18); }
    .spec-pill.weight .spec-pill-label,
    .spec-pill.weight .spec-pill-value { color: var(--river); }
    .spec-pill.price { background: rgba(212,98,26,0.06); border-color: rgba(212,98,26,0.18); }
    .spec-pill.price .spec-pill-label,
    .spec-pill.price .spec-pill-value { color: var(--accent); }

    /* ── PRODUCTS ── */
    .section {
      padding: 7rem 8vw;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.5rem;
    }

    .section-kicker {
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--river);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.75rem, 4.5vw, 5rem);
      line-height: 1.06;
      letter-spacing: -0.02em;
    }

    .section-desc {
      font-size: 1rem;
      font-weight: 300;
      color: var(--mid);
      max-width: 48ch;
      line-height: 1.7;
      margin-top: 0.75rem;
    }

    .section-link {
      font-size: 0.875rem;
      color: var(--mid);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      white-space: nowrap;
      transition: color 0.2s, gap 0.2s;
    }
    .section-link:hover { color: var(--river); gap: 0.65rem; }
    .section-link::after { content: '→'; }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .product-card {
      background: var(--foam);
      border-radius: 0.875rem;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      border: 1px solid var(--mist);
    }
    .product-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(15,26,20,0.1);
    }

    .product-img {
      aspect-ratio: 3/2;
      background: var(--mist);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* When a real photo is dropped in */
    .product-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* Hide SVG placeholder once real img present */
    .product-img img ~ .product-icon { display: none; }

    /* SVG product icon placeholders */
    .product-icon {
      width: 50%;
      max-width: 120px;
      opacity: 0.5;
    }

    .product-badge {
      position: absolute;
      top: 1rem; right: 1rem;
      background: var(--accent);
      color: white;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 1rem;
    }

    .product-price-badge {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background: var(--accent);
      color: var(--white);
      padding: 0.5rem 0.9rem;
      border-radius: 0.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.15rem;
    }
    .price-sale {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0;
    }
    .price-regular {
      font-size: 0.72rem;
      font-weight: 400;
      opacity: 0.8;
      text-decoration: line-through;
    }
    .price-savings {
      font-size: 0.65rem;
      font-weight: 500;
      opacity: 0.9;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .product-info {
      padding: 1rem 1.1rem 1.25rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .product-category {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 0.25rem;
    }
    .product-name {
      font-family: var(--serif);
      font-size: 1.05rem;
      line-height: 1.2;
      margin-bottom: 0.4rem;
    }
    .product-desc {
      font-size: 0.8rem;
      color: var(--mid);
      font-weight: 300;
      margin-bottom: 0.875rem;
      line-height: 1.55;
      flex: 1;
    }
    .product-footer {
      display: flex;
      align-items: center;
    }
    .product-weight {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--river);
      background: rgba(28,107,74,0.08);
      padding: 0.2rem 0.55rem;
      border-radius: 1rem;
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      padding: 7rem 8vw;
      background: var(--foam);
    }

    .testimonials .section-header { margin-bottom: 3rem; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 1rem;
      padding: 2rem;
      border: 1px solid var(--mist);
    }

    .stars {
      color: var(--accent);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }

    .testimonial-text {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .author-avatar {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 50%;
      background: var(--mist);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--river);
      flex-shrink: 0;
    }
    .author-name {
      font-weight: 500;
      font-size: 0.875rem;
    }
    .author-role {
      font-size: 0.75rem;
      color: var(--mid);
    }

    /* ── CTA BAND ── */
    .cta-band {
      padding: 6rem 8vw;
      text-align: center;
      background: var(--river);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      top: -60%;
      left: 50%;
      transform: translateX(-50%);
      width: 80vw;
      height: 80vw;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      pointer-events: none;
    }

    .cta-band h2 {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      position: relative;
    }
    .cta-band h2 em { font-style: italic; color: rgba(255,255,255,0.7); }

    .cta-band p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      margin-bottom: 2.5rem;
      position: relative;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      position: relative;
    }

    .btn-white {
      background: var(--white);
      color: var(--river);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 2rem;
      font-weight: 500;
      font-size: 0.9rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-white:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 2rem;
      font-weight: 400;
      font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.4);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

    

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* Scroll-triggered fade */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { min-height: 50vw; }
      .hero-left { padding: 3rem 6vw; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; gap: 3rem; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      /* .nav-links visibility is handled by the mobile hamburger toggle CSS in design-system.css, not hidden outright */
      .section { padding: 5rem 6vw; }
    }
    @media (max-width: 600px) {
      .products-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
      .cta-buttons { flex-direction: column; align-items: center; }
    }
    /* ── PHOTO SLIDER ── */
    .slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: var(--ink);
      aspect-ratio: 16/7;
    }
    .slider-track {
      display: flex;
      height: 100%;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
    }
    /* Real photo: place <img> inside .slide, it will fill automatically */
    .slide img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
    }
    /* Placeholder state shown when no img is present */
    .slide-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      z-index: 1;
    }
    .slide img ~ .slide-placeholder { display: none; }
    .slide-placeholder svg { opacity: 0.2; }
    .slide-placeholder span {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }
    /* Caption overlay */
    .slide-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.5rem 2.5rem;
      background: linear-gradient(to top, rgba(15,26,20,0.7) 0%, transparent 100%);
      color: var(--white);
      z-index: 2;
      pointer-events: none;
    }
    .slide-caption-text {
      font-size: 0.85rem;
      font-weight: 300;
      letter-spacing: 0.04em;
      opacity: 0.85;
    }
    /* Prev / Next buttons */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s;
      backdrop-filter: blur(6px);
    }
    .slider-btn:hover { background: rgba(255,255,255,0.25); }
    .slider-btn.prev { left: 1.25rem; }
    .slider-btn.next { right: 1.25rem; }
    /* Dot indicators */
    .slider-dots {
      position: absolute;
      bottom: 1.25rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 10;
    }
    .slider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      border: none;
      padding: 0;
    }
    .slider-dot.active {
      background: var(--white);
      transform: scale(1.3);
    }
    @media (max-width: 640px) {
      .slider { aspect-ratio: 4/3; }
      .slider-btn { width: 2.25rem; height: 2.25rem; font-size: 0.85rem; }
    }

/* Guard every page's hero kicker/heading/subtext block against
   WordPress's default inter-block spacing stacking on top of each
   element's own intentional margin — this was showing up as an
   inconsistent gap between the kicker and heading across pages,
   since only some hero patterns had blockGap:0 protection at the
   block-attribute level. */
.page-hero > * + *,
.page-hero-inner > * + *,
.page-hero > .reveal > * + *,
.hero-left > * + * {
  margin-block-start: 0 !important;
}
