:root {
  --ink: #1f2a24;
  --muted: #68736d;
  --line: #d9e0d8;
  --paper: #f7f5ef;
  --white: #ffffff;
  --pine: #28523f;
  --moss: #6c8a57;
  --clay: #b65f3b;
  --shadow: 0 24px 60px rgba(31, 42, 36, 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;
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(217, 224, 216, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--pine);
  color: var(--white);
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--pine);
}

.nav-cta {
  color: var(--pine);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 29, 24, 0.78),
    rgba(18, 29, 24, 0.28) 58%,
    rgba(18, 29, 24, 0.12)
  );
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(48px, 10vh, 96px) clamp(18px, 6vw, 84px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #f1b087;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
}

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

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-info div {
  padding: 24px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  font-size: 22px;
}

.quick-info span {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split,
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.room-list {
  display: grid;
  gap: 14px;
}

.room-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(31, 42, 36, 0.06);
}

.room-list span {
  color: var(--pine);
  font-weight: 900;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.gallery-grid img {
  height: clamp(240px, 34vw, 460px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-preview {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.72) 1px, transparent 1px), #cfdbcb;
  background-size: 42px 42px;
  color: var(--pine);
  text-align: center;
}

.map-preview span {
  display: block;
  font-size: 42px;
  font-weight: 900;
}

.form-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

.demo-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid #dfe5d5;
  background: #fbfcf8;
}

.demo-form label {
  display: grid;
  gap: 6px;
  color: #46503e;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-form small {
  color: #637059;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
}

.form-destination {
  padding-bottom: 12px;
  border-bottom: 1px solid #dfe5d5;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid #cfd8c1;
  border-radius: 4px;
  padding: 11px 12px;
  color: #17220e;
  background: #fff;
  font: inherit;
  resize: vertical;
}

.demo-form textarea {
  min-height: 96px;
}

.demo-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #46503e;
  font-size: 0.92rem;
}

.form-status--success {
  color: #166534;
}

.form-status--error {
  color: #b42318;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--pine);
  color: var(--white);
}

.contact-band .eyebrow {
  color: #f1b087;
}

.contact-band h2 {
  font-size: clamp(28px, 4vw, 48px);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .quick-info,
  .split,
  .location,
  .form-feature,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
