/* ── CSS Custom Properties (Theme Variables) ────────────────────────── */
    :root {
  /* Light mode (default) */
  --forest: #0F2A1D;
  --forest-deep: #081912;
  --tan: #C9A66B;
  --tan-deep: #A88547;
  --bone: #E8E2D4;
  --bone-soft: #F4EFE5;
  --paper: #FFFFFF;
  --sage: #7A8B5C;
  --sage-deep: #5C6B42;
  --ink: #1A1F18;
  --ink-soft: #2D332B;
  --muted: #6B6F65;
  --line: rgba(15, 42, 29, 0.12);
  --line-strong: rgba(15, 42, 29, 0.22);
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: var(--bone-soft);
  --on-bg: var(--ink);
  --on-bg-soft: var(--muted);
  --header-bg: rgba(255, 255, 255, 0.94);
  --noise-opacity: 0.045;
}

    [data-theme="dark"] {
      --forest: #0F2A1D;
      --forest-deep: #051810;
      --sage: #7B9B7C;
      --sage-deep: #A89968;
      --tan: #D4B78F;
      --bone: #F6F4EF;
      --bone-soft: #E8E2D4;
      --paper: #1A1815;
      --ink: #EAEAE6;
      --ink-soft: #B8B4A8;
      --muted: #999075;
      --line: #3D3A33;
      --line-strong: #4D4A43;
      --surface: #262218;
      --surface-2: #1A1815;
      --on-bg: #EAEAE6;
    }
html { scroll-behavior: smooth; }


    /* ── Global Reset ───────────────────────────────────────────────────── */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    body {
      font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      color: var(--ink);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ── Typography ─────────────────────────────────────────────────────── */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      line-height: 1.05;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 200ms ease;
    }

    /* ── Layout Container ───────────────────────────────────────────────── */
    .wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (max-width: 640px) {
      .wrap {
        padding: 0 16px;
      }
    }

    /* ── Header & Navigation ────────────────────────────────────────────── */
    .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  background: var(--forest);
  color: var(--paper);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .brand-mark { background: var(--tan); color: var(--forest-deep); }

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 3px, rgba(255,255,255,0.08) 3px 4px);
}

.brand small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 160ms ease, color 160ms ease;
  position: relative;
}
.nav-links a:hover { color: var(--on-bg); background: rgba(15,42,29,0.05); }
[data-theme="dark"] .nav-links a:hover { background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--on-bg); background: rgba(15,42,29,0.07); }
[data-theme="dark"] .nav-links a.active { background: rgba(255,255,255,0.07); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle { display: none; }

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle {
    display: grid;
    width: 40px; height: 40px;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--on-bg);
  }
}


      nav.open {
        display: flex;
      }

      nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
      }

      nav a:last-child {
        border-bottom: none;
      }

      .mobile-nav-toggle {
        display: block;
      }

      .header-inner {
        position: relative;
      }


    /* ── Buttons ────────────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      background: var(--forest);
      color: var(--bone);
      border: none;
      border-radius: 10px;
      font-family: 'Inter Tight', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 200ms ease;
      text-decoration: none;
    }

    .btn:hover {
      background: var(--forest-deep);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--line);
    }

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

    .arrow {
      transition: transform 200ms ease;
    }

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

    /* ── Hero Section ───────────────────────────────────────────────────── */
    .hero {
      padding: 60px 0 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 48px;
      align-items: end;
    }

    .hero-content h1 {
      font-size: clamp(40px, 8vw, 120px);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 28px;
    }

    .hero-content h1 em {
      font-style: italic;
      font-weight: 400;
      color: var(--sage-deep);
    }

    [data-theme="dark"] .hero-content h1 em {
      color: var(--tan);
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--sage-deep);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    [data-theme="dark"] .hero-eyebrow {
      color: var(--tan);
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }

    .hero-lede {
      font-size: 18px;
      line-height: 1.6;
      color: var(--ink-soft);
      max-width: 540px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-meta {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      padding-top: 32px;
      border-top: 1px solid var(--line);
    }

    .hero-meta-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .hero-meta-item .num {
      font-family: 'Fraunces', serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--on-bg);
    }

    .hero-meta-item .lbl {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.02em;
    }

    .hero-visual {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(160deg, rgba(5,24,16,0.28), rgba(5,24,16,0.04)),
                  url('../assets/home-main-banner.jpg') center/cover;
      box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 20px 40px rgba(15,42,29,0.3);
    
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(15,42,29,0.4));
    }

    .hero-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: rgba(250,247,239,0.92);
      backdrop-filter: blur(12px);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      color: var(--forest-deep);
      z-index: 2;
    }

    .live {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #2C9647;
      box-shadow: 0 0 0 4px rgba(44,150,71,0.2);
      animation: pulse 1.8s ease-in-out infinite;
    }

    @keyframes pulse {
      50% {
        box-shadow: 0 0 0 8px rgba(44,150,71,0);
      }
    }

    .hero-cta {
      position: absolute;
      bottom: 16px;
      right: 16px;
      left: auto;
      max-width: 280px;
      background: rgba(5,24,16,0.85);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(232,226,212,0.15);
      color: var(--bone);
      border-radius: 12px;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      z-index: 3;
    }

    .hero-cta .label {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .hero-cta .price {
      font-family: 'Fraunces', serif;
      font-size: 20px;
      font-weight: 400;
    }

    .hero-cta .price small {
      font-size: 12px;
      font-family: 'Inter Tight', sans-serif;
      opacity: 0.7;
      margin-left: 4px;
    }

    .cta-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--tan);
      color: var(--forest-deep);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform 200ms ease;
    }

    .hero-cta:hover .cta-arrow {
      transform: rotate(-15deg) scale(1.05);
    }

    /* ── Marquee ────────────────────────────────────────────────────────── */
    .marquee {
      padding: 24px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--surface);
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 48px;
      white-space: nowrap;
      animation: scroll 45s linear infinite;
    }

    @keyframes scroll {
      to {
        transform: translateX(-50%);
      }
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 16px;
      color: #081912 var(--forest-deep);
      font-weight: 400;
    }

    [data-theme="dark"] .marquee-item {
      color: var(--tan);
    }

    .marquee-item svg {
      width: 16px;
      height: 16px;
      color: var(--sage-deep);
    }

    /* ── Services Section ───────────────────────────────────────────────── */
    .services {
      padding: 100px 0 80px;
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 56px;
    }

    .section-head h2 {
      font-size: clamp(36px, 5vw, 72px);
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .section-head h2 em {
      font-style: italic;
      color: var(--sage-deep);
    }

    [data-theme="dark"] .section-head h2 em {
      color: var(--tan);
    }

    .section-meta {
      max-width: 460px;
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.6;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .service {
      position: relative;
      padding: 32px;
      border-radius: 16px;
      background: var(--surface);
      border: 1px solid var(--line);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 200ms ease;
    }

    .service:hover {
      transform: translateY(-4px);
      border-color: var(--line-strong);
    }

    .service.featured {
      grid-column: span 2;
      background: var(--forest);
      color: #2F352D var(--bone);
      border-color: var(--forest);
    }

    [data-theme="dark"] .service.featured {
      background: var(--surface-2);
      border-color: var(--line-strong);
    }

    .service h3 {
      font-size: 32px;
      margin-bottom: 12px;
      margin-top: 40px;
    }

    .service p {
      color: var(--ink-soft);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .service.featured p {
      color: #2F352D(232,226,212,0.8);
    }

    .service-num {
      font-family: 'Fraunces', serif;
      font-size: 12px;
      letter-spacing: 0.06em;
      color: #2F352D var(--muted);
      font-style: italic;
    }

    .service.featured .service-num {
      color: #2F352D var(--tan);
      opacity: 0.85;
    }

    .service-link {
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #2F352D var(--forest);
      transition: all 200ms ease;
    }

    .service.featured .service-link {
      color: #2F352D var(--bone);
    }

    .service:hover .service-link {
      gap: 10px;
    }

    .service-icon {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--surface-2);
      display: grid;
      place-items: center;
      color: var(--forest);
    }

    [data-theme="dark"] .service-icon {
      background: #3D3A33;
      color: var(--tan);
    }

    .service.featured .service-icon {
      background: rgba(232,226,212,0.1);
      color: var(--tan);
    }

    /* ── Process Section ────────────────────────────────────────────────── */
    .process {
      padding: 80px 0;
    }

    .process-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line-strong);
    }

    .process-step {
      padding: 32px 24px;
      border-right: 1px solid var(--line);
    }

    .process-step:last-child {
      border-right: none;
    }

    .step-num {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 12px;
      color: var(--sage-deep);
      letter-spacing: 0.04em;
      margin-bottom: 24px;
    }

    [data-theme="dark"] .step-num {
      color: var(--tan);
    }

    .process-step h4 {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .process-step p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    /* ── Sustainability Section ─────────────────────────────────────────── */
    .sustainability {
      padding: 100px 0;
      background: var(--forest-deep);
      color: var(--bone);
      position: relative;
      overflow: hidden;
    }

    [data-theme="dark"] .sustainability {
      background: #060F0A;
    }

    .sus-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .sus-content h2 {
      font-size: clamp(36px, 5vw, 64px);
      color: var(--bone);
      margin: 16px 0 20px;
    }

    .sus-content h2 em {
      font-style: italic;
      color: var(--tan);
    }

    .sus-content p {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(232,226,212,0.78);
      max-width: 480px;
      margin-bottom: 24px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(232,226,212,0.12);
      border: 1px solid rgba(232,226,212,0.12);
    }

    .stat {
      padding: 32px;
      background: var(--forest-deep);
    }

    [data-theme="dark"] .stat {
      background: #060F0A;
    }

    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--bone);
      margin-bottom: 8px;
    }

    .stat-unit {
      font-size: 20px;
      color: var(--tan);
      font-style: italic;
      margin-left: 4px;
    }

    .stat-label {
      font-size: 12px;
      color: rgba(232,226,212,0.65);
      line-height: 1.5;
      max-width: 20ch;
    }

    /* ── About Section ──────────────────────────────────────────────────── */
    .about {
      padding: 100px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-visual {
      aspect-ratio: 4/5;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(15,42,29,0.03), rgba(15,42,29,0.38)),
                  url('../assets/team-pallets.jpg') center 45%/cover;
      position: relative;
    }

    .quote-card {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: rgba(250,247,239,0.96);
      backdrop-filter: blur(12px);
      border-radius: 12px;
      padding: 20px;
      color: var(--ink);
    }

    .quote-card p {
      font-family: 'Fraunces', serif;
      font-size: 16px;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .quote-who {
      font-size: 11px;
      color: var(--muted);
    }

    .about h2 {
      font-size: clamp(32px, 4vw, 56px);
      letter-spacing: -0.025em;
      margin: 16px 0 24px;
    }

    .about h2 em {
      font-style: italic;
      color: var(--sage-deep);
    }

    [data-theme="dark"] .about h2 em {
      color: var(--tan);
    }

    .about p {
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .about-features {
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .about-feature {
      padding-top: 16px;
      border-top: 1px solid var(--line-strong);
    }

    .about-feature h4 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .about-feature p {
      font-size: 13px;
      margin-bottom: 0;
    }

    /* ── CTA Section ────────────────────────────────────────────────────── */
    .cta-section {
      padding: 100px 0;
    }

    .cta-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: clamp(40px, 8vw, 80px);
      position: relative;
      overflow: hidden;
    }

    [data-theme="dark"] .cta-card {
      background: var(--surface-2);
    }

    .cta-card h2 {
      font-size: clamp(36px, 6vw, 80px);
      line-height: 1;
      letter-spacing: -0.035em;
      max-width: 14ch;
      margin-bottom: 24px;
    }

    .cta-card h2 em {
      font-style: italic;
      color: var(--sage-deep);
    }

    [data-theme="dark"] .cta-card h2 em {
      color: var(--tan);
    }

    .cta-card p {
      max-width: 480px;
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ── Certifications ─────────────────────────────────────────────────── */
    .certs {
      padding: 48px 0;
      border-top: 1px solid var(--line);
    }

    .certs-grid {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .certs-label {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      flex: 0 0 auto;
    }

    .cert-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-family: 'Fraunces', serif;
      font-size: 15px;
      color: var(--on-bg);
      white-space: nowrap;
    }

    /* ── Footer ─────────────────────────────────────────────────────────── */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--line);
      padding: 60px 0 32px;
    }

    [data-theme="dark"] footer {
      background: var(--surface-2);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--ink-soft);
      margin-top: 12px;
      max-width: 280px;
    }

    footer h4 {
      font-family: 'Fraunces', serif;
      font-size: 16px;
      margin-bottom: 16px;
    }

    footer ul {
      list-style: none;
    }

    footer li {
      margin-bottom: 8px;
    }

    footer a {
      font-size: 14px;
      color: var(--ink-soft);
    }

    footer a:hover {
      color: var(--ink);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid var(--line);
      font-size: 12px;
      color: var(--muted);
    }

    /* ── Responsive Design ──────────────────────────────────────────────── */
    @media (max-width: 920px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        aspect-ratio: 4/4;
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .sus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-meta {
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 48px 0 60px;
      }

      .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
      }

      .hero-lede {
        font-size: 16px;
        margin-bottom: 24px;
      }

      .hero-meta {
        gap: 16px;
      }

      .hero-meta-item .num {
        font-size: 24px;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .service.featured {
        grid-column: span 1;
      }

      .process-list {
        grid-template-columns: 1fr;
      }

      .process-step {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 24px 0;
      }

      .process-step:last-child {
        border-bottom: none;
      }

      .stat-grid {
        grid-template-columns: 1fr;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
      }

      .section-head h2 {
        font-size: 28px;
      }

      .about h2 {
        font-size: 28px;
      }

      .cta-card h2 {
        font-size: 32px;
      }

      .sus-content h2 {
        font-size: 32px;
      }

      .certs-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .certs-label {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .wrap {
        padding: 0 12px;
      }

      .header-inner {
        padding-left: 12px;
        padding-right: 12px;
      }

      .hero {
        padding: 40px 0 48px;
      }

      .hero-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
      }

      .hero-actions {
        flex-direction: column;
        gap: 10px;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-lede {
        font-size: 15px;
      }

      .marquee-item {
        font-size: 14px;
      }

      .services {
        padding: 60px 0 48px;
      }

      .process {
        padding: 48px 0;
      }

      .sustainability {
        padding: 60px 0;
      }

      .about {
        padding: 60px 0;
      }

      .cta-section {
        padding: 60px 0;
      }

      .certs {
        padding: 32px 0;
      }

      footer {
        padding: 40px 0 24px;
      }
    }

/* Header/footer are rendered by partials.js; shared-header-footer.css overrides their styling. */

/* Keep the header CTA compact and consistent on every page. */
.site-header .nav-cta .btn {
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  gap: 10px;
  box-shadow: none;
  transform: none;
}

.site-header .nav-cta .btn:hover {
  transform: none;
  box-shadow: none;
}

/* Index hero badge: keep the badge in place, rotate only the outer text ring. */
.hero-badge {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  z-index: 4;
  /* soft backing disc so the rotating text reads cleanly over busy imagery */
  background: radial-gradient(circle, var(--paper) 0%, var(--paper) 58%, rgba(246, 244, 239, 0.85) 72%, rgba(246, 244, 239, 0) 78%);
  border-radius: 50%;
  filter: drop-shadow(0 8px 24px rgba(20, 30, 20, 0.18));
}

[data-theme="dark"] .hero-badge {
  background: radial-gradient(circle, var(--surface) 0%, var(--surface) 58%, rgba(31, 36, 30, 0.85) 72%, rgba(31, 36, 30, 0) 78%);
}

.hero-badge svg {
  width: 100%;
  height: 100%;
}

.hero-badge .badge-spin {
  transform-origin: 100px 100px;
  transform-box: view-box;
  animation: badge-spin 24s linear infinite;
}

@keyframes badge-spin {
  to {
    transform: rotate(360deg);
  }
}