:root {
  --charcoal: #14110e;
  --charcoal-soft: #1c1814;
  --midnight: #0e1424;
  --midnight-lift: #161d30;
  --ivory: #f3eee4;
  --ivory-mute: #d8d0c2;
  --walnut: #3a281c;
  --oak: #5a4333;
  --stone: #8c867b;
  --burgundy: #5a222c;
  --brass: #c6a56c;
  --brass-dim: #9a7d4a;
  --emerald: #2a463c;
  --champagne: #e6d4b2;
  --ink: #1a1612;
  --error: #c45c58;
  --success: #3d6b58;
  --header-h: 5.25rem;
  --max: 74rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html.is-locked,
body.is-locked {
  overflow: hidden;
}

body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ivory-mute);
  background: var(--charcoal);
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  padding-top: var(--header-h);
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1,
h2,
h3,
h4,
p,
li,
label,
figcaption,
blockquote,
td,
th,
address {
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--brass);
  color: var(--charcoal);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 0.75rem;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(calc(100% - 2.4rem), var(--max));
  margin-inline: auto;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 38rem;
  color: var(--ivory-mute);
}

.deco-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.4rem 0 1.8rem;
  color: var(--brass);
}

.deco-rule::before,
.deco-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.45;
}

.deco-rule span {
  width: 0.45rem;
  height: 0.45rem;
  transform: rotate(45deg);
  border: 1px solid currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  max-width: 100%;
  padding: 0.8rem 1.55rem;
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--champagne);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.modal-close:focus-visible,
.site-nav a:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible,
.skip-link:focus {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.btn:hover {
  background: var(--brass);
  color: var(--charcoal);
}

.btn:active {
  transform: translateY(1px);
}

.btn--solid {
  background: var(--brass);
  color: var(--charcoal);
}

.btn--solid:hover {
  background: var(--champagne);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(20, 17, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 165, 108, 0.18);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(14, 20, 36, 0.94);
  border-bottom-color: rgba(198, 165, 108, 0.32);
}

.header-inner {
  width: min(calc(100% - 2rem), 82rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border: 1px solid rgba(198, 165, 108, 0.4);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(198, 165, 108, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  height: 1px;
  background: var(--champagne);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-toggle span {
  top: 50%;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
  right: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav ul {
  display: flex;
  gap: 1.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ivory);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s var(--ease);
}

.hero:hover img {
  transform: scale(1.1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.2) 0%, rgba(14, 20, 36, 0.55) 42%, rgba(14, 11, 9, 0.92) 100%),
    linear-gradient(90deg, rgba(14, 11, 9, 0.55), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto 4.5rem;
}

.hero-copy p {
  max-width: 34rem;
}

.page-hero {
  min-height: 62vh;
}

/* Sections */
.band {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}

.band--midnight {
  background: var(--midnight);
}

.band--walnut {
  background: var(--walnut);
}

.band--ivory {
  background: var(--ivory);
  color: var(--ink);
}

.band--ivory h1,
.band--ivory h2,
.band--ivory h3 {
  color: var(--charcoal);
}

.band--ivory .kicker {
  color: var(--brass-dim);
}

.band--ivory .lede,
.band--ivory p {
  color: #433c35;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split--reverse .copy {
  order: 2;
}

.frame {
  position: relative;
}

.frame img {
  width: 100%;
  height: min(38rem, 78vh);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}

.frame:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.06);
}

.frame::before {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(198, 165, 108, 0.45);
  z-index: 2;
  pointer-events: none;
}

.frame--tall img {
  height: min(46rem, 88vh);
}

.caption {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 165, 108, 0.16);
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 16.5rem;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

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

.card-body {
  padding: 1.35rem 1.25rem 1.55rem;
}

.card-body h3 {
  margin-bottom: 0.45rem;
}

.card-body p {
  margin: 0;
  font-size: 0.98rem;
}

.amenity {
  list-style: none;
  margin: 0.9rem 0 1.2rem;
  padding: 0;
  font-size: 0.88rem;
  color: var(--champagne);
}

.amenity li {
  padding: 0.28rem 0 0.28rem 1rem;
  position: relative;
}

.amenity li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border: 1px solid var(--brass);
  position: absolute;
  left: 0;
  top: 0.7rem;
  transform: rotate(45deg);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.stat {
  border-top: 1px solid rgba(198, 165, 108, 0.28);
  padding-top: 1rem;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ivory);
  font-weight: 500;
}

.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.35;
  color: var(--ivory);
  margin: 0;
  max-width: 22ch;
}

.notice {
  border-left: 2px solid var(--brass);
  padding: 0.2rem 0 0.2rem 1.1rem;
  color: var(--champagne);
}

.stack {
  display: grid;
  gap: 1.6rem;
}

.feature-list {
  display: grid;
  gap: 1.15rem;
  margin: 1.6rem 0 0;
}

.feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.num {
  font-family: var(--serif);
  color: var(--brass);
  font-size: 1.4rem;
  line-height: 1;
}

.cta-band {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14, 20, 36, 0.55), rgba(14, 11, 9, 0.88)),
    var(--burgundy);
  padding: clamp(4rem, 9vw, 7rem) 1.2rem;
}

.cta-band p {
  margin-inline: auto;
}

.cta-band .btn-row {
  justify-content: center;
}

.offset-block {
  margin-top: 2rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.mosaic .frame:first-child {
  grid-row: 1 / span 2;
}

.mosaic img {
  height: 100%;
  min-height: 14rem;
}

.legal {
  max-width: 48rem;
}

.legal h2 {
  font-size: 1.55rem;
  margin-top: 2.2rem;
}

.legal a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal a:hover {
  color: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.panel {
  border: 1px solid rgba(198, 165, 108, 0.22);
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.025);
}

.panel h2 {
  font-size: 1.5rem;
}

.plain-text {
  margin: 0.35rem 0 0.9rem;
  color: var(--champagne);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.3rem;
  margin: 1rem 0 0;
}

.socials a {
  color: var(--brass);
  letter-spacing: 0.08em;
}

.socials a:hover {
  color: var(--ivory);
}

.map-note {
  margin-top: 1.4rem;
  font-size: 0.95rem;
}

/* Form */
.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(14, 11, 9, 0.45);
  border: 1px solid rgba(198, 165, 108, 0.28);
  color: var(--ivory);
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brass);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--error);
}

.field-error {
  min-height: 1.1rem;
  font-size: 0.82rem;
  color: var(--error);
}

.form .btn {
  justify-self: start;
  min-width: 12rem;
}

.form .btn.is-success {
  background: var(--success);
  border-color: var(--success);
  color: var(--ivory);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 28rem);
  max-height: min(90vh, 34rem);
  overflow: auto;
  background: var(--charcoal-soft);
  border: 1px solid rgba(198, 165, 108, 0.4);
  padding: 2rem 1.5rem 1.6rem;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(198, 165, 108, 0.4);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.modal-dialog h2 {
  padding-right: 2.4rem;
}

/* Footer */
.site-footer {
  background: #0c0a08;
  border-top: 1px solid rgba(198, 165, 108, 0.2);
  padding: 3.2rem 0 1.6rem;
  color: var(--ivory-mute);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h2 {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--brass);
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

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

.copyright {
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(198, 165, 108, 0.14);
  font-size: 0.85rem;
  color: var(--stone);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 4.4rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 11, 9, 0.97);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    padding: 1.5rem 1.2rem 2rem;
    overflow: auto;
    height: 800px;
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    font-size: 1.05rem;
    padding: 1rem 0.2rem;
    border-bottom: 1px solid rgba(198, 165, 108, 0.14);
  }

  .split,
  .split--reverse,
  .grid-3,
  .grid-2,
  .stat-row,
  .contact-grid,
  .footer-grid,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .split--reverse .copy {
    order: 0;
  }

  .mosaic .frame:first-child {
    grid-row: auto;
  }

  .frame img,
  .frame--tall img {
    height: 22rem;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    margin-bottom: 2.4rem;
  }

  .btn,
  .card-body,
  .panel,
  .modal-dialog,
  .nav-toggle,
  .site-nav a {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .card img {
    height: 13.5rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero,
  .page-hero {
    min-height: auto;
    padding: 4.5rem 0 3rem;
  }

  .hero img {
    position: absolute;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero img,
  .card img,
  .frame img {
    transform: none !important;
  }

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