:root {
  --charcoal: #11100e;
  --charcoal-2: #1a1713;
  --ivory: #f6f0e6;
  --ivory-2: #fffaf1;
  --sand: #c9a46a;
  --bronze: #8a6a3f;
  --lake: #172b27;
  --sage: #53645b;
  --line: rgba(246, 240, 230, 0.18);
  --dark-line: rgba(17, 16, 14, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  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;
  top: 16px;
  left: 16px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--charcoal);
  background: var(--ivory-2);
  border: 1px solid var(--sand);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: var(--ivory-2);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ivory-2);
  background: rgba(17, 16, 14, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 164, 106, 0.74);
  color: var(--sand);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(246, 240, 230, 0.78);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  opacity: 0.86;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--sand);
  transition: right 220ms ease;
}

.nav-menu a:hover {
  opacity: 1;
  color: var(--ivory-2);
}

.nav-menu a:hover::after {
  right: 0;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(201, 164, 106, 0.78);
  color: var(--sand);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(246, 240, 230, 0.34);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory-2);
  background: var(--charcoal);
}

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

.hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.48) 42%, rgba(17, 16, 14, 0.18)),
    url("https://images.unsplash.com/photo-1599661046289-e31897846e41?auto=format&fit=crop&w=2200&q=82") center/cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-out forwards;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 30%, rgba(201, 164, 106, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.22), rgba(17, 16, 14, 0.82));
}

.hero-frame {
  position: absolute;
  inset: 110px 34px 34px;
  border: 1px solid rgba(246, 240, 230, 0.2);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 160px 0 110px;
}

.eyebrow,
.section-kicker,
.room-label {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.events h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4.25rem, 10vw, 9.7rem);
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(246, 240, 230, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 190ms ease, background 190ms ease, color 190ms ease, border-color 190ms ease;
  cursor: pointer;
}

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

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

.button-primary:hover {
  background: var(--ivory-2);
  border-color: var(--ivory-2);
}

.button-ghost {
  color: var(--ivory-2);
  border-color: rgba(246, 240, 230, 0.42);
  background: rgba(246, 240, 230, 0.04);
}

.button-ghost:hover {
  border-color: var(--sand);
  color: var(--sand);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: max(34px, calc((100vw - 1160px) / 2));
  bottom: 70px;
  width: min(310px, calc(100vw - 60px));
  padding: 24px;
  background: rgba(17, 16, 14, 0.56);
  border: 1px solid rgba(246, 240, 230, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card span,
.hero-card p {
  color: rgba(246, 240, 230, 0.72);
}

.hero-card span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.hero-card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(246, 240, 230, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 12px auto 0;
  background: var(--sand);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0;
}

.story {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1160px) / 2));
  padding-right: max(20px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(17, 16, 14, 0.06) 49% 50%, transparent 50%),
    var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: end;
}

.section h2,
.events h2 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

.story-copy p,
.section-heading p,
.location-card p,
.contact-copy p,
.events-inner p {
  color: rgba(17, 16, 14, 0.72);
  font-size: 1.05rem;
}

.story-copy p {
  max-width: 720px;
}

.stat-panel {
  display: grid;
  background: var(--lake);
  color: var(--ivory-2);
  box-shadow: var(--shadow);
}

.stat-panel div {
  padding: 30px;
  border-bottom: 1px solid rgba(246, 240, 230, 0.16);
}

.stat-panel div:last-child {
  border-bottom: 0;
}

.stat-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.9;
  color: var(--sand);
}

.stat-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(246, 240, 230, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

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

.suite-card {
  min-width: 0;
  background: var(--ivory-2);
  border: 1px solid var(--dark-line);
  box-shadow: 0 18px 50px rgba(17, 16, 14, 0.08);
  overflow: hidden;
}

.suite-card img {
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  transition: transform 700ms ease;
}

.suite-card:hover img {
  transform: scale(1.055);
}

.suite-content {
  padding: 28px;
}

.suite-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.suite-content p {
  color: rgba(17, 16, 14, 0.68);
}

.suite-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.suite-content li {
  padding: 7px 10px;
  color: var(--lake);
  background: rgba(23, 43, 39, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate {
  color: var(--bronze);
  font-weight: 800;
}

.experiences {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.experience-image {
  position: relative;
}

.experience-image::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  z-index: -1;
  border: 1px solid var(--sand);
}

.experience-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.accordion {
  margin-top: 36px;
  border-top: 1px solid var(--dark-line);
}

.accordion button {
  width: 100%;
  padding: 22px 0;
  text-align: left;
  color: var(--charcoal);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  font-family: var(--serif);
  font-size: 30px;
  cursor: pointer;
}

.accordion button::after {
  content: "+";
  float: right;
  color: var(--bronze);
  font-family: var(--sans);
}

.accordion button[aria-expanded="true"]::after {
  content: "–";
}

.accordion div {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--dark-line);
  color: rgba(17, 16, 14, 0.7);
}

.accordion p {
  margin: 0;
}

.gallery {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1160px) / 2));
  padding-right: max(20px, calc((100vw - 1160px) / 2));
  background: var(--charcoal);
  color: var(--ivory-2);
}

.gallery .section-heading p {
  color: rgba(246, 240, 230, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

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

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 900ms ease, filter 400ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

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

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

.events {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  color: var(--ivory-2);
  background:
    linear-gradient(rgba(17, 16, 14, 0.42), rgba(17, 16, 14, 0.78)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2000&q=82") center/cover fixed;
}

.events-inner {
  width: min(820px, 100%);
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  background: rgba(17, 16, 14, 0.7);
  border: 1px solid rgba(246, 240, 230, 0.22);
  backdrop-filter: blur(12px);
}

.events-inner p {
  color: rgba(246, 240, 230, 0.78);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: center;
}

.location-card address {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--sand);
  color: rgba(17, 16, 14, 0.76);
  font-style: normal;
}

.location-meta {
  display: grid;
  gap: 14px;
}

.location-meta div {
  padding: 28px;
  color: var(--ivory-2);
  background: var(--lake);
}

.location-meta span {
  display: block;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
  color: var(--sand);
}

.location-meta p {
  margin: 8px 0 0;
  color: rgba(246, 240, 230, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.9fr);
  gap: 70px;
  align-items: start;
  padding-top: 130px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--bronze);
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--ivory-2);
  border: 1px solid var(--dark-line);
  box-shadow: var(--shadow);
}

.field {
  grid-column: 1 / -1;
}

.field.two-col {
  grid-column: span 1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 16, 14, 0.7);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--charcoal);
  background: rgba(246, 240, 230, 0.76);
  border: 1px solid rgba(17, 16, 14, 0.16);
  border-radius: 0;
  transition: border-color 170ms ease, background 170ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sand);
  background: #fffdf8;
  outline: none;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #9b2f21;
}

.form-button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 0;
  color: var(--lake);
  font-weight: 700;
}

.form-status.is-error {
  color: #9b2f21;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.7fr;
  gap: 34px;
  padding: 70px max(20px, calc((100vw - 1160px) / 2)) 28px;
  color: rgba(246, 240, 230, 0.72);
  background: var(--charcoal);
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer a:hover {
  color: var(--sand);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes heroDrift {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(17, 16, 14, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: var(--container);
    margin: -76px auto 60px;
  }

  .scroll-cue {
    display: none;
  }

  .story-grid,
  .experiences,
  .location,
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .stat-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-panel div {
    border-bottom: 0;
    border-right: 1px solid rgba(246, 240, 230, 0.16);
  }

  .stat-panel div:last-child {
    border-right: 0;
  }

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

  .suite-card {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
  }

  .suite-card img {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .events {
    background-attachment: scroll;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .nav {
    min-height: 72px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-menu {
    top: 72px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-frame {
    inset: 86px 14px 18px;
  }

  .hero-content {
    padding: 140px 0 128px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.2rem);
  }

  .hero-card {
    margin-top: -94px;
  }

  .section,
  .story,
  .gallery {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section h2,
  .events h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

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

  .stat-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 240, 230, 0.16);
  }

  .suite-card {
    display: block;
  }

  .suite-card img {
    aspect-ratio: 4 / 3.5;
  }

  .experience-image::before {
    inset: 14px -10px -14px 10px;
  }

  .accordion button {
    font-size: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .events {
    min-height: 580px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .field.two-col {
    grid-column: 1 / -1;
  }

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

  .footer-bottom {
    display: grid;
  }
}

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

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