:root {
  --ink: #201d19;
  --muted: #70695f;
  --linen: #f5f0e8;
  --paper: #fffaf3;
  --bronze: #b28a5f;
  --bronze-dark: #8a673e;
  --forest: #151a15;
  --glass: rgba(255, 250, 243, 0.14);
  --border: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 70px rgba(30, 22, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(0, 0, 0, 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px clamp(22px, 5vw, 62px);
  color: white;
  transition: background 500ms ease, padding 500ms ease, backdrop-filter 500ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(24, 24, 20, 0.76);
  backdrop-filter: blur(18px);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-right {
  justify-content: flex-end;
}

.brand {
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  font-size: 1.2rem;
  letter-spacing: -0.25em;
  transform: translateX(-4px);
}

.brand strong {
  margin-top: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.brand small {
  margin-top: 4px;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
}

.menu-button {
  display: grid;
  gap: 6px;
  width: 34px;
  padding: 8px 3px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1px;
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1518780664697-55e3ad937233?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 21, 19, 0.72), rgba(18, 21, 19, 0.26) 48%, rgba(18, 21, 19, 0.18)),
    linear-gradient(0deg, rgba(8, 10, 8, 0.42), transparent 36%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 180px clamp(24px, 6vw, 84px) 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 7vw, 7.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

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

.button-primary {
  background: var(--bronze);
  color: white;
}

.button-primary:hover {
  background: #c59a6b;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: white;
  backdrop-filter: blur(8px);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 260ms ease;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 1px;
  height: 70px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 28px;
  background: white;
  animation: scrollCue 2.3s ease-in-out infinite;
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: rgba(15, 18, 15, 0.96);
  color: white;
}

.signature-strip article {
  display: grid;
  place-items: center;
  min-height: 112px;
  text-align: center;
}

.signature-strip span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.signature-strip strong {
  max-width: 150px;
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(76px, 10vw, 132px) clamp(24px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.intro-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--muted);
}

.intro-image {
  position: relative;
  min-height: 520px;
  margin: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-image::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  content: "";
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--paper);
}

.gallery-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  color: white;
}

.gallery-card::after,
.season::after,
.booking-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
  content: "";
}

.gallery-card img,
.season,
.booking-bg {
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card span {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 26px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.season {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: clamp(36px, 6vw, 74px);
  color: white;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.winter {
  background-image: url("https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?auto=format&fit=crop&w=1400&q=85");
}

.summer {
  background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1400&q=85");
}

.season:hover {
  transform: scale(1.015);
}

.season > div {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.season h2 {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
}

.season p:not(.eyebrow) {
  max-width: 440px;
}

.season a {
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.amenities {
  text-align: center;
}

.amenities h2 {
  max-width: 900px;
  margin: 0 auto;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.amenity-list span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(32, 29, 25, 0.13);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px);
  gap: clamp(30px, 8vw, 120px);
  align-items: center;
  margin: 0 clamp(24px, 6vw, 84px);
  padding: clamp(42px, 7vw, 84px);
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.booking-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 15, 12, 0.9), rgba(14, 15, 12, 0.35)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.booking-panel:hover .booking-bg {
  transform: scale(1.035);
}

.booking-copy,
.price-card {
  position: relative;
  z-index: 1;
}

.booking-copy h2 {
  max-width: 560px;
}

.booking-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.booking-copy li {
  margin: 8px 0;
}

.booking-copy li::before {
  margin-right: 12px;
  color: var(--bronze);
  content: "✓";
}

.price-card {
  padding: 34px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.price-card span,
.price-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
}

.price-card a {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews {
  background: linear-gradient(180deg, var(--paper), var(--linen));
}

.reviews > .eyebrow {
  text-align: center;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
}

blockquote {
  margin: 0;
  padding: 34px;
  border-left: 1px solid rgba(32, 29, 25, 0.16);
}

blockquote span {
  color: var(--bronze);
  letter-spacing: 0.18em;
}

blockquote p {
  margin: 16px 0;
  color: var(--muted);
}

cite {
  font-style: normal;
  font-weight: 700;
}

.site-footer {
  position: relative;
  color: white;
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.95), rgba(16, 18, 17, 0.72)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: clamp(34px, 8vw, 120px);
  padding: clamp(56px, 8vw, 92px) clamp(24px, 6vw, 84px);
}

.footer-inner h2 {
  margin-bottom: 22px;
}

.footer-inner a,
.footer-inner span {
  display: block;
  margin-top: 8px;
}

.newsletter {
  align-self: center;
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(18px);
}

.newsletter label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter div {
  display: flex;
  gap: 8px;
}

.newsletter input,
.newsletter button {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font: inherit;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 0 16px;
  color: white;
  background: transparent;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter button {
  padding: 0 22px;
  color: white;
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 6vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(-1.2%, -0.8%, 0);
  }

  to {
    transform: scale(1.1) translate3d(1.2%, 0.8%, 0);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(-32px);
  }

  100% {
    transform: translateY(76px);
  }
}

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

  .nav-left,
  .nav-right a {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .signature-strip,
  .amenity-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro,
  .seasons,
  .booking-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-image {
    min-height: 420px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand strong {
    font-size: 1.54rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding: 150px 22px 90px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .signature-strip,
  .amenity-list,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signature-strip {
    padding: 18px;
  }

  .intro-image,
  .season {
    min-height: 360px;
  }

  .booking-panel {
    margin-inline: 0;
    padding: 34px 22px;
  }

  .newsletter div,
  .footer-bottom {
    flex-direction: column;
  }
}

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