:root {
  --ink: #17211f;
  --muted: #5f6e69;
  --paper: #fbf8f2;
  --sand: #e8dcc9;
  --teal: #087a78;
  --teal-dark: #075452;
  --coral: #d46f4d;
  --white: #ffffff;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 18px 55px rgba(20, 34, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.site-header.is-solid {
  background: rgba(251, 248, 242, 0.95);
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 36px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 22, 20, 0.82), rgba(11, 22, 20, 0.38) 48%, rgba(11, 22, 20, 0.08)),
    linear-gradient(0deg, rgba(11, 22, 20, 0.78), rgba(11, 22, 20, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
  padding-bottom: 78px;
}

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

.hero .eyebrow {
  color: #ffb18e;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 10vw, 126px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.primary {
  background: var(--coral);
  color: var(--white);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.dark {
  background: var(--teal-dark);
}

.outline {
  border: 1px solid var(--line);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-panel div,
.host-stats div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child,
.host-stats div:last-child {
  border-right: 0;
}

.hero-panel strong,
.host-stats strong {
  display: block;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
}

.hero-panel span,
.host-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.band,
.suites,
.host {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

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

.section-heading {
  max-width: 720px;
}

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 32px;
  max-width: 1180px;
  align-items: end;
  margin-bottom: 34px;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.intro-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #f6efe4;
}

.icon,
.suite-meta {
  color: var(--teal);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.suite-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.suite-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.suite-body {
  padding: 24px;
}

.suite-body p {
  color: var(--muted);
}

.suite-body .suite-meta {
  color: var(--teal);
  margin-bottom: 12px;
}

.suite-body a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.feature-card {
  background: var(--teal-dark);
  color: var(--white);
}

.feature-card .suite-body p,
.feature-card .suite-body a {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card .suite-meta {
  color: #ffb18e;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.amenity-list span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border-left: 4px solid var(--teal);
  background: #f6efe4;
  font-weight: 800;
}

.host {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.35fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
  background: var(--teal-dark);
  color: var(--white);
}

.host-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.host-card {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.host-card .suite-meta {
  color: #ffb18e;
  margin-bottom: 10px;
}

.host-card h3 {
  margin-bottom: 4px;
  font-size: 34px;
}

.host-card span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.host-stats {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.host-stats div {
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.host-stats div:last-child {
  border-bottom: 0;
}

.review-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.review-notes article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.review-notes strong,
.review-notes span {
  display: block;
}

.review-notes strong {
  font-size: 22px;
}

.review-notes span {
  margin: 8px 0 18px;
  color: #ffb18e;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-notes p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.contact p:not(.eyebrow) {
  color: var(--muted);
  max-width: 720px;
  font-size: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .section-heading.wide,
  .host,
  .contact {
    grid-template-columns: 1fr;
  }

  .suite-grid,
  .amenity-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .host-card {
    min-height: auto;
  }

  .review-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }

  .nav {
    max-width: 230px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 92vh;
    padding: 116px 18px 22px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-panel,
  .host-stats,
  .suite-grid,
  .amenity-list {
    grid-template-columns: 1fr;
  }

  .hero-panel div,
  .host-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child,
  .host-stats div:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: clamp(54px, 18vw, 74px);
  }

  .suite-card img {
    height: 230px;
  }

  .footer {
    flex-direction: column;
  }
}
