:root {
  --ink: #14251f;
  --ink-2: #27413a;
  --paper: #f7f3ea;
  --paper-2: #fffaf1;
  --mist: #e6eee9;
  --moss: #456f5c;
  --water: #427f8c;
  --copper: #b96f43;
  --gold: #d8aa54;
  --charcoal: #0f1614;
  --white: #fff;
  --shadow: 0 20px 50px rgba(18, 30, 26, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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 {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--charcoal);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(20, 37, 31, 0.94);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(175px, 34vw);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 9px rgba(0, 0, 0, 0.25));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-width: 78px;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 22, 20, 0.38);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 112px clamp(18px, 6vw, 80px) 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 22, 20, 0.9) 0%, rgba(15, 22, 20, 0.72) 42%, rgba(15, 22, 20, 0.38) 100%),
    linear-gradient(0deg, rgba(15, 22, 20, 0.72) 0%, rgba(15, 22, 20, 0.1) 42%);
}

.hero-content,
.hero-art {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.room-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.primary {
  color: var(--charcoal);
  background: var(--gold);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e7bd67;
  outline: none;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hero-art {
  display: grid;
  place-items: center;
  width: min(100%, 410px);
  aspect-ratio: 1;
  justify-self: center;
}

.hero-art img {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  box-shadow: var(--shadow);
  object-fit: cover;
  transform: rotate(1.5deg);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.band {
  background: var(--paper-2);
}

.intro,
.grounds,
.testimonials {
  padding: clamp(60px, 8vw, 110px) 0;
}

.intro-grid,
.split,
.creative-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.intro-copy {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.rooms,
.amenities,
.contact {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--ink-2);
  font-size: 1.06rem;
}

.section-heading.compact {
  max-width: 650px;
}

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

.room-card,
.quote-grid figure,
.amenity-grid article,
.contact-panel {
  border: 1px solid rgba(20, 37, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 37, 31, 0.08);
}

.room-card {
  overflow: hidden;
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.025);
}

.image-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.room-card > .image-button,
.amenity-grid .image-button {
  aspect-ratio: 4 / 3;
}

.room-content {
  padding: 22px;
}

.room-content p {
  color: var(--ink-2);
}

.room-content ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
}

.featured-room {
  border-color: rgba(216, 170, 84, 0.65);
}

.bathroom-note {
  max-width: 800px;
  margin: 42px auto 0;
  text-align: center;
}

.bathroom-note h3,
.bathroom-note h4 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.bathroom-grid {
  display: grid;
  max-width: 880px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px auto 0;
}

.bathroom-grid .image-button {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-copy p,
.creative-copy p,
.contact p {
  color: var(--ink-2);
  font-size: 1.06rem;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.photo-pair .image-button {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-pair .image-button {
  aspect-ratio: 4 / 5;
}

.photo-pair .image-button:not(.tall) {
  align-self: end;
  aspect-ratio: 4 / 3;
}

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

.amenity-grid article {
  min-height: 168px;
  overflow: hidden;
}

.amenity-grid p {
  color: var(--ink-2);
}

.amenity-content {
  padding: 22px;
}

.creative {
  padding: clamp(70px, 9vw, 120px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 37, 31, 0.98), rgba(39, 65, 58, 0.94)),
    var(--ink);
}

.creative .section-kicker {
  color: #f0c66c;
}

.creative-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.creative .section-heading p,
.creative .amenity-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.creative .amenity-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.creative .amenity-grid h3 {
  color: var(--white);
}

.creator-bathrooms {
  margin-top: clamp(46px, 7vw, 84px);
}

.creator-bathroom-grid {
  display: grid;
  width: min(560px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.creator-bathroom-grid .image-button {
  aspect-ratio: 9 / 14;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

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

.quote-grid figure {
  display: grid;
  align-content: space-between;
  min-height: 250px;
  margin: 0;
  padding: 24px;
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

figcaption {
  margin-top: 20px;
  color: var(--copper);
  font-weight: 900;
}

.contact {
  align-items: start;
}

.contact-panel {
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel a {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.fine-print {
  grid-column: 1 / -1;
  max-width: 780px;
  margin: 10px auto 0;
  color: rgba(39, 65, 58, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner img {
  width: min(175px, 48vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-inner p {
  margin: 0;
}

.lightbox {
  width: min(96vw, 1180px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(8, 11, 10, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--charcoal);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 22, 20, 0.8);
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .split,
  .creative-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .room-grid,
  .amenity-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

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

}

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

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(20, 37, 31, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    border-radius: var(--radius);
    text-align: left;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(15, 22, 20, 0.92), rgba(15, 22, 20, 0.46));
  }

  .hero-art {
    width: min(100%, 330px);
  }

  .photo-pair {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}
