:root {
    --ink: #1f1d1b;
    --muted: #585555;
    --brand: #ef5b3f;
    --brand-deep: #0b7a75;
    --cream: #f7f1e6;
    --sand: #fff6ea;
    --surface: #ffffff;
    --stroke: rgba(24, 24, 24, 0.08);
    --shadow: 0 24px 60px rgba(16, 22, 32, 0.12);
    --shadow-soft: 0 12px 30px rgba(16, 22, 32, 0.08);
  }
  * { box-sizing: border-box; }
  body {
    background:
      radial-gradient(900px 500px at 10% -10%, #ffe2c2 0, transparent 60%),
      radial-gradient(900px 500px at 90% 10%, #d6f4ef 0, transparent 55%),
      #f4f1eb;
    font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    letter-spacing: 0.1px;
  }
  h1, h2, h3 {
    font-family: "Fraunces", "Georgia", serif;
    letter-spacing: 0.2px;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .site-header .navbar {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
  .site-header .navbar-brand {
    font-weight: 700;
    color: var(--brand-deep) !important;
    font-size: 1.15rem;
  }
  .brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .brand-logo {
    width: 36px;
    height: 36px;
    display: block;
  }
  .brand-text {
    font-family: "Fraunces", "Georgia", serif;
    font-weight: 700;
    color: var(--brand-deep);
    letter-spacing: 0.2px;
  }
  .site-header .nav-link {
    color: var(--ink);
    font-weight: 600;
    margin-left: 1rem;
    position: relative;
  }
  .site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.25s ease;
  }
  .site-header .nav-link:hover::after,
  .site-header .nav-link.active::after {
    width: 100%;
  }
  .page-shell {
    max-width: 1100px;
    margin: 2.5rem auto 4rem;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .hero {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 2.25rem;
    border-radius: 24px;
    background: linear-gradient(120deg, #fff, #fff7ec 55%, #f0fbfa 100%);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    background: radial-gradient(circle, rgba(239, 91, 63, 0.18) 0, transparent 65%);
  }
  .hero-content {
    grid-column: span 7;
    position: relative;
    z-index: 1;
  }
  .hero-visual {
    grid-column: span 5;
    display: grid;
    gap: 1rem;
  }
  .eyebrow {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--brand-deep);
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    margin-bottom: 0.75rem;
  }
  .hero p {
    color: var(--muted);
    font-size: 1.05rem;
  }
  .hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 1.25rem;
  }
  .btn-modern {
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
  }
  .btn-brand {
    background: var(--brand);
    color: #fff;
  }
  .btn-ghost {
    background: #fff;
    border-color: var(--stroke);
    color: var(--ink);
  }
  .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .pill-row span {
    background: rgba(11, 122, 117, 0.1);
    color: var(--brand-deep);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .fact-card {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
  }
  .fact-card strong {
    display: block;
    font-size: 1.2rem;
  }
  .section-card {
    background: var(--surface);
    border-radius: 22px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--stroke);
  }
  .section-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--brand-deep);
    margin-bottom: 1rem;
    font-weight: 700;
  }
  .faq-hero-media {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    align-items: center;
  }
  .faq-hero-media picture {
    grid-column: span 7;
    aspect-ratio: 4 / 3;
  }
  .faq-hero-media picture img {
    grid-column: span 7;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }
  .faq-hero-copy {
    grid-column: span 5;
  }
  .faq-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .faq-group {
    display: grid;
    gap: 0.75rem;
  }
  details.faq-item {
    background: var(--sand);
    border-radius: 16px;
    border: 1px solid rgba(239, 91, 63, 0.15);
    padding: 0.9rem 1rem;
  }
  details.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
  }
  details.faq-item summary::-webkit-details-marker {
    display: none;
  }
  details.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--brand);
    font-weight: 700;
  }
  details.faq-item[open] summary::after {
    content: "–";
  }
  details.faq-item p {
    margin: 0.65rem 0 0;
    color: var(--muted);
  }
  .cta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
  }
  .cta-strip p {
    margin: 0;
    color: var(--muted);
  }
  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
    }
    .hero-content, .hero-visual {
      grid-column: auto;
    }
    .faq-columns {
      grid-template-columns: 1fr;
    }
    .faq-hero-media picture,
    .faq-hero-media picture img,
    .faq-hero-copy {
      grid-column: auto;
    }
  }
