:root {
  --ink: #211d19;
  --charcoal: #25231f;
  --charcoal-deep: #171614;
  --paper: #f5efe3;
  --paper-light: #fffaf0;
  --paper-muted: #ebe1d1;
  --burgundy: #68293a;
  --burgundy-deep: #4b1c29;
  --green: #1c493d;
  --green-deep: #14372f;
  --brass: #c39a54;
  --brass-light: #e4c88d;
  --muted: #6f665d;
  --line: rgba(33, 29, 25, 0.2);
  --line-light: rgba(255, 250, 240, 0.22);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", Arial, Helvetica, sans-serif;
  --page-padding: clamp(20px, 5vw, 76px);
  --section-space: clamp(72px, 9vw, 132px);
  --max-width: 1520px;
}

* {
  box-sizing: border-box;
}

*[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--charcoal-deep);
  background: var(--paper-light);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px var(--page-padding);
  color: var(--paper-light);
  background: rgba(23, 22, 20, 0.96);
  border-bottom: 1px solid rgba(195, 154, 84, 0.45);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-light);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--brass-light);
  border: 1px solid var(--brass);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1;
}

.brand-copy small {
  margin-top: 4px;
  color: #d9c9ad;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
}

.site-nav a {
  color: #eee4d3;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--brass-light);
}

.site-nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  color: #1d1a16;
  background: var(--brass);
  border: 1px solid var(--brass);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--brass-light);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--paper-light);
  background: transparent;
  border: 1px solid rgba(228, 200, 141, 0.55);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr);
  min-height: calc(100vh - 82px);
  color: var(--paper-light);
  background: var(--charcoal);
}

.hero-copy {
  align-self: center;
  padding: clamp(64px, 8vw, 124px) clamp(30px, 5vw, 82px);
}

.eyebrow,
.section-kicker,
.card-label,
.story-context {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.audience-card h3,
.program-grid h3,
.about-copy h2,
.reviews-lead h2,
.faq-layout h2,
.quote-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 6.2vw, 7.2rem);
  line-height: 0.87;
}

.hero-lede {
  max-width: 690px;
  margin: 30px 0 0;
  color: #eee2ce;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: #1f1b16;
  background: var(--brass);
  border-color: var(--brass);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brass-light);
}

.button-secondary {
  color: var(--paper-light);
  background: transparent;
  border-color: rgba(255, 250, 240, 0.5);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--charcoal-deep);
  background: var(--paper-light);
}

.button-light {
  color: var(--green-deep);
  background: var(--paper-light);
  border-color: var(--paper-light);
}

.button-dark {
  color: var(--paper-light);
  background: var(--charcoal-deep);
  border-color: var(--charcoal-deep);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 670px;
  margin: 44px 0 0;
  border-top: 1px solid rgba(195, 154, 84, 0.5);
  border-bottom: 1px solid rgba(195, 154, 84, 0.5);
}

.proof-strip div {
  padding: 18px 16px;
  border-right: 1px solid rgba(195, 154, 84, 0.34);
}

.proof-strip div:first-child {
  padding-left: 0;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip dt {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
}

.proof-strip dd {
  margin: 6px 0 0;
  color: #cfc3b0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 22, 20, 0.08);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 82px);
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.88) contrast(1.05);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 54px);
  bottom: clamp(20px, 4vw, 54px);
  left: clamp(20px, 4vw, 54px);
  max-width: 520px;
  padding: 20px 22px;
  color: var(--paper-light);
  background: rgba(23, 22, 20, 0.88);
  border-left: 3px solid var(--brass);
}

.hero-visual figcaption strong,
.hero-visual figcaption span {
  display: block;
}

.hero-visual figcaption strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-visual figcaption span {
  margin-top: 4px;
  color: #e5d8c2;
  font-size: 0.95rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  color: var(--paper-light);
  background: var(--green);
  border-top: 1px solid rgba(195, 154, 84, 0.55);
  border-bottom: 1px solid rgba(195, 154, 84, 0.55);
}

.trust-band p {
  min-height: 92px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px clamp(20px, 3vw, 44px);
  border-right: 1px solid rgba(255, 250, 240, 0.18);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.35;
}

.trust-band p:last-child {
  border-right: 0;
}

.section {
  padding: var(--section-space) var(--page-padding);
}

.section > * {
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading.compact {
  margin-bottom: 40px;
}

.section-heading h2,
.about-copy h2,
.reviews-lead h2,
.faq-layout h2,
.quote-intro h2 {
  font-size: clamp(3rem, 5.2vw, 6rem);
  line-height: 0.93;
}

.section-heading > p,
.section p,
.faq-layout > div:first-child > p,
.quote-intro > p {
  color: var(--muted);
}

.section-heading > p {
  margin: 0;
  font-size: 1.04rem;
}

.media-intro {
  color: var(--paper-light);
  background: var(--charcoal-deep);
}

.media-intro .section-heading > p,
.media-intro p {
  color: #cfc3b0;
}

.featured-video-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
}

.video-nav-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--brass-light);
  background: rgba(11, 10, 9, 0.92);
  border: 1px solid rgba(228, 200, 141, 0.62);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.video-nav-button .material-symbols-outlined {
  font-size: 2rem;
}

.video-nav-button:hover {
  color: var(--charcoal-deep);
  background: var(--brass-light);
  border-color: var(--brass-light);
  transform: scale(1.06);
}

.video-nav-button:active {
  transform: scale(0.98);
}

@media (min-width: 1181px) {
  .featured-video-shell {
    position: relative;
    left: 50%;
    width: min(calc(100% + 152px), calc(100vw - 32px));
    max-width: calc(var(--max-width) + 152px);
    transform: translateX(-50%);
  }
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  border: 1px solid rgba(195, 154, 84, 0.46);
  background: #0b0a09;
}

.video-frame {
  min-width: 0;
  background: #000;
}

.featured-video video {
  width: 100%;
  height: 100%;
  min-height: 460px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.video-frame.is-portrait,
.video-frame.is-square {
  display: grid;
  place-items: center;
  padding: clamp(16px, 2vw, 28px);
  background:
    radial-gradient(circle at 50% 35%, rgba(195, 154, 84, 0.1), transparent 48%),
    #000;
}

.video-frame.is-portrait video {
  width: min(100%, 430px);
  height: auto;
  min-height: 0;
  max-height: min(78vh, 760px);
  aspect-ratio: var(--video-aspect-ratio, 9 / 16);
}

.video-frame.is-square video {
  width: min(100%, 680px);
  height: auto;
  min-height: 0;
  max-height: min(72vh, 680px);
  aspect-ratio: var(--video-aspect-ratio, 1 / 1);
}

.video-caption {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
  border-left: 1px solid rgba(195, 154, 84, 0.4);
}

.video-caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
}

.video-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.video-card {
  position: relative;
  min-height: 198px;
  padding: 0;
  overflow: hidden;
  color: var(--paper-light);
  background: #0b0a09;
  border: 1px solid rgba(195, 154, 84, 0.3);
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 198px;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 160ms ease, transform 180ms ease;
}

.video-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  color: var(--paper-light);
  background: rgba(23, 22, 20, 0.84);
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.video-card:hover img,
.video-card:focus-visible img,
.video-card.is-active img {
  opacity: 1;
  transform: scale(1.025);
}

.video-card.is-active {
  border-color: var(--brass-light);
}

.text-button {
  display: block;
  margin: 24px auto 0;
  padding: 10px 2px;
  color: var(--brass-light);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  cursor: pointer;
}

.audience-section {
  background: var(--paper-light);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.audience-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 72px);
}

.audience-card-community {
  color: var(--paper-light);
  background: var(--green);
}

.audience-card-private {
  color: var(--ink);
  background: var(--paper-muted);
}

.audience-card + .audience-card {
  border-left: 1px solid var(--line);
}

.audience-card h3 {
  max-width: 620px;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 0.95;
}

.audience-card p {
  max-width: 660px;
  margin: 24px 0 0;
}

.audience-card-community p,
.audience-card-community li {
  color: #e7dcc8;
}

.audience-card-private p,
.audience-card-private li {
  color: #5b544d;
}

.audience-card ul {
  display: grid;
  gap: 8px;
  margin: 28px 0 34px;
  padding-left: 22px;
}

.audience-card .button {
  margin-top: auto;
}

.programs-section {
  background: var(--paper);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.program-grid article {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper-light);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.program-number {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.program-grid h3 {
  margin-top: 68px;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 0.98;
}

.program-grid p {
  margin: 20px 0 28px;
  font-size: 0.98rem;
}

.program-grid a {
  margin-top: auto;
  color: var(--burgundy);
  font-weight: 700;
  text-underline-offset: 5px;
}

.price-note {
  margin-top: 22px;
  padding: 18px 20px;
  color: var(--paper-light);
  background: var(--burgundy-deep);
}

.price-note p {
  margin: 0;
  color: inherit;
}

.price-note strong {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.about-section {
  color: var(--paper-light);
  background: var(--burgundy-deep);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 7vw, 106px);
  align-items: center;
}

.about-copy h2 {
  max-width: 720px;
}

.about-copy p {
  max-width: 640px;
  color: #e5d8c2;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.about-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 240, 0.28);
  filter: saturate(0.88) contrast(1.04);
}

.about-gallery img:first-child {
  grid-row: span 2;
  height: 532px;
}

.process-section {
  background: var(--paper-light);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: var(--max-width);
  margin-block: 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.process-list h3 {
  margin: 72px 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.1vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
}

.process-list p {
  margin: 0;
  font-size: 0.96rem;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 106px);
  color: var(--paper-light);
  background: var(--green-deep);
}

.reviews-section > * {
  max-width: none;
  margin: 0;
}

.reviews-lead {
  align-self: start;
}

.reviews-lead p {
  color: #dbcfbd;
}

.review-rating {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin: 36px 0 0;
  padding: 20px 0;
  border-top: 1px solid rgba(195, 154, 84, 0.5);
  border-bottom: 1px solid rgba(195, 154, 84, 0.5);
}

.review-rating strong {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 600;
  line-height: 1;
}

.review-rating span {
  color: #cfc3b0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 240, 0.22);
  border-left: 1px solid rgba(255, 250, 240, 0.22);
}

.story-grid article {
  min-height: 216px;
  padding: clamp(22px, 2.4vw, 32px);
  border-right: 1px solid rgba(255, 250, 240, 0.22);
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
}

.story-grid h3 {
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 1;
}

.story-grid p:last-child {
  margin-bottom: 0;
  color: #d8cdbb;
  font-size: 0.9rem;
  line-height: 1.42;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 104px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  flex: 0 0 auto;
  color: var(--burgundy);
  font-family: "Material Symbols Outlined";
  font-size: 1.75rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 32;
  transition: transform 180ms ease;
}

.faq-item button:hover .faq-icon,
.faq-item button:focus-visible .faq-icon {
  transform: scale(1.12);
}

.faq-item [data-faq-answer] {
  padding: 0 18% 24px 0;
}

.faq-item [data-faq-answer] p {
  margin: 0;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 7vw, 108px);
  color: var(--paper-light);
  background: var(--charcoal-deep);
}

.quote-section > * {
  max-width: none;
  margin: 0;
}

.quote-intro {
  align-self: start;
  position: sticky;
  top: 118px;
}

.quote-intro > p {
  color: #d6cab8;
}

.quote-contact {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 22px;
  color: var(--paper-light);
  background: rgba(255, 250, 240, 0.045);
  border: 1px solid rgba(195, 154, 84, 0.5);
}

.quote-contact strong {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.quote-contact a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--paper-light);
  font-weight: 700;
  text-decoration-color: rgba(217, 181, 116, 0.7);
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.quote-contact a:hover,
.quote-contact a:focus-visible {
  color: var(--brass-light);
}

.quote-contact .material-symbols-outlined {
  color: var(--brass-light);
  font-size: 1.2rem;
  text-decoration: none;
}

.quote-reassurance {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(195, 154, 84, 0.5);
}

.quote-reassurance strong {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.quote-reassurance p {
  margin: 7px 0 0;
  color: #d6cab8;
  font-size: 0.95rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper-light);
  border-top: 4px solid var(--brass);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.quote-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-form legend,
.quote-form > label {
  font-size: 0.88rem;
  font-weight: 700;
}

.buyer-fieldset legend {
  margin-bottom: 12px;
}

.buyer-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.buyer-options label {
  position: relative;
  cursor: pointer;
}

.buyer-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.buyer-options label > span {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.buyer-options label > span strong,
.buyer-options label > span small {
  display: block;
}

.buyer-options label > span strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.05;
}

.buyer-options label > span small {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.25;
}

.buyer-options input:checked + span {
  color: var(--paper-light);
  background: var(--green);
  border-color: var(--green);
}

.buyer-options input:checked + span small {
  color: #e0d6c5;
}

.buyer-options input:focus-visible + span {
  outline: 3px solid var(--burgundy);
  outline-offset: 3px;
}

.quote-form > label {
  display: grid;
  gap: 7px;
}

.field-caption {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1.2;
}

.required-mark {
  color: var(--burgundy);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(33, 29, 25, 0.34);
  border-radius: 0;
}

.quote-form input:not([type="radio"]):not([type="checkbox"]),
.quote-form select {
  height: 50px;
  min-height: 50px;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(33, 29, 25, 0.6);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--burgundy);
  outline: 2px solid rgba(104, 41, 58, 0.22);
  outline-offset: 1px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.quote-form .button {
  min-height: 56px;
}

.quote-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 0;
}

.form-status:not(:empty) {
  padding: 16px 18px;
  color: var(--green-deep);
  background: #e7efe9;
  border-left: 4px solid var(--green);
  font-weight: 600;
}

.form-status.is-error:not(:empty) {
  color: #70202b;
  background: #f5e3e0;
  border-left-color: #9b3444;
}

.site-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px var(--page-padding);
  color: var(--paper-light);
  background: #0e0d0c;
  border-top: 1px solid rgba(195, 154, 84, 0.5);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--brass);
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-brand span,
.site-footer p {
  color: #cfc3b0;
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brass-light);
  font-weight: 700;
  text-underline-offset: 5px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 15px;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }

  .program-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-grid article,
  .process-list li {
    min-height: 330px;
  }

  .program-grid h3,
  .process-list h3 {
    margin-top: 44px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px var(--page-padding) 24px;
    background: rgba(23, 22, 20, 0.99);
    border-bottom: 1px solid rgba(195, 154, 84, 0.45);
    transform: translateY(-125%);
    transition: transform 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 250, 240, 0.12);
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 14px;
    border-bottom: 1px solid var(--brass);
  }

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

  .hero-copy {
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .hero-visual img {
    min-height: 580px;
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band p:nth-child(2) {
    border-right: 0;
  }

  .trust-band p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  }

  .section-heading,
  .featured-video,
  .about-layout,
  .reviews-section,
  .faq-layout,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .video-caption {
    border-top: 1px solid rgba(195, 154, 84, 0.4);
    border-left: 0;
  }

  .video-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .audience-card + .audience-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-gallery {
    max-width: 780px;
  }

  .quote-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
    line-height: 0.9;
  }

  .hero-lede {
    font-size: 1.25rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:first-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(195, 154, 84, 0.34);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .hero-visual img {
    min-height: 480px;
    object-position: 56% center;
  }

  .hero-visual figcaption {
    padding: 16px 17px;
  }

  .trust-band,
  .video-wall,
  .program-grid,
  .process-list,
  .story-grid,
  .quote-form,
  .buyer-options {
    grid-template-columns: 1fr;
  }

  .trust-band p,
  .trust-band p:nth-child(2) {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  }

  .trust-band p:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .about-copy h2,
  .reviews-lead h2,
  .faq-layout h2,
  .quote-intro h2 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .featured-video video {
    min-height: 240px;
  }

  .featured-video-shell {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .featured-video {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .video-nav-button {
    grid-row: 2;
    width: 48px;
    height: 48px;
  }

  .video-nav-previous {
    justify-self: start;
  }

  .video-nav-next {
    justify-self: end;
  }

  .video-card,
  .video-card img {
    min-height: 188px;
    height: 188px;
  }

  .audience-card {
    min-height: 0;
    padding: 38px 26px;
  }

  .audience-card h3 {
    font-size: 2.7rem;
  }

  .audience-card .button {
    width: 100%;
  }

  .program-grid article,
  .process-list li,
  .story-grid article {
    min-height: 0;
  }

  .program-grid h3,
  .process-list h3,
  .story-grid h3 {
    margin-top: 30px;
  }

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

  .about-gallery img,
  .about-gallery img:first-child {
    height: 310px;
    grid-row: auto;
  }

  .faq-item button {
    align-items: flex-start;
  }

  .faq-icon {
    margin-top: 5px;
  }

  .faq-item [data-faq-answer] {
    padding-right: 0;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
