:root {
    --cream: #f5f0e8;
    --cream-dark: #ebe3d5;
    --ink: #2a2520;
    --ink-soft: #4a4339;
    --moss: #5a6147;
    --moss-deep: #3d4232;
    --terracotta: #b8674a;
    --gold: #a08862;
    --whisper: #faf7f1;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Italiana', serif;
    font-weight: 400;
    letter-spacing: 0.04em;
  }

  /* Navigation */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s ease;
    mix-blend-mode: difference;
  }

  nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    mix-blend-mode: normal;
    box-shadow: 0 1px 0 rgba(42, 37, 32, 0.06);
  }

  .logo {
    font-family: 'Italiana', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: white;
    text-transform: uppercase;
    transition: color 0.4s ease;
  }

  nav.scrolled .logo { color: var(--ink); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
  }

  nav.scrolled .nav-links a { color: var(--ink); }

  /* The scrolled bar is cream, so the toggle needs the same ink treatment
     the wordmark and nav links already get */
  nav.scrolled .nav-toggle { color: var(--ink); }

  /* While the overlay is open the bar sits on moss-deep, so it drops its
     cream background and everything in it goes light again */
  nav.menu-open {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    mix-blend-mode: normal;
  }

  nav.menu-open .logo,
  nav.menu-open .nav-toggle,
  nav.scrolled.menu-open .logo,
  nav.scrolled.menu-open .nav-toggle {
    color: var(--cream);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after { width: 100%; }

  /* Hero — inset module containing photograph and translucent olive panel */
  .hero {
    min-height: 100vh;
    padding: 5rem 3rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1e1e16;
  }

  .hero-module {
    position: relative;
    width: 100%;
    max-width: 1700px;
    flex: 1;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
    z-index: 0;
  }

  /* Hero image strip — magazine-spread style row directly after hero */
  .hero-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--ink);
  }

  .hero-image-tile {
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    transition: filter 0.6s ease;
    position: relative;
  }

  .hero-image-tile:hover {
    filter: brightness(1.08);
  }

  @media (max-width: 768px) {
    .hero-images { grid-template-columns: repeat(2, 1fr); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin-left: 4rem;
    padding: 3.5rem 3.5rem 3.25rem;
    background: rgba(61, 66, 50, 0.78);
    color: var(--whisper);
    text-align: left;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: rgba(245, 240, 232, 0.85);
    font-weight: 400;
    animation: fade-up 1.2s ease 0.3s both;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--whisper);
    animation: fade-up 1.2s ease 0.5s both;
  }

  .hero h1 em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--cream-dark);
    letter-spacing: 0;
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 440px;
    margin: 0 0 3rem;
    color: rgba(245, 240, 232, 0.92);
    line-height: 1.75;
    animation: fade-up 1.2s ease 0.7s both;
  }

  .hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(245, 240, 232, 0.6);
    color: var(--whisper);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    animation: fade-up 1.2s ease 0.9s both;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
  }

  .hero-cta:hover {
    background: var(--whisper);
    color: var(--ink);
    border-color: var(--whisper);
  }

  /* Hero scroll cue — restrained prompt in the dark space below the module */
  .hero-scroll {
    position: relative;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    opacity: 0;
    transition: color 0.4s ease;
    animation: hero-scroll-in 1.2s ease 1.2s forwards;
  }

  .hero-scroll:hover,
  .hero-scroll:focus-visible {
    color: var(--whisper);
    outline: none;
  }

  .hero-scroll-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .hero-scroll-line {
    width: 1px;
    height: 32px;
    background: currentColor;
    animation: hero-scroll-cue 2.6s ease-in-out infinite;
    transform-origin: top;
  }

  @keyframes hero-scroll-in {
    to { opacity: 1; }
  }

  @keyframes hero-scroll-cue {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(4px); opacity: 1; }
  }

  /* The overlay is only offered where the inline nav is hidden */
  @media (min-width: 769px) {
    .mobile-menu { display: none !important; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    .hero-scroll { animation: none; opacity: 1; }
    .hero-scroll-line { animation: none; opacity: 0.75; }
    .reveal { opacity: 1; transform: none; }
    .scroll-cue-line { animation: none; }
    .form-conditional.is-visible { animation: none; }
  }

  /* Hero mobile — module retains photograph and olive panel with tighter margins */
  @media (max-width: 768px) {
    /* Height is content-driven here. The 100vh minimum is a desktop
       device and left several hundred pixels of dead ground below the
       scroll cue on taller phones. */
    section.hero {
      min-height: 0;
      height: auto;
      padding-top: 5rem;
      padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
      padding-left: max(1rem, env(safe-area-inset-left, 0px));
      padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }
    section.hero .hero-module {
      flex: 0 0 auto;
    }
    section.hero .hero-module {
      min-height: 500px;
      justify-content: center;
    }
    section.hero .hero-photo {
      object-position: center 45%;
    }
    section.hero .hero-content {
      max-width: calc(100% - 2rem);
      margin: 0 1rem;
      padding: 2.5rem 1.75rem;
      background: rgba(61, 66, 50, 0.78);
    }
    section.hero h1 {
      font-size: 2.5rem;
    }
    section.hero .hero-scroll {
      position: relative;
      margin-top: 3rem;
      gap: 0.65rem;
    }
    section.hero .hero-scroll-line {
      height: 24px;
    }
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--whisper);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
    animation: fade-up 1.2s ease 1.2s both, pulse 2.5s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
  }

  /* Section base */
  section {
    padding: 6.5rem 3rem;
    position: relative;
  }

  .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 1.25rem;
    font-weight: 400;
  }

  .section-title {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 1.65rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ink);
  }

  .section-title em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
    letter-spacing: 0;
  }

  /* Intro / About */
  .intro {
    background: var(--whisper);
    text-align: center;
  }

  .intro-inner {
    max-width: 780px;
    margin: 0 auto;
  }

  .intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--ink-soft);
    font-weight: 300;
  }

  .intro-text + .intro-text { margin-top: 1.5rem; }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 3rem auto;
  }

  /* Services */
  .services {
    background: var(--cream);
  }

  .services-header {
    max-width: 700px;
    margin: 0 auto 6rem;
    text-align: center;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--cream-dark);
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Row 1 — three cards, two columns each */
  .service-card {
    grid-column: span 2;
    background: var(--whisper);
    padding: 3.75rem 2.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* Row 2 — two cards, three columns each */
  .service-card:nth-child(n+4) {
    grid-column: span 3;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 2.25rem;
    color: var(--moss);
    transition: color 0.4s ease;
  }

  .service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-wrap: balance;
  }

  /* Slight tracking reduction so the longer title sits comfortably */
  .service-card:nth-child(5) h3 {
    letter-spacing: 0.12em;
  }

  .service-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin: 0 0 2rem;
    flex: 1;
  }

  /* Controlled text measure inside the wider row-2 cards */
  .service-card:nth-child(n+4) p {
    max-width: 480px;
  }

  .service-link {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--moss);
    text-decoration: none;
    transition: color 0.4s ease;
    align-self: flex-start;
  }

  .service-card:hover .service-icon,
  .service-card:hover .service-link,
  .service-link:focus-visible {
    color: var(--terracotta);
  }

  /* Tablet — two-column grid, last card spans both for a clean composition */
  @media (max-width: 1023px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card,
    .service-card:nth-child(n+4) { grid-column: span 1; }
    .service-card:nth-child(5) { grid-column: span 2; }
    .service-card:nth-child(5) p { max-width: 560px; }
  }

  /* Large desktop — five equal cards in one row */
  @media (min-width: 1280px) {
    .services { padding-left: 2rem; padding-right: 2rem; }
    .services-grid {
      grid-template-columns: repeat(5, 1fr);
      max-width: 1700px;
    }
    .service-card,
    .service-card:nth-child(n+4) { grid-column: span 1; }
    .service-card { padding: 3.25rem 1.75rem; }
    .service-card:nth-child(n+4) p { max-width: 100%; }
    .service-card:nth-child(5) h3 { letter-spacing: 0.08em; }
  }

  /* Mobile — single column */
  @media (max-width: 767px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card,
    .service-card:nth-child(n+4),
    .service-card:nth-child(5) { grid-column: span 1; }
    .service-card { padding: 3rem 1.75rem; }
    .service-card:nth-child(n+4) p,
    .service-card:nth-child(5) p { max-width: 100%; }
  }

  /* ==================== */
  /* LOOKBOOK             */
  /* ==================== */

  /* --- Index --- */
  .lookbook {
    background: var(--whisper);
    padding: 9rem 3rem 6.5rem;
  }

  .lookbook-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .lookbook-intro {
    max-width: 640px;
    margin: 0 0 4rem;
  }

  .lookbook-title {
    font-family: 'Italiana', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    font-weight: 400;
    color: var(--ink);
    text-wrap: balance;
    margin: 0 0 1.25rem;
  }

  .lookbook-title em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
    letter-spacing: 0;
  }

  .lookbook-lede {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0;
  }

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

  /* --- Card --- */
  .look-card {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .look-card-frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-dark);
    margin-bottom: 1.15rem;
  }

  .look-card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.9s ease, opacity 0.5s ease;
  }

  .look-card:hover .look-card-frame img,
  .look-card:focus-visible .look-card-frame img {
    transform: scale(1.04);
    opacity: 0.92;
  }

  /* Category and location each take their own line so titles stay on a
     common baseline no matter how long the category runs */
  .look-card-meta {
    font-size: 0.62rem;
    line-height: 1.9;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.75rem;
  }

  .look-card-meta span {
    display: block;
  }

  .look-card-meta span + span {
    color: rgba(42, 37, 32, 0.45);
  }

  .look-card h2,
  .look-card h3 {
    font-family: 'Italiana', serif;
    font-size: 1.4rem;
    line-height: 1.25;
    letter-spacing: 0.06em;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 0.85rem;
    transition: color 0.4s ease;
  }

  .look-card:hover h2,
  .look-card:hover h3,
  .look-card:focus-visible h2,
  .look-card:focus-visible h3 {
    color: var(--terracotta);
  }

  .look-card-link {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-block;
  }

  /* --- Story page --- */
  .story-hero {
    background: var(--whisper);
    padding: 8.5rem 3rem 0;
  }

  .story-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 3.5rem;
    align-items: center;
  }

  .story-hero-text .look-card-meta {
    margin-bottom: 1.5rem;
  }

  .story-title {
    font-family: 'Italiana', serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    font-weight: 400;
    color: var(--ink);
    text-wrap: balance;
    margin: 0 0 1.5rem;
  }

  .story-subhead {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--moss);
    margin: 0;
  }

  .story-hero-image {
    max-height: 72vh;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream-dark);
    justify-self: end;
    width: 100%;
  }

  .story-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .story-hero-caption {
    max-width: 1240px;
    margin: 1rem auto 0;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(42, 37, 32, 0.55);
    text-align: right;
  }

  .story-opening {
    background: var(--whisper);
    padding: 5rem 3rem 6.5rem;
  }

  .story-opening-inner {
    max-width: 660px;
    margin: 0 auto;
  }

  .story-opening-inner p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--ink-soft);
    margin: 0 0 1.5rem;
  }

  .story-opening-inner p:last-child { margin-bottom: 0; }

  /* --- Editorial sequence --- */
  .story-sequence {
    background: var(--cream);
    padding: 6.5rem 3rem;
  }

  .story-sequence-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .story-chapter {
    margin: 0 auto 5.5rem;
  }

  .story-chapter:last-child { margin-bottom: 0; }

  .story-chapter.is-portrait { max-width: 52%; }
  .story-chapter.is-landscape { max-width: 78%; }

  .story-chapter h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 400;
    margin: 0 0 1.5rem;
  }

  .story-figure {
    margin: 0;
  }

  .story-image-button {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: var(--cream-dark);
    cursor: zoom-in;
    overflow: hidden;
  }

  .story-chapter.is-portrait .story-image-button { aspect-ratio: 4 / 5; }
  .story-chapter.is-landscape .story-image-button { aspect-ratio: 3 / 2; }

  .story-image-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.9s ease;
  }

  .story-image-button:hover img {
    transform: scale(1.03);
  }

  .story-figure figcaption {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-top: 1.1rem;
    max-width: 46ch;
  }

  /* --- Story footer --- */
  .story-cta {
    background: var(--moss-deep);
    color: var(--cream);
    padding: 6rem 3rem;
    text-align: center;
  }

  .story-cta h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    letter-spacing: 0.05em;
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 2.25rem;
    text-wrap: balance;
  }

  .story-cta .hero-cta {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.5);
  }

  .story-cta .hero-cta:hover {
    background: var(--cream);
    color: var(--moss-deep);
    border-color: var(--cream);
  }

  .story-more {
    background: var(--whisper);
    padding: 5rem 3rem 6.5rem;
  }

  .story-more-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .story-more-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .story-more-head .section-eyebrow {
    margin-bottom: 0;
  }

  .story-back {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 37, 32, 0.25);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .story-back:hover {
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
  }

  .story-more-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  /* --- Lightbox --- */
  /* The fixed nav uses mix-blend-mode, which would blend against the
     overlay and ghost through it */
  .lightbox-open nav { visibility: hidden; }

  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(20, 18, 14, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 4.5rem 5.5rem;
  }

  .lightbox-figure {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .lightbox-figure img {
    max-width: 100%;
    max-height: 74vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .lightbox-figure figcaption {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.75);
    text-align: center;
    max-width: 52ch;
  }

  .lightbox button {
    position: absolute;
    background: transparent;
    border: 1px solid rgba(245, 240, 232, 0.35);
    color: var(--cream);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .lightbox button:hover {
    background: var(--cream);
    color: var(--ink);
  }

  .lightbox-close { top: 1.5rem; right: 1.5rem; padding: 0 1.1rem; }
  .lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
  .lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

  .lightbox-count {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
  }

  /* --- Lookbook responsive --- */
  @media (max-width: 1024px) {
    .lookbook { padding: 7.5rem 2rem 5rem; }
    .lookbook-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .lookbook-intro { margin-bottom: 3rem; }

    .story-hero { padding: 7rem 2rem 0; }
    .story-hero-inner {
      grid-template-columns: 1fr;
      gap: 2.25rem;
    }
    .story-hero-image {
      aspect-ratio: 3 / 2;
      max-height: none;
      justify-self: stretch;
    }
    .story-hero-caption { text-align: left; }
    .story-opening { padding: 3.5rem 2rem 5rem; }
    .story-sequence { padding: 5rem 2rem; }
    .story-chapter.is-portrait { max-width: 68%; }
    .story-chapter.is-landscape { max-width: 100%; }
    .story-chapter { margin-bottom: 4.5rem; }
    .story-cta { padding: 5rem 2rem; }
    .story-more { padding: 4rem 2rem 5rem; }
  }

  @media (max-width: 768px) {
    .lookbook { padding: 6.5rem 1.5rem 4rem; }
    .lookbook-grid { grid-template-columns: 1fr; gap: 2.25rem; }

    .story-hero { padding: 6.5rem 1.5rem 0; }
    .story-hero-image { aspect-ratio: 4 / 5; }
    .story-opening { padding: 3rem 1.5rem 4rem; }
    .story-sequence { padding: 4rem 1.5rem; }
    .story-chapter.is-portrait,
    .story-chapter.is-landscape { max-width: 100%; }
    .story-chapter { margin-bottom: 3.5rem; }
    .story-cta { padding: 4rem 1.5rem; }
    .story-more { padding: 3.5rem 1.5rem 4.5rem; }
    .story-more-grid { grid-template-columns: 1fr; gap: 2.25rem; }

    .lightbox { padding: 4.5rem 1rem 4.5rem; }
    .lightbox-figure img { max-height: 62vh; }
    .lightbox-close { top: 1rem; right: 1rem; }
    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }
  }

  /* Philosophy / Studio */
  .philosophy {
    background: var(--whisper);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    align-items: stretch;
  }

  .philosophy-image {
    background-image: url('https://res.cloudinary.com/dtle6j2if/image/upload/w_1200,q_auto,f_auto/v1786911227/hearthly-decor-design-tablescapes-luxury-parties-catskills-nyc-service-20260808-KCP_8250_ftg7eo.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
  }

  .philosophy-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  }

  .philosophy-content {
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
  }

  .signature {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--moss);
    margin-top: 2rem;
  }

  /* Journal */
  .journal {
    background: var(--cream);
    text-align: center;
  }

  .journal-header {
    max-width: 700px;
    margin: 0 auto 5rem;
  }

  .journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
  }

  .journal-card {
    cursor: pointer;
    transition: transform 0.4s ease;
  }

  .journal-card:hover { transform: translateY(-6px); }

  .journal-image {
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 1.75rem;
    overflow: hidden;
    position: relative;
  }

  .journal-image > div {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
  }

  .journal-card:hover .journal-image > div { transform: scale(1.05); }

  .j-img-1 { background: url('https://res.cloudinary.com/dtle6j2if/image/upload/w_700,q_auto,f_auto/v1786911250/hearthly-decor-design-tablescapes-luxury-parties-catskills-nyc-service-IMG_5316_vycifa.jpg') center/cover; }
  .j-img-2 { background: url('https://res.cloudinary.com/dtle6j2if/image/upload/w_700,q_auto,f_auto/v1786911239/hearthly-decor-design-tablescapes-luxury-parties-catskills-nyc-service-20260808-KCP_7847_pnaxg2.jpg') center/cover; }
  .j-img-3 { background: url('https://res.cloudinary.com/dtle6j2if/image/upload/w_700,q_auto,f_auto/v1786911237/hearthly-decor-design-tablescapes-luxury-parties-catskills-nyc-service-IMG_6996_dzszir.jpg') center/cover; }

  .journal-card-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
  }

  .journal-card h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }

  .journal-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
  }

  /* Contact / Inquire */
  .inquire {
    background: var(--moss-deep);
    color: var(--cream);
    text-align: center;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .inquire::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(184, 103, 74, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 70%, rgba(160, 136, 98, 0.15) 0%, transparent 60%);
  }

  .inquire-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .inquire .section-eyebrow { color: var(--gold); }
  .inquire .section-title { color: var(--cream); }
  .inquire .section-title em { color: var(--terracotta); }

  .inquire p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.85;
  }

  .inquire-form {
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .form-row > .form-field {
    margin-bottom: 0;
  }

  .form-field {
    margin-bottom: 1.25rem;
  }

  .form-field label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.8;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.3);
    padding: 0.75rem 0;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
  }

  .form-field select option {
    background: var(--moss-deep);
    color: var(--cream);
  }

  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    outline: none;
    border-bottom-color: var(--terracotta);
  }

  .form-field textarea {
    resize: vertical;
    min-height: 80px;
  }

  .inquire-direct {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    opacity: 0.75;
    position: relative;
    z-index: 1;
  }

  .inquire-direct a {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.35);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .inquire-direct a:hover {
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
  }

  .form-submit {
    width: 100%;
    padding: 1.1rem;
    min-height: 48px;
    background: transparent;
    border: 1px solid var(--cream);
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    margin-top: 1.5rem;
  }

  .form-submit:hover {
    background: var(--cream);
    color: var(--moss-deep);
  }

  /* Footer */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 3rem 3rem 1.75rem;
    text-align: center;
  }

  /* Brand lockup — stamp, wordmark, and tagline as one centred group.
     Base gap sets the wordmark-to-tagline distance; the wordmark adds an
     equal top margin so the stamp sits at twice that remove. */
  .footer-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
  }

  .footer-lockup .footer-logo {
    margin-top: 10px;
  }

  /* The stamp artwork is near-black olive, which disappears on the dark
     ground. Using the SVG as a mask repaints every stroke, letter, leaf,
     and circle in the footer's gold without touching the artwork itself. */
  .footer-stamp {
    display: block;
    width: 200px;
    height: 200px;
    background-color: var(--gold);
    -webkit-mask: url('https://res.cloudinary.com/dtle6j2if/image/upload/v1787510555/hearthly-stamp-02-botanical-monogram_wtjfa4.svg') center / contain no-repeat;
    mask: url('https://res.cloudinary.com/dtle6j2if/image/upload/v1787510555/hearthly-stamp-02-botanical-monogram_wtjfa4.svg') center / contain no-repeat;
  }

  @supports not ((-webkit-mask-image: url('#m')) or (mask-image: url('#m'))) {
    .footer-stamp {
      background: url('https://res.cloudinary.com/dtle6j2if/image/upload/v1787510555/hearthly-stamp-02-botanical-monogram_wtjfa4.svg') center / contain no-repeat;
    }
  }

  .footer-logo {
    font-family: 'Italiana', serif;
    font-size: 1.5rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .footer-tagline {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gold);
  }

  .footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.7;
  }

  .footer-info a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.25);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .footer-info a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .footer-bottom {
    padding-top: 1.65rem;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 48% 52%; }
    .hero-panel { padding: 0 3.5rem; }
  }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    section { padding: 4.25rem 1.5rem; }
    .hero { display: block; height: auto; min-height: auto; padding: 0; }
    .hero-panel { padding: 7rem 1.75rem 4.5rem; min-height: auto; }
    .hero-visual { width: 100%; height: 62vh; min-height: 460px; }
    .hero-photo { object-position: center 45%; }
    .hero-fade { display: none; }
    .hero-content { max-width: 100%; padding: 0; }
    .hero h1 { font-size: 2.5rem; }
    .philosophy { grid-template-columns: 1fr; }
    .philosophy-image { min-height: 400px; }
    .philosophy-content { padding: 5rem 1.5rem; }
    .journal-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 2.25rem 1.5rem 1.5rem; }
    .footer-lockup { gap: 9px; margin-bottom: 1.75rem; }
    .footer-lockup .footer-logo { margin-top: 9px; }
    .footer-stamp { width: 160px; height: 160px; }
    .footer-info { flex-direction: column; gap: 0.9rem; }
  }

  /* Mobile menu */
  .nav-toggle {
    display: none;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    min-height: 44px;
    cursor: pointer;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }

  .nav-toggle-bars {
    position: relative;
    width: 20px;
    height: 9px;
    flex-shrink: 0;
  }

  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-toggle-bars::before { top: 0; }
  .nav-toggle-bars::after { bottom: 0; }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
    transform: translateY(-4px) rotate(-45deg);
  }

  /* Declared after the responsive block above so it wins on cascade order */
  @media (max-width: 768px) {
    .nav-toggle { display: inline-flex; }
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--moss-deep);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu ul {
    list-style: none;
    text-align: center;
  }

  .mobile-menu li + li {
    margin-top: 2.25rem;
  }

  .mobile-menu a {
    display: inline-block;
    padding: 0.5rem 1rem;
    min-height: 44px;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Italiana', serif;
    font-size: 1.4rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }

  .mobile-menu a:hover,
  .mobile-menu a[aria-current="page"] {
    color: var(--gold);
  }

  /* Scroll cue — same restrained language as the homepage hero prompt */
  .scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin: 2rem auto 0;
    padding: 0.5rem 1rem;
    width: fit-content;
    color: var(--moss);
    text-decoration: none;
    transition: color 0.4s ease;
  }

  .scroll-cue:hover {
    color: var(--terracotta);
  }

  .scroll-cue-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    font-weight: 400;
  }

  .scroll-cue-line {
    width: 1px;
    height: 28px;
    background: currentColor;
    animation: hero-scroll-cue 2.6s ease-in-out infinite;
    transform-origin: top;
  }

  .next-steps .scroll-cue {
    margin-top: 2.5rem;
  }

  /* Visible keyboard focus, site-wide */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Wordmark link + active nav state + hidden safeguard */
  a.logo {
    text-decoration: none;
    display: inline-block;
  }

  .nav-links a[aria-current="page"]::after {
    width: 100%;
  }

  [hidden] {
    display: none !important;
  }

  /* ==================== */
  /* THE STUDIO PAGE      */
  /* ==================== */

  .studio-about {
    background: var(--whisper);
    padding: 8.5rem 3rem 6.5rem;
  }

  .studio-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .studio-about-header .section-eyebrow {
    margin-bottom: 1.5rem;
  }

  .studio-title {
    font-family: 'Italiana', serif;
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    line-height: 1.15;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-wrap: balance;
    margin: 0;
  }

  .studio-title em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
    letter-spacing: 0;
  }

  .studio-about-body {
    padding-top: 1rem;
  }

  .studio-about-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-soft);
    margin-bottom: 1.45rem;
  }

  .studio-about-body p:last-child {
    margin-bottom: 0;
  }

  .studio-founder {
    background: var(--moss-deep);
    color: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 700px;
  }

  .studio-founder-image {
    position: relative;
    overflow: hidden;
    min-height: 600px;
  }

  .studio-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }

  .studio-founder-content {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
  }

  .studio-founder-content .section-eyebrow {
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .studio-founder-content h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    text-wrap: balance;
  }

  .studio-founder-content h2 em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0;
  }

  .studio-founder-copy p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.9);
    margin-bottom: 1.5rem;
  }

  .studio-founder-copy p:last-child {
    margin-bottom: 0;
  }

  .studio-cta {
    background: var(--cream);
    padding: 8rem 3rem;
    text-align: center;
  }

  .studio-cta-inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .studio-cta-inner .section-eyebrow {
    margin-bottom: 1.5rem;
  }

  .studio-cta-inner h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 3rem;
    text-wrap: balance;
  }

  .studio-cta-inner h2 em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: var(--moss);
    letter-spacing: 0;
  }

  .studio-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--ink);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
  }

  .studio-cta-button:hover {
    background: var(--ink);
    color: var(--whisper);
  }

  @media (max-width: 1024px) {
    .studio-about {
      padding: 6rem 2rem;
    }
    .studio-about-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .studio-about-body {
      padding-top: 0;
    }
    .studio-founder {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .studio-founder-image {
      min-height: 500px;
      max-height: 65vh;
    }
    .studio-founder-content {
      padding: 5rem 3rem;
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .studio-about {
      padding: 6rem 1.5rem;
    }
    .studio-title {
      font-size: 2rem;
    }
    .studio-founder-image {
      min-height: 400px;
    }
    .studio-founder-content {
      padding: 4rem 1.5rem;
    }
    .studio-founder-content h2 {
      font-size: 1.75rem;
    }
    .studio-cta {
      padding: 5rem 1.5rem;
    }
    .studio-cta-inner h2 {
      font-size: 1.75rem;
    }
  }

  /* ==================== */
  /* SERVICE PAGES        */
  /* ==================== */

  .page-service { display: block; }

  /* Hero */
  .service-hero {
    display: grid;
    grid-template-columns: 44% 56%;
    /* minmax on the row (not min-height) so both columns stretch to fill */
    grid-template-rows: minmax(88vh, auto);
    background: var(--whisper);
  }

  .service-hero[data-hero-layout="image-left"] .service-hero-text { order: 2; }
  .service-hero[data-hero-layout="image-left"] .service-hero-image { order: 1; }

  .service-hero-text {
    padding: 7rem 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-mark {
    width: 44px;
    height: auto;
    margin-bottom: 2.25rem;
    display: block;
  }

  .service-hero-text .section-eyebrow {
    margin-bottom: 1.25rem;
  }

  .service-headline {
    font-family: 'Italiana', serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.03em;
    margin: 0 0 2rem;
    text-wrap: balance;
  }

  .service-opening {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0;
  }

  .service-hero-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: var(--ink);
  }

  .service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Intro */
  .service-intro {
    background: var(--whisper);
    padding: 6.5rem 3rem;
  }

  .service-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4.25rem;
    align-items: start;
  }

  .service-intro h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.2;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-wrap: balance;
    margin: 0;
  }

  .service-intro-body p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
  }

  .service-intro-body p:last-child { margin-bottom: 0; }

  /* Secondary image */
  .service-image {
    padding: 0 3rem 6.5rem;
    background: var(--whisper);
  }

  .service-image-inner {
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ink);
  }

  .service-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Details */
  .service-details {
    background: var(--cream);
    padding: 6.5rem 3rem;
  }

  .service-details-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4.25rem;
    align-items: start;
  }

  .service-details h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.2;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-wrap: balance;
    margin: 0;
  }

  .service-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-details-list li {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
    padding: 1.1rem 0;
    border-top: 1px solid rgba(42, 37, 32, 0.1);
  }

  .service-details-list li:last-child {
    border-bottom: 1px solid rgba(42, 37, 32, 0.1);
  }

  .service-details-footer {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ink-soft);
    font-style: italic;
    margin: 1.5rem 0 0;
  }

  /* Investment */
  .service-investment {
    background: var(--moss-deep);
    color: var(--cream);
    padding: 6.5rem 3rem;
    text-align: center;
  }

  .service-investment-inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .service-investment .section-eyebrow {
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .service-investment-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.75);
    font-weight: 400;
    margin-bottom: 1rem;
  }

  .service-investment-price {
    font-family: 'Italiana', serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .service-investment-price-context {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
  }

  .service-investment-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.85);
    margin: 0 0 2.5rem;
  }

  .service-investment .hero-cta {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.5);
  }

  .service-investment .hero-cta:hover {
    background: var(--cream);
    color: var(--moss-deep);
    border-color: var(--cream);
  }

  /* Related services */
  .service-related {
    background: var(--whisper);
    padding: 5rem 3rem 6.5rem;
    text-align: center;
  }

  .service-related .section-eyebrow {
    margin-bottom: 2.5rem;
  }

  .service-related-links {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
  }

  .service-related-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: var(--ink);
    transition: color 0.4s ease;
    padding: 1rem;
  }

  .service-related-link:hover,
  .service-related-link:focus-visible {
    color: var(--terracotta);
  }

  .service-related-link img {
    width: 32px;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
  }

  .service-related-link:hover img,
  .service-related-link:focus-visible img {
    opacity: 0.75;
  }

  .service-related-link-label {
    font-family: 'Italiana', serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  /* Service pages — responsive */
  @media (max-width: 1024px) {
    .service-hero {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
    }
    .service-hero[data-hero-layout="image-left"] .service-hero-text,
    .service-hero[data-hero-layout="image-left"] .service-hero-image {
      order: initial;
    }
    .service-hero-text {
      padding: 6.5rem 2.5rem 2.5rem;
    }
    .service-hero-image {
      min-height: auto;
      aspect-ratio: 4 / 3;
    }
    .service-intro,
    .service-details,
    .service-investment {
      padding: 5rem 2rem;
    }
    .service-intro-inner,
    .service-details-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .service-image {
      padding: 0 2rem 5rem;
    }
    .service-image-inner {
      aspect-ratio: 4 / 3;
    }
  }

  @media (max-width: 768px) {
    .service-hero-text {
      padding: 6.5rem 1.5rem 2.5rem;
    }
    .service-mark {
      width: 40px;
    }
    .service-intro,
    .service-details,
    .service-investment {
      padding: 3.75rem 1.5rem;
    }
    .service-image {
      padding: 0 1.5rem 3.25rem;
    }
    .service-image-inner {
      aspect-ratio: 3 / 4;
    }
    .service-related {
      padding: 3.25rem 1.5rem 5rem;
    }
    .service-related-links {
      gap: 3rem;
    }
  }
  /* ==================== */
  /* INQUIRE PAGE         */
  /* ==================== */

  .inquire-hero {
    background: var(--moss-deep);
    color: var(--cream);
    padding: 10rem 3rem 6rem;
    position: relative;
    overflow: hidden;
  }

  .inquire-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 18% 25%, rgba(184, 103, 74, 0.16) 0%, transparent 60%),
      radial-gradient(ellipse at 82% 75%, rgba(160, 136, 98, 0.16) 0%, transparent 60%);
  }

  .inquire-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .inquire-hero .section-eyebrow { color: var(--gold); }

  .inquire-hero-title {
    font-family: 'Italiana', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    font-weight: 400;
    color: var(--cream);
    text-wrap: balance;
    margin: 0 0 1.65rem;
  }

  .inquire-hero-title em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta);
    letter-spacing: 0;
  }

  .inquire-hero-copy {
    font-size: 1.1rem;
    line-height: 1.85;
    opacity: 0.86;
    max-width: 620px;
    margin: 0 auto;
  }

  /* --- Form --- */

  .inquire-page-form {
    background: var(--whisper);
    padding: 5.5rem 3rem 4.5rem;
  }

  .inquire-page-form-inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .inquire-page-form .form-intro {
    text-align: center;
    margin-bottom: 3rem;
  }

  .inquire-page-form .form-intro p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto;
  }

  /* Light-ground overrides of the dark homepage form styling */
  .inquire-page-form .form-field label {
    color: var(--ink-soft);
    opacity: 1;
  }

  .inquire-page-form .form-field input,
  .inquire-page-form .form-field textarea,
  .inquire-page-form .form-field select {
    color: var(--ink);
    border-bottom: 1px solid rgba(42, 37, 32, 0.22);
  }

  .inquire-page-form .form-field input::placeholder,
  .inquire-page-form .form-field textarea::placeholder {
    color: rgba(42, 37, 32, 0.38);
  }

  .inquire-page-form .form-field select option {
    background: var(--whisper);
    color: var(--ink);
  }

  .inquire-page-form .form-field input:focus,
  .inquire-page-form .form-field textarea:focus,
  .inquire-page-form .form-field select:focus {
    border-bottom-color: var(--moss);
    outline: none;
  }

  .inquire-page-form .form-field textarea {
    min-height: 104px;
  }

  .inquire-page-form .form-submit {
    border-color: var(--ink);
    color: var(--ink);
  }

  .inquire-page-form .form-submit:hover {
    background: var(--ink);
    color: var(--whisper);
  }

  /* A fieldset's own top border gets notched by the legend, and floating the
     legend to avoid that pulled it out of flow and squeezed the first row.
     The rule lives on the bottom edge instead, so the legend stays in flow
     and every row shares the same grid. */
  .form-legend {
    font-family: 'Italiana', serif;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--moss);
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 1.75rem;
  }

  .inquire-page-form fieldset {
    display: block;
    width: 100%;
    border: none;
    padding: 0 0 2.25rem;
    margin: 0 0 2.25rem;
    border-bottom: 1px solid rgba(42, 37, 32, 0.1);
    min-inline-size: 0;
  }

  .inquire-page-form fieldset:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .form-optional {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.7rem;
    color: rgba(42, 37, 32, 0.45);
    margin-left: 0.5rem;
  }

  .form-help {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(42, 37, 32, 0.55);
    margin-top: 0.5rem;
  }

  /* Conditional groups */
  .form-conditional {
    display: none;
  }

  .form-conditional.is-visible {
    display: block;
    animation: fade-up 0.5s ease both;
  }

  /* Validation */
  .form-error {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--terracotta);
    margin-top: 0.6rem;
    min-height: 0;
  }

  .form-field.has-error input,
  .form-field.has-error textarea,
  .form-field.has-error select {
    border-bottom-color: var(--terracotta);
  }

  .form-status {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--terracotta);
    text-align: center;
  }

  .form-success {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid rgba(90, 97, 71, 0.28);
    background: var(--cream);
  }

  .form-success h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: 0.04em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .form-success p {
    color: var(--ink-soft);
    line-height: 1.85;
    max-width: 460px;
    margin: 0 auto;
  }

  /* --- What Happens Next --- */

  .next-steps {
    background: var(--cream);
    padding: 5.5rem 3rem;
  }

  .next-steps-inner {
    max-width: 1150px;
    margin: 0 auto;
  }

  .next-steps-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .next-steps-header .section-title {
    margin-bottom: 0;
  }

  .next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .next-step {
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid rgba(90, 97, 71, 0.3);
  }

  .next-step-index {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.25rem;
  }

  .next-step h3 {
    font-family: 'Italiana', serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin-bottom: 1rem;
  }

  .next-step p {
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--ink-soft);
  }

  /* --- FAQ --- */

  .faq {
    background: var(--whisper);
    padding: 5.5rem 3rem;
  }

  .faq-inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-header .section-title {
    margin-bottom: 0;
  }

  .faq-list {
    border-top: 1px solid rgba(42, 37, 32, 0.14);
  }

  .faq-item {
    border-bottom: 1px solid rgba(42, 37, 32, 0.14);
  }

  .faq-trigger {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    background: transparent;
    border: none;
    padding: 1.4rem 0;
    min-height: 48px;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
  }

  .faq-trigger:hover {
    color: var(--moss);
  }

  .faq-trigger:focus-visible {
    outline: 1px solid var(--moss);
    outline-offset: 4px;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    position: relative;
    margin-top: 0.55rem;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--moss);
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
  }

  .faq-icon::after {
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    transform: translateX(-50%);
  }

  .faq-trigger[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }

  .faq-panel {
    padding: 0 0 1.6rem;
    max-width: 640px;
  }

  .faq-panel p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: var(--ink-soft);
  }

  .faq-panel p + p {
    margin-top: 1rem;
  }

  /* --- General contact note --- */

  .inquire-contact {
    background: var(--moss-deep);
    color: var(--cream);
    padding: 5.5rem 3rem;
    text-align: center;
  }

  .inquire-contact-inner {
    max-width: 620px;
    margin: 0 auto;
  }

  .inquire-contact .section-eyebrow {
    color: var(--gold);
  }

  .inquire-contact h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    letter-spacing: 0.05em;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.75rem;
    text-wrap: balance;
  }

  .inquire-contact h2 em {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: var(--terracotta);
    letter-spacing: 0;
  }

  .inquire-contact p {
    font-size: 1.02rem;
    line-height: 1.85;
    opacity: 0.85;
    margin-bottom: 2.5rem;
  }

  .inquire-contact-email {
    display: inline-block;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.4);
    padding-bottom: 0.35rem;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .inquire-contact-email:hover {
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
  }

  .inquire-contact-meta {
    margin-top: 2.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  @media (max-width: 1024px) {
    .inquire-hero { padding: 8.5rem 2rem 5rem; }
    .inquire-page-form,
    .next-steps,
    .faq { padding: 4.5rem 2rem; }
    .next-steps-grid { gap: 2.5rem; }
    .inquire-contact { padding: 4.5rem 2rem; }
  }

  @media (max-width: 768px) {
    .inquire-hero { padding: 7.5rem 1.5rem 4rem; }
    .inquire-page-form,
    .next-steps,
    .faq { padding: 4rem 1.5rem; }
    .next-steps-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .inquire-contact { padding: 4rem 1.5rem; }
    .inquire-contact-email { font-size: 1.25rem; }
    .faq-trigger { font-size: 0.95rem; gap: 1.25rem; }
  }

  .form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
