:root {
  --ink: #15120f;
  --muted: #6f675f;
  --line: #ded7ce;
  --paper: #fbfaf7;
  --warm: #efe6da;
  --clay: #8c5f48;
  --clay-dark: #593927;
  --sage: #607366;
  --charcoal: #24211e;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(33, 28, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(21, 18, 15, 0.78), rgba(21, 18, 15, 0.08));
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

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

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

.language-select select {
  border: 0;
  color: var(--ink);
  background: var(--white);
  border-radius: 3px;
  min-height: 30px;
  padding: 0 8px;
  font: inherit;
}

.header-book,
.primary-action,
.secondary-action,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-action.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.header-book:hover,
.primary-action:hover,
.secondary-action:hover,
.map-link:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero picture img {
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.82), rgba(18, 15, 12, 0.34) 48%, rgba(18, 15, 12, 0.08)),
    linear-gradient(0deg, rgba(18, 15, 12, 0.72), rgba(18, 15, 12, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 36px));
  margin: 0 0 clamp(84px, 12vh, 132px) clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.92;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

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

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 54px);
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(520px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(21, 18, 15, 0.36);
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hero-panel strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
}

.band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 6vw, 84px);
}

.section-label span {
  display: block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-label h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  background: var(--paper);
}

.intro-copy p,
.location-copy p,
.booking-copy p,
.gallery-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.facts div,
.policy-grid div {
  min-height: 96px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.facts dt,
.policy-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.facts dd,
.policy-grid strong {
  display: block;
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.rooms,
.policy {
  background: var(--warm);
}

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

.room-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(54, 43, 33, 0.08);
}

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

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

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

.room-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.amenity-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  margin-top: 42px;
}

.amenity-layout img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.amenity-list div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.amenity-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.amenity-list span {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 36px;
}

.gallery-head p {
  max-width: 430px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-grid img {
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img:last-child {
  grid-column: span 2;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.location {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.location-copy p {
  max-width: 650px;
  margin-top: 24px;
}

.map-link {
  width: fit-content;
  margin-top: 28px;
  color: var(--white);
  background: var(--sage);
}

.map-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 33, 30, 0.88), rgba(96, 115, 102, 0.84)),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(255, 255, 255, 0.13) 59px 60px),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.13) 59px 60px);
  box-shadow: var(--shadow);
}

.map-card strong,
.map-card span {
  position: relative;
  z-index: 2;
}

.map-card strong {
  margin-top: 74px;
  font-size: 34px;
}

.map-card span {
  color: rgba(255, 255, 255, 0.72);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: calc(50% - 64px);
  left: calc(50% - 14px);
  width: 28px;
  height: 28px;
  border: 7px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  transform: rotate(-45deg);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
}

.map-lines {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.booking {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  color: var(--white);
  background: var(--charcoal);
}

.booking h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 500;
}

.booking-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.booking-actions {
  display: grid;
  gap: 12px;
  min-width: min(310px, 100%);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
}

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

  .nav-links {
    display: none;
  }

  .intro,
  .amenity-layout,
  .location,
  .booking {
    grid-template-columns: 1fr;
  }

  .room-grid,
  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-head {
    display: block;
  }

  .gallery-head p {
    margin-top: 18px;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-select {
    min-height: 40px;
    padding: 0 8px;
  }

  .language-select span {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-book {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 220px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 18px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-panel div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px 16px;
  }

  .hero-panel strong {
    margin: 0;
    font-size: 17px;
  }

  .facts,
  .room-grid,
  .policy-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .map-card {
    min-height: 360px;
  }

  .footer {
    display: grid;
  }
}
