:root {
  --ink: #16211f;
  --muted: #5f6f6a;
  --paper: #f8f5ef;
  --panel: #ffffff;
  --accent: #b5874b;
  --accent-strong: #8c6436;
  --sage: #789083;
  --clay: #b5654d;
  --line: rgba(22, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(22, 33, 31, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-elevated {
  color: var(--ink);
  background: rgba(248, 245, 239, 0.94);
  box-shadow: 0 12px 30px rgba(22, 33, 31, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: 164px;
  min-width: 144px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-header.is-elevated .brand img {
  filter: invert(1) sepia(0.2) saturate(0.7) hue-rotate(98deg) brightness(0.38);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(181, 135, 75, 0.28);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 132px clamp(20px, 5vw, 72px) 0;
  color: #fff;
  overflow: hidden;
}

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

.hero-media {
  background-image: url("assets/images/hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 16, 15, 0.88), rgba(9, 16, 15, 0.5) 47%, rgba(9, 16, 15, 0.2)),
    linear-gradient(0deg, rgba(9, 16, 15, 0.7), rgba(9, 16, 15, 0.08) 48%);
}

.hero-content {
  position: relative;
  align-self: center;
  max-width: 850px;
  padding-bottom: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.2rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  position: relative;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  background: rgba(248, 245, 239, 0.13);
  backdrop-filter: blur(16px);
}

.hero-facts > * {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 850;
  text-align: center;
}

.hero-facts > *:last-child {
  border-right: 0;
}

.booking-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.5fr);
  gap: 22px;
  align-items: end;
  margin: -34px clamp(20px, 5vw, 72px) 0;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-strip h2,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.booking-form,
.inquiry-form {
  display: grid;
  gap: 12px;
}

.booking-form {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
}

textarea {
  padding-top: 12px;
  resize: vertical;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.intro,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.intro-text p:not(.section-kicker),
.image-band p,
.split-section p,
.garage p,
.footer p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.signal-grid {
  display: grid;
  gap: 12px;
}

.signal-grid article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.signal-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
}

.signal-grid span,
.room-card p,
.contact-list a {
  color: var(--muted);
  line-height: 1.55;
}

.image-band,
.garage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #fff;
}

.image-band img,
.garage img {
  width: 100%;
  height: min(430px, 58vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link.light {
  color: #fff;
}

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

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

.room-card {
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 33, 31, 0.1);
}

.room-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

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

.room-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.dark-card {
  display: flex;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(rgba(22, 33, 31, 0.78), rgba(22, 33, 31, 0.92)),
    url("assets/images/hero.jpg") center / cover;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.metric-row span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.metric-row strong,
.metric-row em {
  display: block;
}

.metric-row strong {
  font-size: 1.45rem;
}

.metric-row em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
}

.event-photos {
  display: grid;
  gap: 14px;
}

.event-photos img {
  width: 100%;
  height: 250px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.garage {
  background: #eef1ea;
}

.contact-section {
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 760;
}

.inquiry-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 38px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer strong {
  color: #fff;
}

.footer p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  justify-content: flex-end;
  font-weight: 850;
}

.mobile-actions {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(22, 33, 31, 0.92);
  box-shadow: 0 18px 42px rgba(22, 33, 31, 0.3);
  backdrop-filter: blur(14px);
}

.mobile-actions a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
}

.mobile-actions.is-visible {
  display: none;
}

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

  .nav {
    display: none;
  }

  .booking-strip,
  .booking-form,
  .intro,
  .split-section,
  .contact-section,
  .image-band,
  .garage,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .booking-strip h2,
  .section h2 {
    font-size: 2.6rem;
  }

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

  .hero-facts > *:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand {
    width: 136px;
    min-width: 120px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 0;
  }

  .hero h1 {
    font-size: 3.35rem;
    line-height: 0.95;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > * {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .booking-strip {
    margin: 0;
    border-radius: 0;
    padding: 22px 18px;
  }

  .section {
    padding: 64px 18px;
  }

  .booking-strip h2,
  .section h2 {
    font-size: 2.1rem;
  }

  .signal-grid article {
    grid-template-columns: 82px 1fr;
  }

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

  .image-band img,
  .garage img,
  .event-photos img {
    height: 230px;
  }

  .footer {
    display: block;
    padding-bottom: 96px;
  }

  .social-row {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .mobile-actions.is-visible {
    display: grid;
  }
}
