:root {
  --graphite: #30332f;
  --secondary: #64665f;
  --tertiary: #7e8178;
  --ink: #171716;
  --canvas: #f4eedf;
  --mist: #fbf7ef;
  --canopy: #34523d;
  --canopy-dark: #263d2e;
  --cedar: #9a6542;
  --tide: #486a73;
  --border: rgba(48, 51, 47, 0.18);
  --shadow-image: 0 24px 60px rgba(23, 23, 22, 0.16);
  --radius: 8px;
  --max: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--canopy);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #d7a85f;
  outline-offset: 4px;
}

button {
  font: inherit;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--mist);
  color: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--canvas);
  box-shadow: 0 1px 0 rgba(23, 23, 22, 0.1);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 10px 24px;
  background: var(--ink);
  color: #f8f1e6;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 20px;
}

.beckons-link {
  text-decoration: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.primary-nav a,
.button,
.phone-link,
.section-kicker,
.proof-item span,
.package-list span,
.image-card span,
.footer-contact span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 18px;
  text-transform: uppercase;
}

.primary-nav a {
  color: var(--graphite);
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--canopy);
  color: #fffaf1;
}

.button-primary:hover {
  background: var(--canopy-dark);
  color: #fffaf1;
}

.button-light {
  background: rgba(251, 247, 239, 0.92);
  color: var(--graphite);
}

.button-outline {
  border-color: rgba(48, 51, 47, 0.32);
  color: var(--graphite);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--graphite);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  background: var(--ink);
  color: #f8f1e6;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 23, 22, 0.78), rgba(23, 23, 22, 0.38) 46%, rgba(23, 23, 22, 0.18)),
    linear-gradient(0deg, rgba(23, 23, 22, 0.72), rgba(23, 23, 22, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 72px;
  transform: translateX(-24%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cedar);
}

.hero .eyebrow {
  color: #e5d7bf;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 20px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: #e3ded2;
  font-size: 18px;
  line-height: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: #f8f1e6;
  text-decoration: underline;
}

.arrival-ledger {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: grid;
  width: min(360px, calc(100% - 64px));
  border: 1px solid rgba(248, 241, 230, 0.24);
  background: rgba(23, 23, 22, 0.66);
  backdrop-filter: blur(10px);
}

.arrival-ledger div {
  padding: 18px 20px;
}

.arrival-ledger div + div {
  border-top: 1px solid rgba(248, 241, 230, 0.18);
}

.arrival-ledger strong {
  display: block;
  margin-bottom: 4px;
  color: #fffaf1;
  font-size: 15px;
  line-height: 22px;
}

.arrival-ledger span {
  color: #d8d4ca;
  font-size: 13px;
  line-height: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: -32px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--border);
  background: var(--mist);
  box-shadow: 0 18px 36px rgba(23, 23, 22, 0.08);
}

.proof-item {
  padding: 24px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--border);
}

.proof-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--tertiary);
}

.proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
}

.section-heading h2,
.split-heading h2,
.recognition-copy h2,
.planning-section h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.section-heading p,
.split-heading p,
.planning-section p,
.recognition-copy p {
  color: var(--secondary);
}

.stay-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--mist);
}

.stay-card {
  min-height: 280px;
  padding: 28px;
}

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

.stay-card span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--cedar);
  font-size: 13px;
  font-weight: 700;
}

.stay-card h3,
.package-list h3,
.planning-panel h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 32px;
}

.stay-card p,
.package-list p,
.planning-panel p {
  color: var(--secondary);
}

.stay-card a,
.package-list a,
.planning-panel a:not(.button) {
  color: var(--canopy);
  font-weight: 700;
}

.feature-card {
  background: var(--canopy);
  color: #fffaf1;
}

.feature-card p,
.feature-card a {
  color: #efe5d5;
}

.split-heading,
.planning-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 40px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.image-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-image);
}

.image-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.image-card:nth-child(4) {
  grid-column: span 2;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 260ms ease, opacity 260ms ease;
}

.image-card:hover img {
  transform: scale(1.025);
  opacity: 0.78;
}

.image-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(23, 23, 22, 0.82), rgba(23, 23, 22, 0));
  color: #fffaf1;
}

.image-card span {
  display: block;
  margin-bottom: 8px;
  color: #e5d7bf;
}

.image-card h3 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 31px;
}

.packages-section {
  padding-top: 24px;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.package-list article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mist);
}

.package-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--cedar);
}

.recognition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 32px;
  background: var(--ink);
  color: #f8f1e6;
}

.recognition-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.recognition-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.recognition-copy p {
  color: #d8d4ca;
}

.award-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.award-list li {
  padding-left: 18px;
  border-left: 3px solid var(--cedar);
  color: #e9dfcf;
}

.quote-section {
  padding-bottom: 48px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

figure {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mist);
}

blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 35px;
}

figcaption {
  color: var(--secondary);
  font-size: 14px;
  line-height: 22px;
}

.planning-section {
  align-items: stretch;
  padding-top: 48px;
}

.planning-panel {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mist);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: 48px;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #f8f1e6;
}

.footer-brand img {
  width: 184px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 420px;
  color: #d8d4ca;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer a {
  color: #f8f1e6;
}

.footer-contact span {
  color: #bfb6a6;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background: var(--canvas);
    border-top: 1px solid var(--border);
  }

  .site-header.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(48, 51, 47, 0.12);
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

  .hero-content {
    transform: none;
    margin-left: 32px;
  }

  .arrival-ledger {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    margin: 0 32px 32px;
  }

  .proof-strip,
  .stay-grid,
  .package-list,
  .quote-grid,
  .recognition,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-card.large {
    grid-row: auto;
  }

  .stay-card:nth-child(3) {
    border-left: 0;
  }

  .stay-card:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 760px) {
  .topbar {
    justify-content: space-between;
    gap: 16px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .topbar span {
    max-width: 250px;
    text-align: right;
  }

  .nav-shell {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 400px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(23, 23, 22, 0.92), rgba(23, 23, 22, 0.28) 70%, rgba(23, 23, 22, 0.1)),
      linear-gradient(90deg, rgba(23, 23, 22, 0.62), rgba(23, 23, 22, 0.2));
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 0 20px 28px;
  }

  h1 {
    font-size: 40px;
    line-height: 44px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .arrival-ledger {
    width: auto;
    margin: 0 20px 24px;
  }

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

  .proof-item + .proof-item {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .section {
    padding: 64px 20px;
  }

  .section-heading,
  .split-heading,
  .planning-section,
  .recognition,
  .site-footer,
  .stay-grid,
  .package-list,
  .quote-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .split-heading,
  .planning-section {
    gap: 20px;
  }

  .section-heading h2,
  .split-heading h2,
  .recognition-copy h2,
  .planning-section h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .stay-card,
  .stay-card + .stay-card,
  .stay-card:nth-child(n + 3) {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .feature-card {
    border-top: 0;
  }

  .stay-card span {
    margin-bottom: 24px;
  }

  .image-card,
  .image-card.large,
  .image-card img {
    min-height: 340px;
  }

  .image-card.large {
    grid-column: auto;
  }

  .image-card:nth-child(4) {
    grid-column: auto;
  }

  .recognition {
    gap: 24px;
    margin-top: 0;
    padding: 20px;
  }

  .recognition-image img {
    min-height: 260px;
  }

  blockquote {
    font-size: 22px;
    line-height: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media {
    display: none;
  }

  .hero {
    background: linear-gradient(rgba(23, 23, 22, 0.72), rgba(23, 23, 22, 0.8)), url("assets/michelin-keys.jpg") center / cover no-repeat;
  }
}
