:root {
        --bg: #f6efe5;
        --bg-soft: #fbf8f3;
        --surface: rgba(255, 250, 244, 0.78);
        --surface-strong: #eadbc9;
        --text: #3c281d;
        --text-soft: #786152;
        --line: rgba(60, 40, 29, 0.12);
        --accent: #8b5d44;
        --accent-deep: #5a392a;
        --white: #fffaf5;
        --shadow: 0 22px 60px rgba(60, 40, 29, 0.14);
        --radius-lg: 30px;
        --radius-md: 20px;
        --radius-sm: 999px;
        --shell: min(1200px, calc(100vw - 2rem));
        --font-display: "Cormorant Garamond", Georgia, serif;
        --font-sans: "Red Hat Display", Arial, sans-serif;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: var(--font-sans);
        color: var(--text);
        background:
          radial-gradient(circle at top left, rgba(230, 210, 188, 0.55), transparent 30%),
          linear-gradient(180deg, #fbf7f1 0%, #f5eee3 42%, #f3eadf 100%);
        line-height: 1.6;
      }

      img,
      svg {
        display: block;
        max-width: 100%;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      button {
        font: inherit;
      }

      h1,
      h2,
      h3,
      p,
      ul {
        margin: 0;
      }

      ul {
        padding: 0;
        list-style: none;
      }

      h1,
      h2,
      h3 {
        font-family: var(--font-display);
        font-weight: 600;
        line-height: 0.95;
        letter-spacing: -0.02em;
      }

      h1 {
        font-size: clamp(3.25rem, 8vw, 6.4rem);
      }

      h2 {
        font-size: clamp(2.2rem, 5vw, 4rem);
      }

      h3 {
        font-size: clamp(1.8rem, 3vw, 2.7rem);
      }

      .shell {
        width: var(--shell);
        margin: 0 auto;
      }

      .eyebrow {
        display: inline-block;
        margin-bottom: 1rem;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--accent);
      }

      .eyebrow--light {
        color: rgba(255, 250, 245, 0.9);
      }

      .site-header {
        position: fixed;
        inset: 0 0 auto;
        z-index: 20;
        transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
      }

      .site-header.is-scrolled {
        background: rgba(251, 248, 243, 0.92);
        backdrop-filter: blur(18px);
        box-shadow: 0 12px 34px rgba(60, 40, 29, 0.08);
        border-bottom: 1px solid rgba(60, 40, 29, 0.08);
      }

      .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        min-height: 94px;
        gap: 1rem;
      }

      .desktop-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--white);
      }

      .desktop-nav a,
      .desktop-nav button,
      .header-actions a,
      .brand {
        transition: opacity 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
      }

      .site-header.is-scrolled .desktop-nav,
      .site-header.is-scrolled .brand,
      .site-header.is-scrolled .menu-toggle {
        color: var(--text);
      }

      .desktop-nav a:hover,
      .desktop-nav a:focus-visible,
      .desktop-nav button:hover,
      .desktop-nav button:focus-visible,
      .footer-links a:hover,
      .footer-links a:focus-visible {
        opacity: 0.7;
      }

      .desktop-nav a[aria-current="page"] {
        opacity: 0.72;
      }

      .nav-dropdown {
        position: relative;
      }

      .nav-dropdown__trigger {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
        font: inherit;
        letter-spacing: inherit;
        text-transform: inherit;
      }

      .nav-dropdown__trigger::after {
        content: "";
        width: 0.42rem;
        height: 0.42rem;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
        transition: transform 180ms ease;
      }

      .nav-dropdown.is-open .nav-dropdown__trigger::after {
        transform: translateY(1px) rotate(225deg);
      }

      .nav-dropdown__menu {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 0;
        min-width: 14rem;
        display: grid;
        gap: 0.2rem;
        padding: 0.75rem;
        border: 1px solid rgba(60, 40, 29, 0.08);
        border-radius: 20px;
        background: rgba(251, 248, 243, 0.98);
        box-shadow: var(--shadow);
        color: var(--text);
        font-size: 0.92rem;
        letter-spacing: normal;
        text-transform: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .nav-dropdown.is-open .nav-dropdown__menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-dropdown__menu a {
        padding: 0.55rem 0.65rem;
        border-radius: 12px;
      }

      .nav-dropdown__menu a:hover,
      .nav-dropdown__menu a:focus-visible {
        background: rgba(60, 40, 29, 0.06);
        opacity: 1;
      }

      .brand {
        justify-self: center;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        color: var(--white);
      }

      .brand__name {
        font-family: var(--font-display);
        font-size: clamp(1.7rem, 2.4vw, 2.3rem);
        line-height: 0.9;
        letter-spacing: 0.03em;
      }

      .brand__tag {
        margin-top: 0.15rem;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.28em;
        text-transform: uppercase;
      }

      .header-actions {
        justify-self: end;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 1.25rem;
        border: 1px solid transparent;
        border-radius: var(--radius-sm);
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
      }

      .button--light {
        background: rgba(255, 250, 245, 0.94);
        color: var(--text);
      }

      .button--ghost {
        border-color: rgba(255, 250, 245, 0.58);
        color: var(--white);
      }

      .site-header.is-scrolled .button--ghost {
        border-color: rgba(60, 40, 29, 0.14);
        color: var(--text);
      }

      .button--dark {
        background: var(--accent-deep);
        color: var(--white);
      }

      .button:hover,
      .button:focus-visible {
        transform: translateY(-1px);
      }

      .menu-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 1px solid rgba(255, 250, 245, 0.38);
        border-radius: 50%;
        background: transparent;
        color: var(--white);
        cursor: pointer;
      }

      .menu-toggle span {
        position: absolute;
        width: 18px;
        height: 1px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
      }

      .menu-toggle span:nth-child(1) {
        transform: translateY(-6px);
      }

      .menu-toggle span:nth-child(3) {
        transform: translateY(6px);
      }

      .menu-toggle.is-open span:nth-child(1) {
        transform: rotate(45deg);
      }

      .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle.is-open span:nth-child(3) {
        transform: rotate(-45deg);
      }

      .mobile-menu {
        display: none;
      }

      .page-hero {
        position: relative;
        overflow: hidden;
        background: #9a7d6a;
      }

      .page-hero__art,
      .page-hero__overlay {
        position: absolute;
        inset: 0;
      }

      .page-hero__art svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .page-hero__overlay {
        background:
          linear-gradient(180deg, rgba(33, 21, 16, 0.14) 0%, rgba(33, 21, 16, 0.48) 100%),
          linear-gradient(90deg, rgba(33, 21, 16, 0.3) 0%, rgba(33, 21, 16, 0) 70%);
      }

      .page-hero__inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
        gap: 2rem;
        align-items: end;
        min-height: 88vh;
        padding: 8.5rem 0 4.5rem;
      }

      .page-hero__copy {
        max-width: 44rem;
        color: var(--white);
      }

      .page-hero__copy p:last-of-type {
        max-width: 34rem;
        font-size: 1.05rem;
        color: rgba(255, 250, 245, 0.82);
      }

      .page-hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-top: 2rem;
      }

      .page-hero__card {
        justify-self: end;
        width: min(100%, 420px);
        padding: 1rem;
        border: 1px solid rgba(255, 250, 245, 0.18);
        border-radius: 34px;
        background: rgba(255, 250, 245, 0.08);
        backdrop-filter: blur(8px);
        box-shadow: var(--shadow);
      }

      .page-hero__card img,
      .page-hero__card svg {
        width: 100%;
        height: auto;
        border-radius: 26px;
      }

      .section {
        padding: 6rem 0;
      }

      .section--warm {
        background: linear-gradient(180deg, rgba(233, 219, 201, 0.28), rgba(233, 219, 201, 0.05));
      }

      .story-grid,
      .cta-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
        gap: 2rem;
        align-items: center;
      }

      .story-copy {
        display: grid;
        gap: 1.25rem;
        max-width: 42rem;
      }

      .story-copy p {
        color: var(--text-soft);
        font-size: 1.02rem;
      }

      .image-card {
        overflow: hidden;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
      }

      .image-card img,
      .image-card svg {
        width: 100%;
        height: auto;
      }

      .insight-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem;
      }

      .insight-card {
        min-height: 100%;
        padding: 2rem;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: rgba(255, 250, 244, 0.72);
        box-shadow: var(--shadow);
      }

      .insight-card p,
      .insight-card blockquote {
        color: var(--text-soft);
      }

      .insight-card blockquote {
        margin: 0;
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 3vw, 2.7rem);
        line-height: 1.05;
        color: var(--text);
      }

      .insight-card h3 {
        margin-bottom: 0.8rem;
      }

      .cta-copy {
        display: grid;
        gap: 1rem;
        max-width: 34rem;
      }

      .cta-copy p {
        color: var(--text-soft);
      }

      .site-footer {
        padding: 4rem 0;
        border-top: 1px solid var(--line);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
        gap: 2rem;
      }

      .footer-brand {
        display: inline-flex;
        flex-direction: column;
        color: var(--text);
      }

      .footer-brand .brand__tag {
        color: var(--text-soft);
      }

      .footer-copy {
        margin-top: 1rem;
        max-width: 25rem;
        color: var(--text-soft);
      }

      .footer-links h4 {
        margin-bottom: 0.7rem;
        font-size: 0.78rem;
        font-family: var(--font-sans);
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--text-soft);
      }

      .footer-links a {
        display: block;
        margin-top: 0.45rem;
        color: var(--text);
      }

      .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      @media (max-width: 980px) {
        .page-hero__inner,
        .story-grid,
        .cta-grid,
        .footer-grid,
        .insight-grid {
          grid-template-columns: 1fr;
        }

        .page-hero__card {
          justify-self: start;
          width: min(100%, 540px);
        }
      }

      @media (max-width: 860px) {
        .header-inner {
          grid-template-columns: auto 1fr auto;
        }

        .desktop-nav,
        .header-actions {
          display: none;
        }

        .brand {
          justify-self: center;
        }

        .menu-toggle {
          position: relative;
          display: inline-flex;
        }

        .mobile-menu {
          position: absolute;
          top: calc(100% + 0.5rem);
          left: 1rem;
          right: 1rem;
          display: grid;
          gap: 0.9rem;
          padding: 1.15rem;
          border: 1px solid rgba(60, 40, 29, 0.08);
          border-radius: 24px;
          background: rgba(251, 248, 243, 0.98);
          box-shadow: var(--shadow);
          opacity: 0;
          pointer-events: none;
          transform: translateY(-6px);
          transition: opacity 180ms ease, transform 180ms ease;
        }

        .mobile-menu.is-open {
          opacity: 1;
          pointer-events: auto;
          transform: translateY(0);
        }

        .mobile-menu__group {
          display: grid;
          gap: 0.7rem;
        }

        .mobile-menu__group-toggle {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          padding: 0;
          border: 0;
          background: transparent;
          color: var(--text);
          cursor: pointer;
          text-align: left;
        }

        .mobile-menu__group-toggle::after {
          content: "+";
          font-size: 1.1rem;
          line-height: 1;
          color: var(--text-soft);
        }

        .mobile-menu__group.is-open .mobile-menu__group-toggle::after {
          content: "-";
        }

        .mobile-menu__group-title {
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 0.14em;
          text-transform: uppercase;
          color: var(--text-soft);
        }

        .mobile-menu__group-panel {
          display: none;
          gap: 0.7rem;
          padding-top: 0.15rem;
        }

        .mobile-menu__group.is-open .mobile-menu__group-panel {
          display: grid;
        }

        .mobile-menu a {
          color: var(--text);
        }
      }

      @media (max-width: 720px) {
        .page-hero__inner {
          min-height: auto;
          padding-top: 7.4rem;
          padding-bottom: 3.4rem;
        }

        .section {
          padding: 4rem 0;
        }

        .insight-card {
          padding: 1.5rem;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
      }
