:root {
  --ink: #17211b;
  --muted: #66736b;
  --line: #dfe7e1;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --green: #176b49;
  --green-soft: #e7f3ec;
  --red: #d83b2d;
  --gold: #f2b544;
  --shadow: 0 24px 70px rgba(27, 40, 32, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 59, 45, 0.08), transparent 28rem),
    linear-gradient(180deg, #fbfcf8 0%, #f3f7f0 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 248, 0.86);
  border-bottom: 1px solid rgba(223, 231, 225, 0.8);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 30px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  background: var(--green-soft);
  color: var(--green);
}

.nav-links a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 32px rgba(23, 107, 73, 0.2);
}

.button.secondary {
  background: white;
  color: var(--green);
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero-text,
.section-lead,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

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

.proof-row div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  margin-bottom: 7px;
}

.proof-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.main-photo {
  width: 82%;
  aspect-ratio: 1 / 1;
}

.inset-photo {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: 52%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--paper);
}

.status-panel {
  position: absolute;
  left: 34px;
  bottom: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(216, 59, 45, 0.12);
}

.status-panel strong,
.status-panel span {
  display: block;
}

.status-panel span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.section-lead {
  max-width: 700px;
}

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

.feature-card,
.review-grid blockquote,
.workflow-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(27, 40, 32, 0.08);
}

.feature-card {
  min-height: 250px;
  padding: 26px;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.feature-card p,
.review-grid p,
.workflow-step p {
  color: var(--muted);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  color: var(--ink);
  font-weight: 700;
}

.check-list span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 14px;
}

.workflow-panel {
  padding: 20px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.workflow-step:last-child {
  border-bottom: 0;
}

.workflow-step > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff4dc;
  color: #805100;
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 34px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery figcaption {
  padding: 15px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

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

.review-grid blockquote {
  margin: 0;
  padding: 28px;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  border-radius: 8px;
  background: #18231d;
  color: white;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  font-weight: 700;
}

.contact-form {
  padding: 24px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-form textarea {
  min-height: 112px;
}

.contact-form .button {
  width: 100%;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.subpage-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
}

.subpage-hero h1 {
  margin-bottom: 22px;
}

.rate-note,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(27, 40, 32, 0.08);
}

.rate-note {
  padding: 24px;
}

.rate-note h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.rate-note div {
  display: grid;
  gap: 5px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.rate-note span {
  color: var(--muted);
}

.rooms-overview {
  border-top: 1px solid var(--line);
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(27, 40, 32, 0.08);
}

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

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

.room-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.room-card p,
.privacy-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.room-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.privacy-section img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rooms-cta {
  margin-top: 18px;
}

.cta-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.cta-panel .button {
  width: 100%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    justify-content: center;
  }

  .hero,
  .subpage-hero,
  .split-section,
  .privacy-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-media {
    min-height: 480px;
  }

  .feature-grid,
  .room-grid,
  .gallery,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 34px;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .hero,
  .subpage-hero,
  .section,
  .contact-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-text,
  .section-lead,
  .split-copy p,
  .contact-copy p {
    font-size: 16px;
  }

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

  .hero-media {
    min-height: 390px;
  }

  .main-photo {
    width: 88%;
  }

  .inset-photo {
    width: 58%;
    border-width: 6px;
  }

  .status-panel {
    left: 12px;
    right: 12px;
  }

  .section {
    padding: 62px 0;
  }

  .contact-section {
    padding: 24px;
  }

  .site-footer {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
