:root {
  --navy: #13202e;
  --navy-deep: #0e1822;
  --forest: #16332b;
  --maroon: #6b1d1c;
  --paper: #faf7f1;
  --cream: #f3ecdd;
  --warm-cream: #ede3ce;
  --ivory: #f6f1e4;
  --gold: #e0b45c;
  --gold-soft: #c9a24b;
  --ink: #1c2333;
  --body: #657485;
  --wrap: 1180px;
  --gutter: 32px;
  --header-h: 132px;
  --header-offset: 78px;
}

body.page-index {
  --gold: #e0b45c;
}

body.page-contact {
  --gold: #dbac18;
}

body.page-privacy {
  --gold: #e1b212;
}

body.page-terms {
  --gold: #e1b212;
}

/* Loader: the mark inks itself in, then lifts away. */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition:
    opacity 0.7s ease 0.15s,
    visibility 0.7s ease 0.15s;
}

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

.loader-mark {
  display: grid;
  justify-items: center;
  gap: 26px;
  width: min(330px, 62vw);
}

/* Shirorekha: the top bar draws across first. */
.loader-bar {
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loader-bar 0.62s cubic-bezier(0.65, 0.02, 0.3, 1) forwards;
}

.loader-logo {
  position: relative;
  width: 100%;
  aspect-ratio: 686 / 300;
}

/* Faint resting impression of the mark, so the ink has something to fill. */
.loader-logo-ghost,
.loader-logo-ink {
  position: absolute;
  inset: 0;
  -webkit-mask: url("logo-light.webp") no-repeat center / contain;
  mask: url("logo-light.webp") no-repeat center / contain;
}

.loader-logo-ghost {
  background: rgba(246, 241, 228, 0.13);
}

/* The ink sweep: a hard edge travelling left to right under the mask. */
.loader-logo-ink {
  background: linear-gradient(100deg,
      var(--gold) 0 42%,
      #f4ead2 55%,
      var(--ivory) 68%) no-repeat;
  clip-path: inset(0 100% 0 0);
  animation: loader-ink 1.15s cubic-bezier(0.62, 0.05, 0.28, 1) 0.42s forwards;
}

.loader-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(224, 180, 92, 0.55),
      transparent);
  transform: scaleX(0);
  animation: loader-rule 0.9s ease 1.15s forwards;
}

.loader-tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  animation: loader-tag 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.loader-tag .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.2rem;
}

@keyframes loader-tag {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-bar {
  to {
    transform: scaleX(1);
  }
}

@keyframes loader-ink {
  to {
    clip-path: inset(0 -2% 0 0);
  }
}

@keyframes loader-rule {
  to {
    transform: scaleX(1);
  }
}

/* Settle, then lift the whole panel away. */
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader.is-done .loader-mark {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-14px);
}

body.is-loading {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

  .loader-bar,
  .loader-rule {
    animation: none;
    transform: scaleX(1);
  }

  .loader-logo-ink {
    animation: none;
    clip-path: none;
  }

  .loader.is-done .loader-mark {
    transition: none;
    transform: none;
  }
}

/* index.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font:
    500 16px/1.55 "Work Sans",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

[id] {
  scroll-margin-top: var(--header-h);
}

.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Header: desktop */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-h);
  background: var(--ivory);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(20, 32, 46, 0.08);
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: var(--ivory);
  box-shadow: 0 8px 24px rgba(20, 32, 46, 0.06);
}

.header-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(18px, 2vw, 34px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
  transform: translateX(-20px);
}

.brand-logo {
  width: 178px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: rgba(20, 32, 46, 0.15);
}

.brand-tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--maroon);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  transform: translateX(18px);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.32, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--maroon);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.25s cubic-bezier(0.22, 0.9, 0.32, 1),
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 539px;
  overflow: hidden;
  background: var(--navy);
  color: var(--ivory);
  display: grid;
  place-items: center;
}

.hero-motif {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 530px;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.hero-copy {
  width: 100%;
  padding: 40px var(--gutter);
  text-align: center;
}

.hero-logo {
  display: none;
}

.hero h1 {
  margin: 0;
  font:
    600 clamp(40px, 3.35vw, 46px)/1.1 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 590px;
  margin: 27px auto 0;
  color: #d7d2ca;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.045em;
}

.dot-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #c7522a;
  font-size: 0.75rem;
  margin: 32px 0 0;
}

.dot-row-mark {
  color: #c7522a;
  font-size: 1.1rem;
}

.hero-mobile-actions {
  display: none;
}

/* Culture */
.culture {
  position: relative;
  min-height: 428px;
  overflow: hidden;
  background: linear-gradient(to bottom,
      var(--forest) 0 calc(100% - 13px),
      var(--paper) calc(100% - 13px));
  color: var(--ivory);
}

.culture .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: 415px;
  width: 100%;
  max-width: 1500px;
  padding-inline: 32px;
}

.culture h2 {
  margin: 0;
  text-align: center;
  font:
    700 clamp(28px, 3vw, 36px)/1.14 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.culture-char {
  transition: color 0.2s ease;
}

.culture-copy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.culture-text {
  max-width: 640px;
  margin: 0;
  text-align: center;
  color: #d5ddd7;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.culture-p {
  display: block;
}

.culture-p+.culture-p {
  margin-top: 22px;
}

.culture-ornament {
  flex-shrink: 0;
  width: clamp(70px, 9vw, 75px);
  height: auto;
  opacity: 0.85;
}

.culture-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 13px;
  background: radial-gradient(circle at 6px 6.5px,
      #b8201b 2.35px,
      transparent 2.55px) 0 0/12px 13px repeat-x;
}

/* Quote */
.quote {
  position: relative;
  min-height: 451px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom,
      var(--warm-cream) 0 calc(100% - 13px),
      var(--cream) calc(100% - 13px));
}

.quote-sun {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 380px;
  height: 451px;
  object-fit: contain;
  object-position: left bottom;
}

.quote-copy {
  position: relative;
  z-index: 1;
  width: min(465px, 42vw);
  margin: 0 0 12px 200px;
  text-align: center;
  color: #253247;
  font:
    500 italic clamp(28px, 2.25vw, 31px)/1.46 "Cormorant Garamond",
    Georgia,
    serif;
}

.quote-copy .accent {
  color: #7a2422;
}

.quote-tree {
  position: absolute;
  right: 32px;
  bottom: 10px;
  width: 168px;
  opacity: 0.55;
}

.quote-word {
  color: rgba(37, 50, 71, 0.16);
  transition: color 0.25s linear;
}

.quote-word.accent {
  transition: color 0.25s linear;
}

/* Tenets */
.tenets {
  position: relative;
  height: 600vh;
  background: #651c1c;
}

.tenets__sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tenets__bg-motif {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  max-width: 72%;
  pointer-events: none;
  will-change: transform;
}

.tenets__heading {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 10;
  text-align: center;
  margin-bottom: 0;
}

.tenets__kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #d4af37;
}

.tenets__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 14px 0 0;
  color: #f4eedd;
}

.tenets__deck {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tenets__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(460px, 40vw);
  height: min(100px, 12vh);
  background: #f4eedd;
  color: #1c2333;
  border: 1px solid rgba(28, 35, 51, 0.2);
  box-shadow: 0 15px 35px -15px rgba(11, 17, 32, 0.4);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(16px, 2vw, 24px);
  transform: translateY(120vh);
  will-change: transform;
}

.tenets__card-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2.0rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: #c79a44;
  flex-shrink: 0;
}

.tenets__card-text {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  line-height: 1.3;
  text-wrap: pretty;
}

.tenets__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 10px;
}

.tenets__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(244, 238, 221, 0.35);
  transition: background 0.3s ease;
}

/* Services */
.services {
  position: relative;
  height: 340vh;
  background: var(--cream);
  color: #1c2333;
}

.services__sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__bg-motif {
  position: absolute;
  top: 9%;
  right: 7.5%;
  width: 34%;
  filter: blur(3px);
  pointer-events: none;
}

.services__heading {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.services__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  margin: 0;
  color: #121a2e;
}

.services__kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #651c1c;
}

.services__rail {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 max(32px, calc(50vw - 590px));
  width: max-content;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.service-card {
  width: max-content;
  max-width: 90vw;
  flex-shrink: 0;
  background: #f6f1e4;
  border: 1px solid rgba(28, 35, 51, 0.16);
  padding: clamp(28px, 3.5vw, 48px);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  border-color: #c79a44;
  box-shadow: 0 24px 50px -24px rgba(28, 35, 51, 0.35);
}

.service-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(199, 154, 68, 0.45);
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.service-card__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: #651c1c;
  margin: 0;
  line-height: 1.2;
}

.service-card__num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(28, 35, 51, 0.45);
}

.service-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.service-card__item {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
  font-family: "Work Sans", sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(28, 35, 51, 0.85);
}

.service-card__bullet {
  color: #c79a44;
  font-size: 11px;
  margin-top: 5px;
}

/* CTA and footer */
.cta {
  position: relative;
  min-height: 458px;
  padding: 118px 24px 72px;
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.cta::after {
  content: "◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇  ◇";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  overflow: hidden;
  color: #bcae8d;
  font:
    13px/20px Georgia,
    serif;
  letter-spacing: 6px;
  text-align: center;
  white-space: nowrap;
  opacity: 0.78;
}

.cta-motif {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(460px, 42vw);
  transform: translate(-50%, -50%);
  opacity: 0.1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  margin: 0 0 54px;
  color: var(--gold);
}

.cta h2 {
  margin: 0 0 92px;
  font:
    600 clamp(37px, 3.15vw, 43px)/1.1 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.016em;
}

.button {
  display: inline-block;
  min-width: 420px;
  max-width: 100%;
  padding: 9px 18px;
  border: 1px solid #fbf6df;
  background: #e1b212;
  color: #203043;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--maroon);
  color: #fbf6df;
  box-shadow: 0 8px 22px rgba(20, 32, 46, 0.2);
}

.site-footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5.2vw;
  background: var(--ivory);
  color: #222;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--maroon);
}

/* Mobile: a single, deliberate layout. */
@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
    --header-h: 72px;
  }

  .site-header {
    position: relative;
    height: var(--header-h);
    background: var(--navy);
    border: 0;
    box-shadow: none;
  }

  .site-header.is-scrolled {
    background: var(--ivory);
    border-bottom: 1px solid rgba(20, 32, 46, 0.08);
    box-shadow: 0 5px 18px rgba(20, 32, 46, 0.05);
  }

  .header-row {
    height: var(--header-h);
    padding-inline: 24px;
  }

  .brand {
    opacity: 0;
    transform: none;
    pointer-events: none;
    transition:
      opacity 0.24s ease,
      transform 0.24s ease;
  }

  .site-header.is-scrolled .brand {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .brand-logo {
    width: 102px;
  }

  .brand-divider,
  .brand-tag {
    display: none;
  }

  .nav-toggle {
    display: grid;
    color: var(--ivory);
    transition: color 0.24s ease;
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-rows: 0fr;
    gap: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transform: none;
    transition: grid-template-rows 0.32s cubic-bezier(0.22, 0.9, 0.32, 1);
  }

  .site-nav.is-open {
    grid-template-rows: 1fr;
    border-bottom-color: rgba(20, 32, 46, 0.12);
  }

  .site-nav-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .site-nav a {
    padding: 24px var(--gutter);
    border-top: 1px solid rgba(20, 32, 46, 0.08);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-align: center;
    color: var(--ink);
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      color 0.2s ease;
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open a:nth-child(1) {
    transition-delay: 0.08s;
  }

  .site-nav.is-open a:nth-child(2) {
    transition-delay: 0.14s;
  }

  .hero {
    min-height: 680px;
    display: block;
    background: var(--navy);
  }

  .hero-motif {
    display: none;
  }

  .hero-copy {
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-logo {
    display: block;
    width: 170px;
    height: 88px;
    object-fit: contain;
    margin: 0 auto 34px;
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease;
  }

  .hero-copy.logo-handoff .hero-logo {
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  .hero-description {
    max-width: 430px;
    margin-top: 38px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero-divider {
    margin-top: 28px;
  }

  .hero-mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Trimmed to offset the taller (44px) tap targets below, so the hero
       block keeps the height it had. */
    gap: 0;
    margin-top: 32px;
  }

  .hero-mobile-actions a {
    /* Comfortable thumb target without changing the visual weight. */
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
  }

  .hero-mobile-actions .secondary {
    color: #fff;
  }

  .hero-mobile-actions .primary {
    color: var(--gold);
  }

  .culture .wrap {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: 520px;
    padding: 74px 24px 72px;
  }

  .culture h2 {
    /* The desktop rule sets nowrap for a one-line lockup; on a phone that
       pushes the headline straight past the viewport, so let it break. */
    white-space: normal;
    font-size: clamp(29px, 8.2vw, 42px);
    text-wrap: balance;
  }

  .culture-copy-row {
    display: block;
  }

  .culture-ornament {
    display: none;
  }

  .culture-text {
    width: 100%;
    max-width: min(420px, 100%);
    margin: auto;
    color: #d7d2ca;
    font-size: 16px;
    line-height: 2.05;
    letter-spacing: 0.025em;
    text-align: center;
  }

  .culture-p+.culture-p {
    margin-top: 24px;
  }

  .quote {
    min-height: 400px;
    padding: 40px 20px 32px;
    background:
      radial-gradient(circle at 15% 85%,
        rgba(227, 83, 34, 0.18) 0,
        rgba(227, 83, 34, 0.08) 22%,
        transparent 45%),
      linear-gradient(to bottom,
        var(--warm-cream) 0 calc(100% - 13px),
        var(--cream) calc(100% - 13px));
  }

  .quote-sun {
    left: 0;
    top: 10px;
    bottom: auto;
    width: min(320px, 78vw);
    height: auto;
    opacity: 0.18;
  }

  .quote-copy {
    width: min(94vw, 380px);
    margin: 0 auto;
    text-align: center;
    font-size: clamp(24px, 6.8vw, 31px);
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
  }

  .quote-tree {
    display: none;
  }

  /* Tenets: the desktop version pins for 6 screen-heights and flings four
     cards into a 2x2 grid sized off the viewport — at phone width that
     yields ~125px stamps holding full sentences. Drop the pin and let the
     cards stack as a normal, readable list. */
  .tenets {
    height: auto;
    padding: 66px 0 74px;
  }

  .tenets__sticky {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
  }

  .tenets__bg-motif {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    max-width: 68%;
    opacity: 0.5;
  }

  .tenets__heading {
    position: static;
    top: auto;
    margin-bottom: 34px;
    padding-inline: var(--gutter);
  }

  .tenets__title {
    font-size: clamp(30px, 8.6vw, 42px);
    margin: 0;
  }

  .tenets__deck {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-inline: var(--gutter);
  }

  /* Neutralise the inline transforms the pin script writes. */
  .tenets__card {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none !important;
    gap: 18px;
    padding: 22px 20px;
    align-items: center;
  }

  .tenets__card-num {
    font-size: 2.5rem;
  }

  .tenets__card-text {
    font-size: 1.06rem;
    line-height: 1.4;
  }

  /* Dots track pin progress; with no pin there is nothing to track. */
  .tenets__dots {
    display: none;
  }

  /* Services: same story — a horizontal rail dragged by vertical scroll
     fights native touch scrolling. Make it a real swipeable carousel. */
  .services {
    height: auto;
    padding: 64px 0 72px;
  }

  .services__sticky {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
  }

  .services__bg-motif {
    top: 6%;
    right: -4%;
    width: 62%;
    opacity: 0.45;
  }

  .services__heading {
    margin-bottom: 30px;
    padding-inline: var(--gutter);
  }

  .services__title {
    font-size: clamp(26px, 7.5vw, 36px);
  }

  .services__rail {
    width: auto;
    transform: none !important;
    gap: 16px;
    padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .services__rail::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    width: min(320px, 82vw);
    scroll-snap-align: center;
    padding: 26px 22px;
  }

  .service-card__title {
    font-size: 1.3rem;
  }

  .cta {
    min-height: 0;
    padding: 80px 24px 82px;
  }

  .cta .eyebrow {
    margin-bottom: 36px;
    font-size: 12px;
  }

  .cta h2 {
    margin-bottom: 48px;
    font-size: clamp(38px, 10.2vw, 45px);
    line-height: 1.09;
  }

  .cta-motif {
    width: min(340px, 72vw);
  }

  .button {
    width: min(100%, 370px);
    min-width: 0;
    padding-block: 15px;
    font-size: 13px;
  }

  .site-footer {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    font-size: 13px;
  }

  .footer-links {
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-inline: 8px;
  }
}

@media (min-width: 1101px) {
  .hero {
    height: 539px;
  }

  .culture {
    height: 428px;
  }

  .quote {
    height: 451px;
  }


  .cta {
    height: 458px;
  }

  .mobile-culture {
    display: none;
  }
}

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

  .site-header,
  .brand,
  .nav-toggle,
  .site-nav,
  .hero-logo,
  .button,
  .nav-toggle span {
    transition: none;
  }
}

/* contact.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

[id] {
  scroll-margin-top: var(--header-offset, 78px);
}

.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-deep);
}

.skip-link:focus {
  top: 16px;
}

/* Header (identical to index_beta_v3) */
.site-header {
  height: 78px;
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 32, 46, 0.08);
}

.header-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  width: 124px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--maroon);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Contact hero: navy talk panel + cream form panel */
.contact-hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42fr 58fr;
  background: var(--cream);
}

.talk-panel {
  background: var(--navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px clamp(28px, 4vw, 64px);
}

.talk-panel-inner {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.talk-panel .eyebrow {
  margin: 0 0 22px;
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 400;
}

.talk-panel h1 {
  margin: 0;
  font:
    600 clamp(30px, 2.7vw, 40px)/1.18 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.form-panel {
  background: #faf7f1;
  padding: 56px clamp(24px, 4vw, 64px) 64px;
}

.form-panel-inner {
  width: 100%;
  max-width: none;
}

.contact-form {
  margin: 0;
}

.field {
  margin: 0 0 26px;
}

.field label {
  display: block;
  margin-bottom: 11px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3c4658;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #f3ecdd;
  border: 1px solid rgba(20, 32, 46, 0.1);
  border-radius: 2px;
  font:
    500 15px/1.5 "Work Sans",
    Arial,
    sans-serif;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9a917d;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(219, 172, 24, 0.14);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  font-family: inherit;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #a5322c;
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.field-error {
  margin: 0;
  flex: 1;
  color: #a5322c;
  font-size: 12.5px;
  font-weight: 500;
  min-height: 1px;
}

.char-counter {
  flex: none;
  font-size: 12px;
  color: #8b8570;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.char-counter.is-near-limit {
  color: #a5322c;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 26px;
  border: 1px solid rgba(28, 35, 51, 0.22);
  background: #f3ecdd;
  color: #5c4620;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 35, 51, 0.14);
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
  transform: none;
  box-shadow: none;
}

.submit-btn .spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(92, 70, 32, 0.3);
  border-top-color: #5c4620;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.submit-btn.is-loading .spinner {
  display: inline-block;
}

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

.form-status {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 1.4em;
}

.form-status.success {
  color: #2f6b4a;
}

.form-status.error {
  color: #a5322c;
}

/* Divider */
.contact-divider {
  height: 13px;
  background-color: #faf7f1;
  background-image: radial-gradient(circle at 6px 6.5px,
      #b8201b 2.35px,
      transparent 2.55px);
  background-size: 12px 13px;
  background-repeat: repeat-x;
}

/* Direct lines */
.direct-lines {
  position: relative;
  overflow: hidden;
  background: var(--maroon);
  color: var(--ivory);
  padding: 88px 24px 96px;
}

.direct-lines::before,
.direct-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  opacity: 0.16;
  background: repeating-linear-gradient(135deg,
      #f0d9a0 0 3px,
      transparent 3px 16px);
  pointer-events: none;
}

.direct-lines::before {
  left: 0;
}

.direct-lines::after {
  right: 0;
}

.direct-lines .wrap {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
}

.direct-lines h2 {
  margin: 0 0 64px;
  font:
    600 clamp(32px, 3vw, 40px)/1.1 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.02em;
}

.direct-lines-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.direct-line h3 {
  margin: 0 0 10px;
  font:
    500 italic 25px/1 "Cormorant Garamond",
    Georgia,
    serif;
  font-weight: 500;
  color: var(--gold-soft);
}

.direct-line p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f1e9df;
}

/* Footer (identical to index_beta_v3) */
.site-footer {
  min-height: 78px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5.2vw;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--maroon);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (min-width: 1101px) {
  :root {
    --header-offset: 132px;
  }

  .site-header {
    height: 132px;
    position: sticky;
  }

  .header-row {
    height: 132px;
    padding-inline: clamp(18px, 2vw, 34px);
  }

  .brand-logo {
    width: 178px;
  }

  .brand {
    transform: translateX(-20px);
    overflow: visible;
  }

  .site-nav {
    transform: translateX(18px);
  }

  .site-nav-inner {
    gap: 86px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .contact-hero {
    min-height: 640px;
  }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    height: 72px;
  }

  .header-row {
    height: 72px;
  }

  .brand-logo {
    width: 102px;
  }

  .nav-toggle {
    display: grid;
    margin-right: 8px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-rows: 0fr;
    gap: 0;
    overflow: hidden;
    background: var(--ivory);
    border-bottom: 1px solid transparent;
    transition: grid-template-rows 0.15s linear;
  }

  .site-nav.is-open {
    grid-template-rows: 1fr;
    border-bottom-color: rgba(20, 32, 46, 0.12);
  }

  .site-nav-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .site-nav a {
    padding: 24px var(--gutter);
    border-top: 1px solid rgba(20, 32, 46, 0.08);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-align: center;
    color: var(--ink);
  }


  .contact-hero {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, var(--navy) 0%, #16224b 100%);
  }

  .talk-panel {
    padding: 56px 24px 40px;
    justify-content: center;
    text-align: center;
  }

  .talk-panel-inner {
    max-width: 340px;
    margin-inline: auto;
  }

  .talk-panel h1 {
    font-size: clamp(28px, 8vw, 36px);
    white-space: normal;
    line-height: 1.12;
  }

  .talk-panel .gold {
    white-space: nowrap;
  }

  .form-panel {
    background: #faf7f1;
    border-radius: 20px 20px 0 0;
    padding: 44px 24px 56px;
  }

  .form-panel-inner {
    max-width: 520px;
    margin-inline: auto;
  }

  .submit-btn {
    width: 100%;
  }

  .direct-lines {
    padding: 72px 20px 84px;
  }

  .direct-lines::before,
  .direct-lines::after {
    width: 34px;
    opacity: 0.12;
  }

  .direct-lines h2 {
    margin-bottom: 48px;
  }

  .direct-lines-grid {
    gap: 38px;
  }

  .site-footer {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-family: "Work Sans", Arial, sans-serif;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
    font-size: 13px;
  }
}

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

  .site-nav,
  .nav-toggle span,
  .button,
  .submit-btn {
    transition: none;
  }

  .submit-btn .spinner {
    animation: none;
  }
}

/* privacy_policy.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

[id] {
  scroll-margin-top: var(--header-offset, 78px);
}

.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-deep);
}

.skip-link:focus {
  top: 16px;
}

/* Header (identical to index_beta_v3) */
.site-header {
  height: 78px;
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 32, 46, 0.08);
}

.header-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  width: 124px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--maroon);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Contact hero: navy talk panel + cream form panel */
.contact-hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42fr 58fr;
  background: var(--cream);
}

.talk-panel {
  background: var(--navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px clamp(28px, 4vw, 64px);
}

.talk-panel-inner {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.talk-panel .eyebrow {
  margin: 0 0 22px;
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 400;
}

.talk-panel h1 {
  margin: 0;
  font:
    600 clamp(30px, 2.7vw, 40px)/1.18 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.form-panel {
  background: #faf7f1;
  padding: 56px clamp(24px, 4vw, 64px) 64px;
}

.form-panel-inner {
  width: 100%;
  max-width: none;
}

.contact-form {
  margin: 0;
}

.field {
  margin: 0 0 26px;
}

.field label {
  display: block;
  margin-bottom: 11px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3c4658;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #f3ecdd;
  border: 1px solid rgba(20, 32, 46, 0.1);
  border-radius: 2px;
  font:
    500 15px/1.5 "Work Sans",
    Arial,
    sans-serif;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9a917d;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(219, 172, 24, 0.14);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  font-family: inherit;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #a5322c;
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.field-error {
  margin: 0;
  flex: 1;
  color: #a5322c;
  font-size: 12.5px;
  font-weight: 500;
  min-height: 1px;
}

.char-counter {
  flex: none;
  font-size: 12px;
  color: #8b8570;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.char-counter.is-near-limit {
  color: #a5322c;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 26px;
  border: 1px solid rgba(28, 35, 51, 0.22);
  background: #f3ecdd;
  color: #5c4620;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 35, 51, 0.14);
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
  transform: none;
  box-shadow: none;
}

.submit-btn .spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(92, 70, 32, 0.3);
  border-top-color: #5c4620;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.submit-btn.is-loading .spinner {
  display: inline-block;
}

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

.form-status {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 1.4em;
}

.form-status.success {
  color: #2f6b4a;
}

.form-status.error {
  color: #a5322c;
}

/* Divider */
.contact-divider {
  height: 13px;
  background-color: #faf7f1;
  background-image: radial-gradient(circle at 6px 6.5px,
      #b8201b 2.35px,
      transparent 2.55px);
  background-size: 12px 13px;
  background-repeat: repeat-x;
}

/* Direct lines */
.direct-lines {
  position: relative;
  overflow: hidden;
  background: var(--maroon);
  color: var(--ivory);
  padding: 88px 24px 96px;
}

.direct-lines::before,
.direct-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  opacity: 0.16;
  background: repeating-linear-gradient(135deg,
      #f0d9a0 0 3px,
      transparent 3px 16px);
  pointer-events: none;
}

.direct-lines::before {
  left: 0;
}

.direct-lines::after {
  right: 0;
}

.direct-lines .wrap {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
}

.direct-lines h2 {
  margin: 0 0 64px;
  font:
    600 clamp(32px, 3vw, 40px)/1.1 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.02em;
}

.direct-lines-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.direct-line h3 {
  margin: 0 0 10px;
  font:
    500 italic 25px/1 "Cormorant Garamond",
    Georgia,
    serif;
  font-weight: 500;
  color: var(--gold-soft);
}

.direct-line p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f1e9df;
}

/* Footer (identical to index_beta_v3) */
.site-footer {
  min-height: 78px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5.2vw;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--maroon);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (min-width: 1101px) {
  :root {
    --header-offset: 132px;
  }

  .site-header {
    height: 132px;
    position: sticky;
  }

  .header-row {
    height: 132px;
    padding-inline: clamp(18px, 2vw, 34px);
  }

  .brand-logo {
    width: 178px;
  }

  .brand {
    transform: translateX(-20px);
    overflow: visible;
  }

  .site-nav {
    transform: translateX(18px);
  }

  .site-nav-inner {
    gap: 86px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .contact-hero {
    min-height: 640px;
  }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    height: 72px;
  }

  .header-row {
    height: 72px;
  }

  .brand-logo {
    width: 102px;
  }

  .nav-toggle {
    display: grid;
    margin-right: 8px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-rows: 0fr;
    gap: 0;
    overflow: hidden;
    background: var(--ivory);
    border-bottom: 1px solid transparent;
    transition: grid-template-rows 0.15s linear;
  }

  .site-nav.is-open {
    grid-template-rows: 1fr;
    border-bottom-color: rgba(20, 32, 46, 0.12);
  }

  .site-nav-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .site-nav a {
    padding: 24px var(--gutter);
    border-top: 1px solid rgba(20, 32, 46, 0.08);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-align: center;
    color: var(--ink);
  }


  .contact-hero {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, var(--navy) 0%, #16224b 100%);
  }

  .talk-panel {
    padding: 56px 24px 40px;
    justify-content: center;
    text-align: center;
  }

  .talk-panel-inner {
    max-width: 340px;
    margin-inline: auto;
  }

  .talk-panel h1 {
    font-size: clamp(28px, 8vw, 36px);
    white-space: normal;
    line-height: 1.12;
  }

  .talk-panel .gold {
    white-space: nowrap;
  }

  .form-panel {
    background: #faf7f1;
    border-radius: 20px 20px 0 0;
    padding: 44px 24px 56px;
  }

  .form-panel-inner {
    max-width: 520px;
    margin-inline: auto;
  }

  .submit-btn {
    width: 100%;
  }

  .direct-lines {
    padding: 72px 20px 84px;
  }

  .direct-lines::before,
  .direct-lines::after {
    width: 34px;
    opacity: 0.12;
  }

  .direct-lines h2 {
    margin-bottom: 48px;
  }

  .direct-lines-grid {
    gap: 38px;
  }

  .site-footer {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-family: "Work Sans", Arial, sans-serif;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
    font-size: 13px;
  }
}

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

  .site-nav,
  .nav-toggle span,
  .button,
  .submit-btn {
    transition: none;
  }

  .submit-btn .spinner {
    animation: none;
  }
}

.terms-page {
  background: #faf7f1;
  padding: 80px 0;
}

.terms-content {
  max-width: 980px;
  margin: 0 auto;
}

.terms-content h1 {
  font:
    600 clamp(40px, 4vw, 54px)/1.1 "Cormorant Garamond",
    serif;
  margin: 0 0 36px;
}

.terms-content h2 {
  font:
    600 28px/1.2 "Cormorant Garamond",
    serif;
  margin: 42px 0 14px;
}

.terms-content p {
  font:
    400 16px/1.8 "Work Sans",
    sans-serif;
  margin: 0 0 16px;
  color: #1c2333;
}

@media (max-width: 1100px) {
  .terms-page {
    padding: 56px 0;
  }

  .terms-content h1 {
    font-size: 38px;
  }

  .terms-content h2 {
    font-size: 24px;
  }
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 32, 46, 0.18);
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.94);
  color: var(--navy);
  box-shadow: 0 5px 16px rgba(20, 32, 46, 0.12);
  font:
    500 22px/1 Georgia,
    serif;
  opacity: 0.88;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold);
  color: var(--navy);
  opacity: 1;
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

/* terms_of_use.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

[id] {
  scroll-margin-top: var(--header-offset, 78px);
}

.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-deep);
}

.skip-link:focus {
  top: 16px;
}

/* Header (identical to index_beta_v3) */
.site-header {
  height: 78px;
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 32, 46, 0.08);
}

.header-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  width: 124px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--maroon);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Contact hero: navy talk panel + cream form panel */
.contact-hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42fr 58fr;
  background: var(--cream);
}

.talk-panel {
  background: var(--navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px clamp(28px, 4vw, 64px);
}

.talk-panel-inner {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.talk-panel .eyebrow {
  margin: 0 0 22px;
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 400;
}

.talk-panel h1 {
  margin: 0;
  font:
    600 clamp(30px, 2.7vw, 40px)/1.18 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.form-panel {
  background: #faf7f1;
  padding: 56px clamp(24px, 4vw, 64px) 64px;
}

.form-panel-inner {
  width: 100%;
  max-width: none;
}

.contact-form {
  margin: 0;
}

.field {
  margin: 0 0 26px;
}

.field label {
  display: block;
  margin-bottom: 11px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3c4658;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #f3ecdd;
  border: 1px solid rgba(20, 32, 46, 0.1);
  border-radius: 2px;
  font:
    500 15px/1.5 "Work Sans",
    Arial,
    sans-serif;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9a917d;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(219, 172, 24, 0.14);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  font-family: inherit;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #a5322c;
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.field-error {
  margin: 0;
  flex: 1;
  color: #a5322c;
  font-size: 12.5px;
  font-weight: 500;
  min-height: 1px;
}

.char-counter {
  flex: none;
  font-size: 12px;
  color: #8b8570;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.char-counter.is-near-limit {
  color: #a5322c;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 26px;
  border: 1px solid rgba(28, 35, 51, 0.22);
  background: #f3ecdd;
  color: #5c4620;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 35, 51, 0.14);
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
  transform: none;
  box-shadow: none;
}

.submit-btn .spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(92, 70, 32, 0.3);
  border-top-color: #5c4620;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.submit-btn.is-loading .spinner {
  display: inline-block;
}

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

.form-status {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 1.4em;
}

.form-status.success {
  color: #2f6b4a;
}

.form-status.error {
  color: #a5322c;
}

/* Divider */
.contact-divider {
  height: 13px;
  background-color: #faf7f1;
  background-image: radial-gradient(circle at 6px 6.5px,
      #b8201b 2.35px,
      transparent 2.55px);
  background-size: 12px 13px;
  background-repeat: repeat-x;
}

/* Direct lines */
.direct-lines {
  position: relative;
  overflow: hidden;
  background: var(--maroon);
  color: var(--ivory);
  padding: 88px 24px 96px;
}

.direct-lines::before,
.direct-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  opacity: 0.16;
  background: repeating-linear-gradient(135deg,
      #f0d9a0 0 3px,
      transparent 3px 16px);
  pointer-events: none;
}

.direct-lines::before {
  left: 0;
}

.direct-lines::after {
  right: 0;
}

.direct-lines .wrap {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
}

.direct-lines h2 {
  margin: 0 0 64px;
  font:
    600 clamp(32px, 3vw, 40px)/1.1 "Cormorant Garamond",
    Georgia,
    serif;
  letter-spacing: 0.02em;
}

.direct-lines-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.direct-line h3 {
  margin: 0 0 10px;
  font:
    500 italic 25px/1 "Cormorant Garamond",
    Georgia,
    serif;
  font-weight: 500;
  color: var(--gold-soft);
}

.direct-line p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f1e9df;
}

/* Footer (identical to index_beta_v3) */
.site-footer {
  min-height: 78px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5.2vw;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--maroon);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (min-width: 1101px) {
  :root {
    --header-offset: 132px;
  }

  .site-header {
    height: 132px;
    position: sticky;
  }

  .header-row {
    height: 132px;
    padding-inline: clamp(18px, 2vw, 34px);
  }

  .brand-logo {
    width: 178px;
  }

  .brand {
    transform: translateX(-20px);
    overflow: visible;
  }

  .site-nav {
    transform: translateX(18px);
  }

  .site-nav-inner {
    gap: 86px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .contact-hero {
    min-height: 640px;
  }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    height: 72px;
  }

  .header-row {
    height: 72px;
  }

  .brand-logo {
    width: 102px;
  }

  .nav-toggle {
    display: grid;
    margin-right: 8px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-rows: 0fr;
    gap: 0;
    overflow: hidden;
    background: var(--ivory);
    border-bottom: 1px solid transparent;
    transition: grid-template-rows 0.15s linear;
  }

  .site-nav.is-open {
    grid-template-rows: 1fr;
    border-bottom-color: rgba(20, 32, 46, 0.12);
  }

  .site-nav-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .site-nav a {
    padding: 24px var(--gutter);
    border-top: 1px solid rgba(20, 32, 46, 0.08);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-align: center;
    color: var(--ink);
  }


  .contact-hero {
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, var(--navy) 0%, #16224b 100%);
  }

  .talk-panel {
    padding: 56px 24px 40px;
    justify-content: center;
    text-align: center;
  }

  .talk-panel-inner {
    max-width: 340px;
    margin-inline: auto;
  }

  .talk-panel h1 {
    font-size: clamp(28px, 8vw, 36px);
    white-space: normal;
    line-height: 1.12;
  }

  .talk-panel .gold {
    white-space: nowrap;
  }

  .form-panel {
    background: #faf7f1;
    border-radius: 20px 20px 0 0;
    padding: 44px 24px 56px;
  }

  .form-panel-inner {
    max-width: 520px;
    margin-inline: auto;
  }

  .submit-btn {
    width: 100%;
  }

  .direct-lines {
    padding: 72px 20px 84px;
  }

  .direct-lines::before,
  .direct-lines::after {
    width: 34px;
    opacity: 0.12;
  }

  .direct-lines h2 {
    margin-bottom: 48px;
  }

  .direct-lines-grid {
    gap: 38px;
  }

  .site-footer {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-family: "Work Sans", Arial, sans-serif;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
    font-size: 13px;
  }
}

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

  .site-nav,
  .nav-toggle span,
  .button,
  .submit-btn {
    transition: none;
  }

  .submit-btn .spinner {
    animation: none;
  }
}

.terms-page {
  background: #faf7f1;
  padding: 80px 0;
}

.terms-content {
  max-width: 980px;
  margin: 0 auto;
}

.terms-content h1 {
  font:
    600 clamp(40px, 4vw, 54px)/1.1 "Cormorant Garamond",
    serif;
  margin: 0 0 36px;
}

.terms-content h2 {
  font:
    600 28px/1.2 "Cormorant Garamond",
    serif;
  margin: 42px 0 14px;
}

.terms-content p {
  font:
    400 16px/1.8 "Work Sans",
    sans-serif;
  margin: 0 0 16px;
  color: #1c2333;
}

@media (max-width: 1100px) {
  .terms-page {
    padding: 56px 0;
  }

  .terms-content h1 {
    font-size: 38px;
  }

  .terms-content h2 {
    font-size: 24px;
  }
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 32, 46, 0.18);
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.94);
  color: var(--navy);
  box-shadow: 0 5px 16px rgba(20, 32, 46, 0.12);
  font:
    500 22px/1 Georgia,
    serif;
  opacity: 0.88;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold);
  color: var(--navy);
  opacity: 1;
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

/* contact_v1.css — v1 contact page design, ported as-is */
body.page-contact .contact-hero {
  padding: 72px 0;
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
}

body.page-contact .contact-hero .hero-logo {
  height: 64px;
  margin: 0 auto 28px;
}

body.page-contact .contact-hero .eyebrow {
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.05em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gold);
}

body.page-contact .contact-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 20px;
}

body.page-contact .contact-hero .hero-lede {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.95rem;
  color: #e1e1d2;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

@media (min-width: 861px) {
  .contact-hero {
    position: sticky;
    top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 18vh;
    box-shadow: 0 -32px 56px -24px rgba(6, 9, 18, 0.4);
  }

  .contact-hero>.wrap {
    width: 100%;
  }
}

/* v1 contact form styles (scoped to page-contact) */
body.page-contact .contact-hero {
  padding: 140px 0 72px;
}

body.page-contact .contact-hero .hero-logo {
  margin-left: 0;
  height: 64px;
}

body.page-contact .contact-hero .hero-lede {
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
}

body.page-contact .contact-wrap {
  max-width: 760px;
}

body.page-contact .contact-form {
  background: var(--ivory);
  border: 1px solid var(--cream-deep);
  padding: 44px;
  border-radius: 4px;
}

body.page-contact .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

body.page-contact .field {
  display: flex;
  flex-direction: column;
}

body.page-contact .field--full {
  margin-bottom: 24px;
}

body.page-contact .field label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  margin-bottom: 8px;
}

body.page-contact .field input,
body.page-contact .field select,
body.page-contact .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--cream-deep);
  background: var(--ivory);
  border-radius: 2px;
  color: var(--ink);
  width: 100%;
}

body.page-contact .field input:focus,
body.page-contact .field select:focus,
body.page-contact .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

body.page-contact .field textarea {
  resize: vertical;
  min-height: 130px;
}

body.page-contact .form-note {
  color: var(--body);
  font-size: 0.95rem;
  margin-top: 16px;
}

body.page-contact .band--cream {
  background: var(--cream);
  padding: 72px 0;
  display: flex;
  justify-content: center;
}

/* Contact card */
body.page-contact .contact-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: var(--ivory);
  padding: 44px;
  border-radius: 4px;
  border: 1px solid #ece2c9;
  box-shadow: 0 4px 15px rgba(19, 32, 46, 0.06);
}

body.page-contact .header-section {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #ece2c9;
  padding-bottom: 24px;
}

body.page-contact .header-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

body.page-contact .header-section .subtitle {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #5e1a24;
  margin-bottom: 12px;
}

body.page-contact .header-section .description {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(28, 35, 51, 0.75);
  max-width: 92%;
  margin: 0 auto 18px;
}

body.page-contact .highlight-box {
  background: var(--cream);
  padding: 14px 16px;
  border-radius: 4px;
  border-left: 4px solid var(--gold);
  text-align: left;
}

body.page-contact .highlight-box p {
  margin: 0 0 4px;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
}

body.page-contact .highlight-box .confidential {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(28, 35, 51, 0.7);
}

/* Form */
body.page-contact .contact-form {
  display: flex;
  flex-direction: column;
}

body.page-contact .form-group {
  margin-bottom: 20px;
}

body.page-contact .form-row {
  display: flex;
  gap: 20px;
}

body.page-contact .form-row .form-group {
  flex: 1;
}

body.page-contact .contact-form label {
  display: block;
  margin-bottom: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5e1a24;
}

body.page-contact .contact-form input,
body.page-contact .contact-form select,
body.page-contact .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ece2c9;
  border-radius: 2px;
  background: #fff;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body.page-contact .contact-form input:focus,
body.page-contact .contact-form select:focus,
body.page-contact .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

body.page-contact .contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

body.page-contact .submit-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 20px;
  border: none;
  border-radius: 2px;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

body.page-contact .submit-btn:hover {
  background: #d4af37;
}

body.page-contact .submit-btn:active {
  transform: scale(0.98);
}

@media (max-width: 700px) {
  body.page-contact .form-row {
    flex-direction: column;
    gap: 0;
  }

  body.page-contact .contact-card {
    padding: 26px;
  }

  body.page-contact .header-section h2 {
    font-size: 1.8rem;
  }
}