@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --forest: #16382e;
  --forest-deep: #0e2922;
  --moss: #75836a;
  --cream: #f3efe5;
  --sand: #d8c8ad;
  --orange: #c36b36;
  --ink: #172019;
  --paper: #fbf9f4;
  --line: rgba(23, 32, 25, 0.18);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e59a66;
  outline-offset: 4px;
}

.section-shell {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 24px 42px;
  color: white;
  animation: header-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  font-size: 17px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  border-radius: 50%;
}

.brand-copy {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.brand-copy small {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-header nav a,
.footer-links a {
  position: relative;
}

.site-header nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: white;
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 96svh;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.hero > img,
.final-cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero > img {
  object-position: center 46%;
  animation: reveal-image 900ms ease-out both;
}

.hero-shade,
.final-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 28, 22, 0.83) 0%, rgba(8, 28, 22, 0.45) 48%, rgba(8, 28, 22, 0.08) 75%),
    linear-gradient(0deg, rgba(8, 28, 22, 0.34), transparent 55%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(40px, calc((100% - 1240px) / 2));
  max-width: 700px;
  transform: translateY(-45%);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-lead,
.hero-content .hero-actions {
  animation: hero-copy-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content .eyebrow { animation-delay: 100ms; }
.hero-content h1 { animation-delay: 180ms; }
.hero-content .hero-lead { animation-delay: 280ms; }
.hero-content .hero-actions { animation-delay: 380ms; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f2d8bf;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.91;
}

h1 {
  max-width: 760px;
  font-size: clamp(76px, 10vw, 154px);
}

h2 {
  font-size: clamp(52px, 6.2vw, 92px);
}

.hero-lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  background: var(--cream);
  color: var(--forest-deep);
}

.button-light:hover {
  background: white;
}

.button-dark {
  background: var(--forest);
  color: white;
}

.button-dark:hover {
  background: var(--forest-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link.light {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 34px;
  display: flex;
  gap: 1px;
  animation: proof-enter 760ms 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-proof div {
  display: flex;
  width: 142px;
  height: 82px;
  flex-direction: column;
  justify-content: center;
  padding: 15px 18px;
  background: rgba(10, 37, 29, 0.72);
  backdrop-filter: blur(14px);
}

.hero-proof div:first-child {
  border-radius: 14px 0 0 14px;
}

.hero-proof div:last-child {
  border-radius: 0 14px 14px 0;
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.hero-proof span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(90px, 10vw, 150px);
  align-items: start;
  padding-block: 125px 105px;
}

.intro-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(54px, 8vw, 130px);
  align-items: start;
  min-width: 0;
}

.intro-panel > .eyebrow,
.intro-panel > h2 {
  grid-column: 1;
}

.intro-panel-choice > .eyebrow,
.intro-panel-choice > h2 {
  grid-column: 2;
}

.intro h2 {
  font-size: clamp(50px, 5.3vw, 82px);
}

.intro-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 570px;
  margin: 0;
}

.intro-copy p {
  margin: 0 0 22px;
  color: #435048;
  font-size: 17px;
  line-height: 1.75;
}

.choice-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  max-width: 520px;
  margin: 0;
  color: #526057;
  font-size: 17px;
  line-height: 1.75;
}

.stay {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 760px;
  margin-bottom: 150px;
  background: var(--cream);
}

.stay-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.stay-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stay:hover .stay-visual img {
  transform: scale(1.015);
}

.stay-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  padding: 20px;
  color: white;
  background: rgba(14, 41, 34, 0.78);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stay-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(40px, 6vw, 92px);
}

.stay-content h2 {
  max-width: 590px;
  font-size: clamp(54px, 5.5vw, 84px);
}

.stay-lead {
  max-width: 580px;
  margin: 29px 0 22px;
  color: #445047;
  font-size: 17px;
  line-height: 1.7;
}

.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.amenities li {
  position: relative;
  padding: 13px 0 13px 17px;
  border-bottom: 1px solid var(--line);
  color: #354139;
  font-size: 13px;
}

.amenities li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.fine-print {
  margin: 0 0 25px;
  color: #6e776f;
  font-size: 11px;
}

.stay-content .button {
  align-self: flex-start;
}

.stays-overview {
  padding-block: 0 150px;
}

.stay-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stay-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.stay-card-media {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--sand);
}

.stay-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stay-card:hover .stay-card-media img {
  transform: scale(1.018);
}

.stay-card-media > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 99px;
  background: rgba(10, 37, 29, 0.82);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.stay-card-body {
  position: relative;
  padding: 48px 48px 52px;
}

.stay-card-number {
  position: absolute;
  top: 45px;
  right: 48px;
  color: rgba(23, 32, 25, 0.28);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}

.stay-card h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.stay-card-lead {
  max-width: 560px;
  margin: 28px 0 30px;
  color: #445047;
  font-size: 16px;
  line-height: 1.75;
}

.stay-card .amenities {
  grid-template-columns: 1fr;
  max-width: none;
  margin-bottom: 36px;
}

.stay-card-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.stay-card-large {
  background: #e8dfce;
}

.moments {
  padding: 140px 0;
  color: white;
  background: var(--forest-deep);
}

.moments-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 9vw;
}

.moments-heading {
  position: sticky;
  top: 50px;
  align-self: start;
}

.moments-heading h2 {
  font-size: clamp(55px, 6.2vw, 88px);
}

.experience-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.experience {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 25px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: border-color 240ms ease;
}

.experience:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.experience > span {
  color: #d49a72;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
}

.experience h3 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
}

.experience p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.gallery-section {
  padding-block: 150px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading-row h2 {
  font-size: clamp(52px, 6vw, 86px);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

.gallery-grid .gallery-tall {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: white;
  background: rgba(16, 27, 21, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  content: "+";
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.gallery-trigger:hover::after,
.gallery-trigger:focus-visible::after {
  opacity: 1;
  transform: scale(1.08);
  background: rgba(16, 27, 21, 0.78);
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 20px;
  padding: 72px 30px 30px;
  color: white;
  background: rgba(8, 15, 11, 0.94);
  backdrop-filter: blur(12px);
  animation: lightbox-fade 180ms ease-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox button {
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  transform: scale(1.06);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
}

.lightbox-nav {
  width: 56px;
  height: 56px;
  font-size: 25px;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.lightbox-stage {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  touch-action: pan-y;
}

.lightbox-stage img {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 190px);
  object-fit: contain;
  animation: lightbox-image 220ms ease-out;
}

.lightbox-stage figcaption {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.lightbox-counter {
  flex: 0 0 auto;
  color: #e7b38c;
  font-size: 12px;
  letter-spacing: 0.12em;
}

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightbox-image {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 640px) {
  .gallery-trigger::after {
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .lightbox {
    display: flex;
    padding: 66px 14px 84px;
    align-items: center;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .lightbox-stage {
    width: 100%;
    height: auto;
  }

  .lightbox-stage img {
    max-height: calc(100dvh - 220px);
  }

  .lightbox-stage figcaption {
    flex-direction: column;
    gap: 8px;
    padding: 14px 4px 0;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-stage img {
    animation: none;
  }

  .gallery-trigger::after,
  .lightbox button {
    transition: none;
  }
}

.reviews {
  display: block;
  padding: 90px;
  margin-bottom: 150px;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fffaf0;
}

.review-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.reviews .eyebrow {
  color: #e7b38c;
}

.review-heading h2 {
  max-width: 820px;
  color: #fffaf0;
  font-size: clamp(54px, 6vw, 90px);
}

.review-score {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
  gap: 17px;
}

.review-score > span {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.review-score div {
  display: flex;
  flex-direction: column;
}

.review-score strong {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.review-score small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.review-themes span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: flex;
  grid-column: span 6;
  min-height: 290px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.review-card-featured {
  grid-column: span 8;
  background: #e8dfce;
  color: var(--ink);
}

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

.review-card:nth-child(3),
.review-card:nth-child(4) {
  grid-column: span 6;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.review-card-featured:hover {
  background: #efe7d8;
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.review-quote {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.65;
}

.review-stars {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
}

.review-card-featured blockquote {
  color: #354139;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.4;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
}

.review-author > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-author strong {
  color: inherit;
  font-size: 12px;
}

.review-author > div > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-card-featured .review-author > div > span {
  color: #6b746c;
}

.review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
}

.review-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-link {
  display: inline-flex;
  flex: 0 0 auto;
  margin-top: 0;
  color: #fffaf0;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  margin-bottom: 150px;
}

.faq-heading h2 {
  font-size: clamp(52px, 6vw, 88px);
}

.faq-heading > p:last-child {
  max-width: 410px;
  margin-top: 30px;
  color: #657066;
  font-size: 15px;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid rgba(44, 61, 48, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(44, 61, 48, 0.2);
  transition: background 220ms ease, padding 220ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within {
  padding-inline: 12px;
  background: rgba(232, 223, 206, 0.28);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  list-style: none;
}

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

.faq-list summary span {
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: 12px 48px 27px 0;
  color: #5e685f;
  font-size: 14px;
  line-height: 1.75;
}

.location {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 650px;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(50px, calc((100vw - 1240px) / 2));
  padding-right: 8vw;
  color: white;
  background: var(--forest);
}

.location-info h2 {
  font-size: clamp(56px, 5.5vw, 83px);
}

.location-info > p:not(.eyebrow) {
  margin: 34px 0 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.location-info > .text-link {
  align-self: flex-start;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-list a {
  font-family: var(--font-display);
  font-size: 18px;
}

.contact-list small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-wrap {
  position: relative;
  min-height: 650px;
}

.map-active,
.map-active iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
}

.map-active {
  position: relative;
}

.map-active iframe {
  border: 0;
  filter: saturate(0.7) sepia(0.12);
  transition: filter 500ms ease;
}

.map-active:hover iframe {
  filter: saturate(0.92) sepia(0.04);
}

.map-disable {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 11px 16px;
  border: 1px solid rgba(23, 32, 25, 0.16);
  border-radius: 99px;
  color: var(--forest-deep);
  background: rgba(251, 249, 244, 0.94);
  box-shadow: 0 10px 35px rgba(14, 41, 34, 0.16);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-placeholder {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  padding: 64px;
  color: white;
  background:
    radial-gradient(circle at 72% 24%, rgba(216, 200, 173, 0.24), transparent 31%),
    linear-gradient(145deg, #27483c 0%, var(--forest-deep) 68%);
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.map-placeholder::before {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-placeholder::after {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.map-placeholder-road {
  position: absolute;
  z-index: 1;
  width: 120%;
  height: 34px;
  border-block: 1px solid rgba(216, 200, 173, 0.18);
  background: rgba(216, 200, 173, 0.045);
}

.map-placeholder-road-one {
  transform: rotate(-24deg) translateY(-120px);
}

.map-placeholder-road-two {
  transform: rotate(31deg) translateY(155px);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 24%;
  right: 21%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  transform: rotate(45deg);
  border-radius: 50% 50% 50% 8px;
  background: var(--orange);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.map-pin i {
  width: 16px;
  height: 16px;
  border: 4px solid white;
  border-radius: 50%;
}

.map-placeholder-content {
  position: relative;
  z-index: 3;
  width: min(520px, 100%);
}

.map-placeholder-content h3 {
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.map-placeholder-content > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.map-placeholder-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 32px;
}

.map-placeholder-actions .button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.map-placeholder-actions .text-link {
  font-size: 11px;
}

.cookie-consent-popup {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(920px, calc(100vw - 48px));
  padding: 23px 26px;
  border: 1px solid rgba(23, 32, 25, 0.14);
  color: var(--ink);
  background: rgba(251, 249, 244, 0.98);
  box-shadow: 0 24px 80px rgba(14, 41, 34, 0.24);
  animation: consent-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cookie-consent-popup[hidden] {
  display: none;
}

@keyframes consent-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-consent-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.cookie-consent-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-size: 18px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.cookie-consent-copy .eyebrow {
  margin-bottom: 7px;
}

.cookie-consent-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: #526058;
  font-size: 12px;
  line-height: 1.65;
}

.cookie-consent-copy a {
  display: inline-block;
  margin-top: 7px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 16px;
}

.cookie-consent-buttons .button {
  min-width: 138px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}

.cookie-consent-reject {
  padding: 10px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
}

.final-cta {
  position: relative;
  height: 750px;
  overflow: hidden;
  color: white;
}

.final-cta > img {
  object-position: center 50%;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.final-cta:hover > img {
  transform: scale(1.018);
}

.final-shade {
  background: linear-gradient(90deg, rgba(10, 34, 27, 0.82), rgba(10, 34, 27, 0.15));
}

.final-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(40px, calc((100% - 1240px) / 2));
  transform: translateY(-50%);
}

.final-content h2 {
  max-width: 850px;
  font-size: clamp(68px, 8vw, 120px);
}

.final-content .button {
  margin-top: 38px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  padding: 38px 42px;
  color: white;
  background: #0b211b;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
}

.cookie-settings-link {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

footer p {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.privacy-page {
  min-height: 100vh;
  background: var(--paper);
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-header > .text-link {
  font-size: 13px;
  font-weight: 800;
}

.privacy-article {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
  padding: 100px 0 130px;
}

.privacy-title {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  column-gap: 100px;
  padding-bottom: 95px;
}

.privacy-title .eyebrow,
.privacy-title h1 {
  grid-column: 1;
}

.privacy-title h1 {
  max-width: 800px;
  font-size: clamp(74px, 9vw, 130px);
}

.privacy-title > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.privacy-title small {
  grid-column: 2;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.privacy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-block: 1px solid var(--line);
}

.privacy-toc a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.privacy-toc a:hover {
  border-color: var(--forest);
  color: white;
  background: var(--forest);
}

.privacy-content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.privacy-content section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 30px;
}

.privacy-content section:last-child {
  border-bottom: 0;
}

.privacy-content h2 {
  margin: 12px 0 35px;
  font-size: clamp(44px, 5vw, 68px);
}

.privacy-content p,
.privacy-content li {
  color: #46544b;
  font-size: 16px;
  line-height: 1.85;
}

.privacy-content p {
  margin: 0 0 22px;
}

.privacy-content ul {
  margin: 0 0 28px;
  padding-left: 24px;
}

.privacy-content li + li {
  margin-top: 9px;
}

.privacy-content a {
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(22, 56, 46, 0.3);
  text-underline-offset: 3px;
}

.privacy-table-wrap {
  margin: 38px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.privacy-content table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.65;
}

.privacy-content th,
.privacy-content td {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.privacy-content tr:last-child td {
  border-bottom: 0;
}

.privacy-content th:last-child,
.privacy-content td:last-child {
  border-right: 0;
}

.privacy-content th {
  color: white;
  background: var(--forest);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-footer {
  display: flex;
  justify-content: space-between;
}

.privacy-footer a {
  font-size: 12px;
  font-weight: 800;
}

.privacy-footer .cookie-settings-link {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  color: var(--ink);
  background: var(--paper);
}

.not-found-photo {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(14, 41, 34, 0.05), rgba(14, 41, 34, 0.38)),
    url("hero-1535.webp") center / cover no-repeat;
}

.not-found-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(42px, 8vw, 140px);
}

.not-found-brand {
  position: absolute;
  top: 42px;
  color: var(--forest-deep);
}

.not-found-content h1 {
  max-width: 790px;
  margin: 18px 0 30px;
  font-size: clamp(68px, 8.5vw, 128px);
  line-height: 0.86;
}

.not-found-lead {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.not-found-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

@keyframes reveal-image {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes header-enter {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes proof-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes section-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  .intro > *,
  .stay-visual,
  .stay-content,
  .stay-card,
  .moments-heading,
  .experience,
  .section-heading-row,
  .gallery-grid figure,
  .review-top,
  .review-card,
  .faq-heading,
  .faq-list details,
  .location-info,
  .map-wrap {
    animation: section-rise 1s linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 26%;
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: min(100% - 44px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 20px 24px;
  }

  .site-header nav {
    display: none;
  }

  .hero-content {
    left: 28px;
  }

  .hero-proof {
    right: 24px;
    bottom: 24px;
  }

  .hero-proof div {
    width: 128px;
  }

  .intro {
    gap: 50px;
    padding-block: 110px;
  }

  .intro-panel {
    grid-template-columns: 1fr;
  }

  .intro-panel-choice > .eyebrow,
  .intro-panel-choice > h2 {
    grid-column: 1;
  }

  .intro-copy,
  .choice-copy {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
    max-width: 620px;
    margin: 42px 0 0;
  }

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

  .stay-visual {
    min-height: 560px;
  }

  .stay-cards {
    grid-template-columns: 1fr;
  }

  .stay-card-media {
    height: 620px;
  }

  .moments-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .moments-heading {
    position: static;
  }

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

  .reviews {
    padding: 65px;
  }

  .review-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 42px;
  }

  .review-card,
  .review-card-featured,
  .review-card:nth-child(2),
  .review-card:nth-child(3),
  .review-card:nth-child(4) {
    grid-column: span 6;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .location-info {
    padding: 100px max(30px, calc((100vw - 760px) / 2));
  }

  .privacy-title {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-title > p:not(.eyebrow),
  .privacy-title small {
    grid-column: 1;
    grid-row: auto;
    max-width: 650px;
  }

  .not-found-page {
    grid-template-columns: 1fr;
  }

  .not-found-photo {
    min-height: 38vh;
  }

  .not-found-content {
    min-height: 62vh;
    padding: 100px max(30px, calc((100vw - 760px) / 2));
  }

  .not-found-brand {
    top: calc(38vh + 34px);
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: calc(100% - 34px);
  }

  .site-header {
    padding: 16px 17px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .brand-copy {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 11px;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(8, 28, 22, 0.84), rgba(8, 28, 22, 0.2)), linear-gradient(0deg, rgba(8, 28, 22, 0.58), transparent 60%);
  }

  .hero-content {
    top: 45%;
    right: 20px;
    left: 20px;
  }

  h1 {
    font-size: clamp(68px, 24vw, 100px);
  }

  .hero-lead {
    max-width: 430px;
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 20px;
  }

  .hero-actions .text-link {
    display: none;
  }

  .hero-proof {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .hero-proof div {
    width: 33.33%;
    height: 72px;
    padding: 12px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .intro {
    gap: 36px;
    padding-block: 90px;
  }

  h2,
  .stay-content h2,
  .intro h2,
  .moments-heading h2,
  .section-heading-row h2,
  .review-heading h2,
  .faq-heading h2,
  .location-info h2 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .stay {
    width: 100%;
    margin-bottom: 0;
  }

  .stay-visual {
    min-height: 440px;
  }

  .stay-content {
    padding: 70px 22px 80px;
  }

  .stays-overview {
    padding-block: 0 90px;
  }

  .stay-card-media {
    height: 470px;
  }

  .stay-card-body {
    padding: 40px 24px 44px;
  }

  .stay-card-number {
    top: 37px;
    right: 24px;
  }

  .stay-card h3 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .stay-card-actions {
    flex-wrap: wrap;
  }

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

  .moments {
    padding: 90px 0;
  }

  .experience {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .gallery-section {
    padding-block: 90px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .gallery-grid {
    grid-auto-rows: 185px;
    gap: 8px;
  }

  .gallery-grid .gallery-wide {
    grid-column: span 2;
  }

  .reviews {
    width: 100%;
    margin-bottom: 0;
    padding: 75px 22px;
  }

  .review-score > span {
    font-size: 66px;
  }

  .review-themes {
    margin-top: 38px;
  }

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

  .review-card,
  .review-card-featured,
  .review-card:nth-child(2),
  .review-card:nth-child(3),
  .review-card:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 28px;
  }

  .review-card-featured blockquote {
    font-size: 23px;
  }

  .review-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-section {
    margin-bottom: 0;
    padding: 80px 22px;
  }

  .faq-list details p {
    margin-right: 24px;
  }

  .location-info {
    padding: 90px 22px;
  }

  .contact-list {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 55px;
  }

  .map-wrap,
  .map-active,
  .map-active iframe,
  .map-placeholder {
    min-height: 470px;
  }

  .map-placeholder {
    place-items: end start;
    padding: 80px 28px 46px;
  }

  .map-placeholder::before {
    inset: 14px;
  }

  .map-pin {
    top: 15%;
    right: 18%;
    width: 50px;
    height: 50px;
  }

  .map-placeholder-content h3 {
    font-size: clamp(50px, 17vw, 70px);
  }

  .map-placeholder-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-top: 26px;
  }

  .cookie-consent-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    width: auto;
    padding: 22px 20px;
  }

  .cookie-consent-icon {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .cookie-consent-buttons {
    grid-column: 1 / -1;
    gap: 8px;
    justify-content: stretch;
    padding-right: 0;
  }

  .cookie-consent-buttons .button,
  .cookie-consent-reject {
    flex: 1;
    min-width: 0;
  }

  .map-disable {
    top: 12px;
    right: 12px;
    padding: 9px 12px;
    font-size: 8px;
  }

  .privacy-header,
  .privacy-article {
    width: calc(100% - 34px);
  }

  .privacy-header {
    padding: 18px 0;
  }

  .privacy-header > .text-link {
    font-size: 11px;
  }

  .privacy-article {
    padding: 70px 0 90px;
  }

  .privacy-title {
    padding-bottom: 65px;
  }

  .privacy-title h1 {
    font-size: clamp(56px, 19vw, 76px);
  }

  .privacy-title > p:not(.eyebrow) {
    font-size: 15px;
  }

  .privacy-toc {
    gap: 8px;
  }

  .privacy-toc a {
    padding: 8px 11px;
    font-size: 9px;
  }

  .privacy-content section {
    padding: 68px 0;
  }

  .privacy-content h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 14px;
    line-height: 1.8;
  }

  .privacy-footer {
    align-items: flex-start;
    flex-direction: row;
  }

  .final-cta {
    height: 680px;
  }

  .final-content {
    right: 22px;
    left: 22px;
  }

  .final-content h2 {
    font-size: clamp(62px, 20vw, 88px);
  }

  footer {
    grid-template-columns: 1fr;
    padding: 34px 20px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    line-height: 1.4;
  }

  .footer-links a {
    padding-block: 4px;
  }

  footer p {
    justify-self: start;
  }

  .not-found-photo {
    min-height: 34vh;
  }

  .not-found-content {
    min-height: 66vh;
    padding: 92px 22px 60px;
  }

  .not-found-brand {
    top: calc(34vh + 26px);
  }

  .not-found-content h1 {
    font-size: clamp(60px, 21vw, 82px);
  }

  .not-found-lead {
    font-size: 14px;
  }

  .not-found-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }
}

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