:root {
  --paper: #f4efe7;
  --paper-deep: #ebe2d7;
  --cream: #fbf8f2;
  --champagne: #d8c3a5;
  --taupe: #9b8878;
  --caramel: #a46f48;
  --espresso: #2b211c;
  --brown: #5e493c;
  --muted: #73675f;
  --line: #d7ccc0;
  --white: #fffdf9;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--espresso);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a { color: inherit; }
button { font: inherit; }
figure { margin: 0; }

::selection {
  background: var(--espresso);
  color: var(--paper);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: .8rem 1rem;
  background: var(--espresso);
  color: var(--white);
}

.skip-link:focus { top: 1rem; }

.shell {
  width: min(1220px, calc(100% - clamp(34px, 6vw, 88px)));
  margin-inline: auto;
}

.proposal-ribbon {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .45rem 1rem;
  background: var(--espresso);
  color: var(--paper);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(94, 73, 60, .16);
  background: rgba(244, 239, 231, .94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: grid;
  text-decoration: none;
  line-height: .85;
}

.brand span {
  font: 600 1.75rem/1 var(--serif);
  letter-spacing: -.035em;
}

.brand small {
  margin-top: .35rem;
  color: var(--caramel);
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.eyebrow {
  margin: 0 0 .95rem;
  color: var(--caramel);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .7fr);
  gap: clamp(3.5rem, 8vw, 7.5rem);
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero h1 {
  margin: 0;
  max-width: 840px;
  font: 600 clamp(4.8rem, 8.4vw, 8.3rem)/.86 var(--serif);
  letter-spacing: -.055em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--caramel);
  font-weight: 500;
}

.hero-intro {
  max-width: 680px;
  margin: 1.8rem 0 1.35rem;
  color: var(--brown);
  font: 500 clamp(1.2rem, 1.95vw, 1.48rem)/1.5 var(--serif);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  margin-bottom: 1.85rem;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 1rem;
  color: var(--caramel);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.3rem;
  border: 1px solid var(--espresso);
  background: transparent;
  color: var(--espresso);
  text-decoration: none;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-primary {
  background: var(--espresso);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--brown);
}

.text-link {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.text-link.light { color: var(--paper); }

.hero-photo {
  justify-self: end;
  width: min(100%, 500px);
}

.hero-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  background: var(--paper-deep);
}

.hero-photo figcaption {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .63rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.statement {
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.statement-inner {
  padding-block: clamp(4.7rem, 8vw, 7.7rem);
}

.statement blockquote {
  margin: 0;
  max-width: 1080px;
  font: 500 clamp(2.8rem, 5.6vw, 5.7rem)/1 var(--serif);
  letter-spacing: -.043em;
}

.statement blockquote em {
  display: block;
  margin-top: .12em;
  color: var(--caramel);
  font-weight: 500;
}

.editorial-image {
  overflow: hidden;
  background: #b4a89d;
}

.editorial-image img {
  width: 100%;
  height: min(58vw, 720px);
  object-fit: cover;
  object-position: center 48%;
}

.image-caption {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(5rem, 8.5vw, 8rem);
}

.chapter-heading {
  max-width: 860px;
  margin-bottom: clamp(2.75rem, 5vw, 4.75rem);
}

.chapter-heading h2,
.section-heading h2,
.recommendation h2,
.reserve h2 {
  margin: 0;
  font: 600 clamp(3.1rem, 5.5vw, 5.6rem)/.96 var(--serif);
  letter-spacing: -.043em;
}

.chapter-heading > p:last-child {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .64fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.75rem);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.collections,
.film-options {
  display: grid;
  gap: 1.25rem;
}

.collection {
  position: relative;
  padding: clamp(1.6rem, 3.6vw, 3.2rem);
  border: 1px solid var(--line);
  background: rgba(251, 248, 242, .55);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.collection.featured::before {
  content: "Recommended";
  position: absolute;
  top: 0;
  right: clamp(1.4rem, 3vw, 2.4rem);
  transform: translateY(-50%);
  padding: .42rem .62rem;
  background: var(--caramel);
  color: var(--white);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.collection.is-selected {
  border-color: var(--caramel);
  background: var(--cream);
  box-shadow: 0 16px 45px rgba(43, 33, 28, .07);
}

.collection-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.collection-index {
  margin: 0 0 .3rem;
  color: var(--caramel);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
}

.collection h3 {
  margin: 0;
  font: 600 clamp(2.9rem, 5.2vw, 5.1rem)/.9 var(--serif);
  letter-spacing: -.04em;
}

.collection-subtitle {
  margin: .25rem 0 0;
  color: var(--brown);
  font: italic 500 1.45rem/1.2 var(--serif);
}

.collection-tone {
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection-price {
  display: grid;
  justify-items: end;
  gap: .3rem;
  text-align: right;
}

.collection-price span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection-price strong {
  font: 600 clamp(2rem, 3vw, 3rem)/1 var(--serif);
  letter-spacing: -.03em;
}

.collection-description {
  max-width: 920px;
  margin: 1.8rem 0 2rem;
  color: var(--brown);
  font: 500 clamp(1.18rem, 1.7vw, 1.4rem)/1.5 var(--serif);
}

.collection-details {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.collection-details.single-column {
  grid-template-columns: 1fr;
}

.collection-details h4 {
  margin: 0 0 .8rem;
  color: var(--caramel);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

.collection-details li {
  position: relative;
  margin: 0 0 .55rem;
  padding-left: 1rem;
  color: var(--muted);
  font-size: .84rem;
}

.collection-details li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--caramel);
}

.select-collection {
  margin-top: 1.8rem;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid var(--espresso);
  background: transparent;
  color: var(--espresso);
  padding: .2rem 0;
  cursor: pointer;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection.is-selected .select-collection::after {
  content: " · Selected";
  color: var(--caramel);
}

.film-section {
  padding-block: clamp(5rem, 8.5vw, 8rem);
  background: var(--paper-deep);
}

.film-heading .eyebrow {
  color: var(--brown);
}

.video-card {
  background: rgba(244, 239, 231, .72);
}

.recommendation {
  background: var(--espresso);
  color: var(--paper);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
  gap: clamp(3rem, 9vw, 8rem);
  padding-block: clamp(5rem, 8.5vw, 8rem);
}

.recommendation .eyebrow {
  color: var(--champagne);
}

.recommendation h2 {
  max-width: 680px;
}

.recommendation-copy {
  align-self: end;
  max-width: 560px;
}

.recommendation-copy p {
  margin: 0 0 1.5rem;
  color: rgba(244, 239, 231, .75);
  font-size: .9rem;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.priority-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  background: var(--cream);
}

.priority-card > span {
  color: var(--caramel);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.priority-card h3 {
  margin: auto 0 1rem;
  font: 600 clamp(1.8rem, 2.6vw, 2.45rem)/1 var(--serif);
  letter-spacing: -.025em;
}

.priority-card p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.experience {
  padding-block: clamp(5rem, 8.5vw, 8rem);
  background: var(--paper-deep);
}

.experience-heading {
  margin-bottom: 3rem;
}

.steps {
  border-top: 1px solid var(--espresso);
}

.step {
  min-height: 105px;
  display: grid;
  grid-template-columns: 56px minmax(160px, .48fr) 1fr;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--caramel);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.step h3 {
  margin: 0;
  font: 600 1.85rem/1 var(--serif);
}

.step p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: .83rem;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font: 600 clamp(1.35rem, 2vw, 1.75rem)/1.2 var(--serif);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--caramel);
  font-family: var(--sans);
  font-size: 1rem;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 760px;
  margin: -.2rem 0 1.4rem;
  color: var(--muted);
  font-size: .86rem;
}

.reserve {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 9vw, 8rem);
  align-items: center;
  padding-block: clamp(5.5rem, 9vw, 8.5rem);
}

.reserve-photo {
  width: min(100%, 500px);
}

.reserve-photo img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #2c2927;
}

.reserve-copy h2 {
  margin-bottom: 1.5rem;
}

.selection-summary {
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--espresso);
}

.selection-summary > div {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.selection-summary span {
  color: var(--muted);
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.selection-summary strong {
  font: 600 1.25rem/1.1 var(--serif);
}

.selection-summary em {
  color: var(--brown);
  font: normal 600 1.1rem/1 var(--serif);
}

.selection-summary .selection-total {
  min-height: 86px;
  background: var(--paper-deep);
  padding-inline: 1rem;
}

.selection-summary .selection-total strong {
  grid-column: 2 / 4;
  justify-self: end;
  font-size: 2rem;
}

.reserve-copy > p:not(.eyebrow):not(.contact-note) {
  max-width: 620px;
  color: var(--muted);
  font-size: .9rem;
}

.reserve-copy .button {
  margin-top: 1rem;
}

.contact-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid var(--line);
}

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

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.footer-brand strong {
  font: 600 1.35rem/1 var(--serif);
}

.footer-brand span,
.footer-inner p,
.footer-inner a {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-brand span,
.footer-inner p {
  color: var(--muted);
}

.footer-inner p { margin: 0; }

.footer-inner a {
  justify-self: end;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .priority-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
    gap: 3rem;
  }

  .collection-details,
  .recommendation-grid,
  .reserve-grid {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 0; }

  .site-header { position: static; }

  .nav {
    min-height: 72px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .section-heading,
  .collection-details,
  .recommendation-grid,
  .reserve-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-block: 3.5rem 4.6rem;
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 14vw, 5rem);
  }

  .hero-photo {
    justify-self: start;
    width: min(100%, 480px);
  }

  .statement-inner {
    padding-block: 4rem;
  }

  .statement blockquote {
    font-size: clamp(2.3rem, 8vw, 3.2rem);
  }

  .editorial-image img {
    min-height: 370px;
    height: 68vw;
  }

  .image-caption {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: .2rem;
    padding-block: .9rem;
  }

  .section,
  .film-section {
    padding-block: 4.7rem;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 2.7rem;
  }

  .chapter-heading h2,
  .section-heading h2,
  .recommendation h2,
  .reserve h2 {
    font-size: clamp(2.65rem, 9vw, 3.8rem);
  }

  .collection-top {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .collection-price {
    justify-items: start;
    text-align: left;
  }

  .collection-description {
    font-size: 1.18rem;
  }

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

  .priority-card {
    min-height: 235px;
  }

  .step {
    grid-template-columns: 42px 1fr;
    gap: .6rem 1rem;
    padding-block: 1rem;
  }

  .step p {
    grid-column: 2;
  }

  .selection-summary > div {
    grid-template-columns: 1fr auto;
    gap: .35rem 1rem;
    padding-block: .85rem;
  }

  .selection-summary span {
    grid-column: 1 / 3;
  }

  .selection-summary .selection-total strong {
    grid-column: 1 / 3;
    justify-self: start;
  }

  .reserve-photo {
    width: min(90%, 450px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: .6rem;
    padding-block: 1.5rem;
  }

  .footer-inner a {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .proposal-ribbon {
    font-size: .55rem;
  }

  .proposal-ribbon span:nth-child(2),
  .proposal-ribbon span:nth-child(3) {
    display: none;
  }

  .brand span {
    font-size: 1.5rem;
  }

  .hero {
    padding-block: 3rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 4.6rem);
  }

  .hero-intro {
    font-size: 1.1rem;
  }

  .hero-meta {
    display: grid;
    gap: .3rem;
  }

  .hero-meta span:not(:last-child)::after {
    content: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .editorial-image img {
    min-height: 340px;
    height: 84vw;
    object-position: 58% center;
  }

  .section,
  .film-section,
  .experience,
  .recommendation-grid,
  .reserve-grid {
    padding-block: 3.8rem;
  }

  .collection {
    padding: 1.35rem;
  }

  .collection h3 {
    font-size: 3rem;
  }

  .collection-price strong {
    font-size: 2.2rem;
  }

  .collection-details li {
    font-size: .8rem;
  }

  .reserve-photo {
    width: 100%;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.missing-proposal {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--paper);
}

.missing-proposal > div {
  width: min(620px, 100%);
}

.missing-proposal h1 {
  margin: 0 0 1rem;
  font: 600 clamp(3rem, 7vw, 5.5rem)/.95 var(--serif);
  letter-spacing: -.04em;
}

.missing-proposal p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 1.5rem;
  color: var(--muted);
}


.quote-handoff {
  margin: 1.5rem 0;
  border-top: 1px solid var(--espresso);
}

.quote-handoff > div {
  min-height: 64px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.quote-handoff span {
  color: var(--caramel);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.quote-handoff strong {
  font: 600 1.2rem/1.15 var(--serif);
}

.quote-source-note {
  margin: .8rem 0 0 !important;
  color: var(--muted);
  font-size: .66rem !important;
}


/* 2026-09-21 spacing + responsive refinement */
.hero {
  gap: clamp(3rem, 5.5vw, 5rem);
  padding-block: clamp(3.75rem, 5.75vw, 5.5rem);
}

.hero-intro {
  margin-top: 1.45rem;
  margin-bottom: 1.1rem;
}

.hero-meta {
  margin-bottom: 1.45rem;
}

.statement-inner {
  padding-block: clamp(3.6rem, 5.5vw, 5.25rem);
}

.editorial-image img {
  height: min(48vw, 640px);
}

.image-caption {
  min-height: 54px;
}

.section,
.film-section,
.experience {
  padding-block: clamp(3.75rem, 5.75vw, 5.5rem);
}

.chapter-heading {
  margin-bottom: clamp(2rem, 3.25vw, 3rem);
}

.chapter-heading > p:last-child {
  margin-top: 1rem;
  line-height: 1.65;
}

.section-heading {
  gap: clamp(2rem, 4.5vw, 4.25rem);
  margin-bottom: clamp(2rem, 3.2vw, 3rem);
}

.section-heading > p {
  max-width: 440px;
  line-height: 1.65;
}

.collection {
  padding: clamp(1.65rem, 2.6vw, 2.5rem);
}

.collection-top > *,
.collection-details > *,
.section-heading > *,
.recommendation-grid > *,
.reserve-grid > * {
  min-width: 0;
}

.collection-description {
  margin: 1.35rem 0 1.55rem;
  line-height: 1.5;
}

.collection-details {
  gap: clamp(2rem, 4.5vw, 4rem);
  padding-top: 1.35rem;
}

.collection-details li {
  line-height: 1.5;
}

.recommendation-grid {
  gap: clamp(3rem, 5.5vw, 5.5rem);
  padding-block: clamp(3.9rem, 5.75vw, 5.5rem);
}

.recommendation-copy p {
  line-height: 1.65;
}

.priorities-section {
  padding-block: clamp(3.4rem, 4.8vw, 4.6rem);
}

.priorities-section .section-heading {
  margin-bottom: clamp(1.6rem, 2.4vw, 2.25rem);
}

.priority-card {
  min-height: 238px;
  padding: 1.45rem;
}

.priority-card h3 {
  margin: clamp(2.4rem, 4vw, 3.8rem) 0 .75rem;
}

.priority-card p {
  max-width: 29ch;
  line-height: 1.5;
}

.experience-heading {
  margin-bottom: 2.25rem;
}

.step {
  min-height: 92px;
  padding-block: .45rem;
}

.step p {
  line-height: 1.55;
}

.faq .section-heading {
  margin-bottom: 1.85rem;
}

.reserve-grid {
  gap: clamp(3rem, 5.75vw, 5.5rem);
  padding-block: clamp(4rem, 6vw, 5.75rem);
}

.reserve-copy > p:not(.eyebrow):not(.contact-note) {
  line-height: 1.65;
}

.quote-handoff {
  margin: 1.25rem 0;
}

.quote-handoff > div {
  min-height: 58px;
}

footer .footer-inner {
  min-height: 86px;
}

@media (max-width: 980px) {
  .hero {
    gap: 2.5rem;
  }

  .section-heading {
    gap: 2.5rem;
  }

  .priority-card {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 66px;
    gap: 1rem;
  }

  .nav-cta {
    white-space: nowrap;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding-block: 2.8rem 3.25rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 12.5vw, 4.2rem);
    line-height: .9;
  }

  .hero-intro {
    margin: 1.2rem 0 .95rem;
    font-size: 1.08rem;
  }

  .hero-meta {
    margin-bottom: 1.25rem;
  }

  .hero-photo figcaption {
    margin-top: .65rem;
  }

  .statement-inner {
    padding-block: 3rem;
  }

  .statement blockquote {
    font-size: clamp(2.15rem, 7.6vw, 2.95rem);
    line-height: 1.02;
  }

  .editorial-image img {
    min-height: 300px;
    height: 70vw;
  }

  .section,
  .film-section,
  .experience {
    padding-block: 3.25rem;
  }

  .chapter-heading {
    margin-bottom: 2rem;
  }

  .chapter-heading h2,
  .section-heading h2,
  .recommendation h2,
  .reserve h2 {
    font-size: clamp(2.35rem, 8.5vw, 3.25rem);
    line-height: .98;
  }

  .section-heading {
    gap: 1rem;
    margin-bottom: 1.85rem;
  }

  .section-heading > p {
    max-width: 34rem;
  }

  .collection {
    padding: 1.35rem;
  }

  .collection.featured::before {
    right: 1rem;
  }

  .collection-top {
    gap: .95rem;
  }

  .collection h3 {
    font-size: clamp(2.55rem, 10vw, 3.15rem);
    line-height: .94;
  }

  .collection-subtitle {
    font-size: 1.25rem;
  }

  .collection-description {
    margin: 1.15rem 0 1.3rem;
    font-size: 1.08rem;
  }

  .collection-details {
    gap: 1.5rem;
    padding-top: 1.15rem;
  }

  .collection-details li {
    margin-bottom: .45rem;
  }

  .recommendation-grid {
    padding-block: 3.25rem;
    gap: 1.75rem;
  }

  .recommendation-copy {
    max-width: none;
  }

  .priorities-section {
    padding-block: 3rem;
  }

  .priorities-section .section-heading {
    margin-bottom: 1.5rem;
  }

  .priority-card {
    min-height: 0;
    padding: 1.35rem;
  }

  .priority-card h3 {
    margin: 2.25rem 0 .65rem;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .priority-card p {
    max-width: none;
  }

  .experience-heading {
    margin-bottom: 1.8rem;
  }

  .step {
    min-height: 0;
    padding-block: .95rem;
  }

  .step h3 {
    font-size: 1.65rem;
  }

  .step p {
    padding-right: .25rem;
  }

  .faq .section-heading {
    margin-bottom: 1.4rem;
  }

  .faq-list summary {
    padding-block: 1.15rem;
    font-size: 1.35rem;
  }

  .reserve-grid {
    gap: 2.5rem;
    padding-block: 3.4rem;
  }

  .reserve-copy h2 {
    margin-bottom: 1.1rem;
  }

  .quote-handoff {
    margin: 1rem 0 1.25rem;
  }

  .quote-handoff > div {
    min-height: 54px;
  }

  .contact-note {
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 62px;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .brand small {
    font-size: .48rem;
    letter-spacing: .2em;
  }

  .nav-links {
    gap: .7rem;
  }

  .nav-links a {
    font-size: .56rem;
  }

  .hero {
    padding-block: 2.4rem 2.8rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 3.9rem);
  }

  .hero-actions {
    gap: .85rem;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .statement-inner {
    padding-block: 2.7rem;
  }

  .statement blockquote {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
  }

  .editorial-image img {
    min-height: 260px;
    height: 78vw;
  }

  .image-caption {
    min-height: 0;
    padding-block: .75rem;
  }

  .section,
  .film-section,
  .experience,
  .recommendation-grid,
  .reserve-grid {
    padding-block: 2.8rem;
  }

  .chapter-heading h2,
  .section-heading h2,
  .recommendation h2,
  .reserve h2 {
    font-size: clamp(2.25rem, 11vw, 2.95rem);
  }

  .collection {
    padding: 1.2rem;
  }

  .collection h3 {
    font-size: clamp(2.35rem, 12vw, 2.85rem);
  }

  .collection-price strong {
    font-size: 2rem;
  }

  .collection-description {
    font-size: 1.02rem;
  }

  .collection-details h4 {
    margin-bottom: .65rem;
  }

  .collection-details li {
    font-size: .79rem;
    line-height: 1.48;
  }

  .priority-card {
    padding: 1.2rem;
  }

  .priority-card h3 {
    margin-top: 1.9rem;
  }

  .step {
    grid-template-columns: 34px 1fr;
    gap: .55rem .8rem;
  }

  .step p {
    font-size: .8rem;
  }

  .faq-list summary {
    padding-right: 2rem;
    font-size: 1.25rem;
  }

  .reserve-photo {
    width: 100%;
  }

  .quote-handoff > div {
    grid-template-columns: 38px 1fr;
  }

  .quote-handoff strong {
    font-size: 1.08rem;
  }

  .footer-inner {
    min-height: 0;
  }
}
