:root {
  --ink: #1c1c1c;
  --charcoal: #2a2522;
  --wine: #4b1e26;
  --paper: #f5f1ea;
  --sand: #e8ddd0;
  --linen: #d7c2a0;
  --gold: #b89b68;
  --white: #fffaf2;
  --muted: #83776b;
  --line: rgba(184, 155, 104, 0.24);
  --shadow: 0 28px 80px rgba(28, 28, 28, 0.28);
  color-scheme: light;
  font-family: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px 32px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 12, 15, 0.72), rgba(10, 12, 15, 0));
  transition: background 0.25s ease, border-color 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(28, 28, 28, 0.94);
  border-bottom: 1px solid rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.brand strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 0.86;
  text-transform: uppercase;
}

.brand em {
  display: block;
  color: rgba(255, 250, 242, 0.74);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 24px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 250, 242, 0.84);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-phone {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-gold {
  background: var(--gold);
  color: #1a1715;
}

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

.button-outline {
  border-color: rgba(28, 28, 28, 0.24);
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 250, 242, 0.46);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  background: rgba(255, 250, 242, 0.04);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f1214;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.88) 0%, rgba(8, 10, 12, 0.58) 37%, rgba(8, 10, 12, 0.12) 72%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.35), rgba(8, 10, 12, 0.18) 55%, rgba(8, 10, 12, 0.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(38px, 5.4vw, 70px);
  line-height: 0.94;
}

h3 {
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1;
}

p {
  line-height: 1.7;
}

.hero-lead {
  max-width: 600px;
  margin: 24px 0 36px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(17px, 1.8vw, 22px);
}

.booking-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
  width: min(980px, 100%);
  border: 1px solid rgba(255, 250, 242, 0.28);
  background: rgba(16, 17, 18, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card label {
  min-width: 0;
  padding: 17px 18px;
  border-right: 1px solid rgba(255, 250, 242, 0.14);
}

.booking-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 11px;
  font-weight: 700;
}

.booking-card input,
.booking-card select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  outline: none;
}

.booking-card option {
  color: var(--ink);
}

.booking-card .button {
  margin: 10px;
  min-width: 160px;
}

.facts-band {
  background: var(--paper);
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.facts-grid article {
  min-height: 175px;
  padding: 34px 18px 30px;
  text-align: center;
}

.facts-grid span {
  display: block;
  min-height: 34px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.facts-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: clamp(74px, 9vw, 126px) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(320px, 7fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.intro-copy {
  column-count: 2;
  column-gap: 42px;
  color: var(--charcoal);
}

.intro-copy p {
  margin-top: 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 560px) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.text-link {
  justify-self: end;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link::after {
  content: " →";
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.room-card {
  min-width: 0;
  border: 1px solid rgba(255, 250, 242, 0.12);
  background: #211f1d;
}

.room-card img {
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.room-card div {
  padding: 24px;
}

.room-card .eyebrow {
  margin-bottom: 10px;
  font-size: 10px;
}

.room-card h3 {
  margin-bottom: 12px;
  font-size: 29px;
}

.room-card p:not(.eyebrow) {
  min-height: 95px;
  margin: 0 0 18px;
  color: rgba(255, 250, 242, 0.74);
  font-size: 14px;
}

.room-card span {
  color: var(--gold);
  font-weight: 800;
}

.featured-room {
  grid-column: span 2;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(320px, 7fr) minmax(320px, 5fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.feature-layout.reverse {
  grid-template-columns: minmax(320px, 5fr) minmax(320px, 7fr);
}

.feature-image {
  position: relative;
}

.feature-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 1px solid var(--gold);
  opacity: 0.42;
}

.feature-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.feature-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 30px;
  color: var(--charcoal);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.editorial-grid article {
  min-height: 330px;
  padding: 34px;
  border: 1px solid rgba(255, 250, 242, 0.12);
  background: #252321;
}

.editorial-grid p {
  color: rgba(255, 250, 242, 0.74);
}

.image-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.image-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 18, 0.14), rgba(16, 17, 18, 0.85));
}

.image-tile div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.wellness-section {
  background: linear-gradient(180deg, #f6f1e9 0%, #e9ded0 100%);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.business-band {
  padding: 78px 0;
  background: var(--wine);
  color: var(--white);
}

.business-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-services span {
  padding: 14px 18px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.06);
  color: rgba(255, 250, 242, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.winery-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
}

.winery-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winery-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 241, 234, 0.96) 0%, rgba(245, 241, 234, 0.82) 45%, rgba(245, 241, 234, 0.15) 78%);
}

.winery-content {
  position: relative;
  z-index: 1;
}

.winery-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 30px;
}

.gallery-section {
  padding-bottom: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  overflow-x: auto;
  background: var(--ink);
}

.gallery-strip img {
  min-width: 180px;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.reviews-section {
  background: #fbf7ef;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
}

.rating-block,
.review-card {
  min-height: 230px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(28, 28, 28, 0.06);
}

.rating-block strong {
  display: block;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 76px;
  line-height: 0.9;
}

.rating-block strong span {
  color: var(--muted);
  font-size: 32px;
}

.rating-block p,
.review-card p {
  color: var(--charcoal);
}

.review-card span {
  color: var(--wine);
  font-weight: 800;
}

.final-cta {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 14, 15, 0.86), rgba(12, 14, 15, 0.42));
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.site-footer {
  background: #181715;
  color: rgba(255, 250, 242, 0.78);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 38px;
}

.footer-brand p {
  max-width: 360px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
}

.map-card {
  min-height: 116px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(184, 155, 104, 0.18), rgba(255, 250, 242, 0.08)),
    repeating-linear-gradient(45deg, rgba(255, 250, 242, 0.12) 0 1px, transparent 1px 16px);
  border: 1px solid rgba(255, 250, 242, 0.12);
}

.map-card span,
.map-card strong {
  display: block;
}

.map-card strong {
  margin-top: 8px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.1);
  color: rgba(255, 250, 242, 0.48);
  font-size: 12px;
}

.sticky-booking {
  position: fixed;
  z-index: 25;
  left: 50%;
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(28, 28, 28, 0.92);
  color: var(--white);
  border: 1px solid rgba(255, 250, 242, 0.12);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.sticky-booking.is-visible {
  display: inline-flex;
}

.sticky-booking span {
  padding: 0 14px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.sticky-booking .button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 10px;
}

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

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    padding: 24px;
    background: rgba(28, 28, 28, 0.96);
    border: 1px solid rgba(255, 250, 242, 0.12);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .facts-grid,
  .rooms-grid,
  .reviews-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-room {
    grid-column: span 1;
  }

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

  .large-tile {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 880px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 110px 0 36px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

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

  .booking-card label {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  }

  .booking-card .button {
    width: calc(100% - 20px);
  }

  .split-layout,
  .feature-layout,
  .feature-layout.reverse,
  .section-heading,
  .final-cta-content {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    column-count: 1;
  }

  .text-link {
    justify-self: start;
  }

  .facts-grid,
  .rooms-grid,
  .editorial-grid,
  .reviews-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid article {
    min-height: auto;
    padding: 24px 12px;
  }

  .section {
    padding: 72px 0;
  }

  .feature-image::before {
    display: none;
  }

  .sticky-booking {
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: none;
    justify-content: center;
  }

  .sticky-booking span {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 22px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sticky-booking.is-visible {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .business-services span {
    width: 100%;
  }
}
