:root {
  --ink: #263238;
  --muted: #647178;
  --paper: #fffdf8;
  --soft: #f2eee6;
  --line: #ddd4c6;
  --forest: #305c4a;
  --forest-dark: #1f3d32;
  --clay: #a95739;
  --sky: #d9ebef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(32, 45, 50, 0.14);
}

* {
  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", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 30px rgba(38, 50, 56, 0.12);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.lang-button {
  min-width: 34px;
  height: 32px;
  border: 0;
  color: inherit;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--forest-dark);
  background: var(--white);
}

.site-header.is-scrolled .lang-button.is-active,
.site-header.is-open .lang-button.is-active {
  color: var(--white);
  background: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 120px clamp(20px, 5vw, 72px) 92px;
}

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

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(16, 31, 28, 0.78), rgba(16, 31, 28, 0.4) 48%, rgba(16, 31, 28, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ffd0b6;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.primary:hover {
  background: var(--forest-dark);
}

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

.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-dark {
  color: var(--forest-dark);
  border-color: var(--forest-dark);
  background: transparent;
}

.quick-panel {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.quick-panel span {
  padding: 16px;
  text-align: center;
  font-weight: 800;
  background: rgba(15, 24, 24, 0.22);
}

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

.intro,
.split,
.reservation,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.location-highlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--sky);
}

.location-highlight h2 {
  margin-bottom: 0;
}

.location-copy {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 253, 248, 0.78);
  border-left: 6px solid var(--clay);
}

.location-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
}

.section-copy {
  max-width: 780px;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.portrait {
  margin: 0;
}

.portrait img,
.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.portrait figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 22px;
}

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

.card,
.mini-card,
.price-card,
.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(38, 50, 56, 0.08);
}

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

.card-body {
  padding: 22px;
}

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

.text-button {
  border: 0;
  padding: 0;
  color: var(--forest-dark);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  color: var(--white);
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.price-label {
  display: block;
  margin-bottom: 16px;
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.featured .price-label {
  color: #ffc7aa;
}

.price-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.price-card p,
.policy-note {
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.policy-note {
  max-width: 880px;
  margin-top: 24px;
  font-size: 0.96rem;
}

.split {
  grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--forest);
  border-bottom: 3px solid var(--forest);
  transform: rotate(-45deg);
}

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

.mini-card {
  overflow: hidden;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.mini-card h3 {
  padding: 16px 18px 20px;
  margin: 0;
}

.reservation {
  align-items: start;
  background: linear-gradient(180deg, var(--paper), #eef5f4);
}

.contact-strip {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-weight: 800;
}

.booking-form {
  padding: clamp(22px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cabfad;
  background: #fffefa;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(48, 92, 74, 0.14);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-error {
  min-height: 24px;
  color: #9d2d24;
  font-weight: 800;
}

.contact {
  grid-template-columns: minmax(0, 1fr) auto;
  background: var(--forest-dark);
  color: var(--white);
}

.contact .eyebrow {
  color: #ffc7aa;
}

address {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: #182923;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 6px 0 0;
}

.legal {
  max-width: 560px;
  text-align: right;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--forest-dark);
  color: var(--white);
}

.service-band div {
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.06);
}

.service-band strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.accommodation-list {
  display: grid;
  gap: 38px;
}

.room-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.55fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(20px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(38, 50, 56, 0.08);
}

.room-detail.reverse .room-copy {
  order: 2;
}

.room-detail h3,
.activity-panel h3,
.gallery-sections h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.room-copy p {
  color: var(--muted);
}

.gallery-preview {
  display: grid;
  gap: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-preview.large .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #d8d0c2;
  cursor: zoom-in;
  aspect-ratio: 16 / 11;
}

.room-detail .gallery-item {
  aspect-ratio: 4 / 3;
}

.room-detail .gallery-item:first-child,
.gallery-preview.large .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 22px 10px 8px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(12, 22, 20, 0.72));
  text-align: left;
}

.gallery-number {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.gallery-title {
  min-width: 0;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-more {
  justify-self: start;
}

.activity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.activity-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(38, 50, 56, 0.08);
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  min-width: 0;
}

.activity-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px 8px 8px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.activity-link:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 115, 116, 0.35);
  box-shadow: 0 10px 24px rgba(38, 50, 56, 0.08);
}

.activity-link .activity-number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.activity-link span:last-child {
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-sections {
  display: grid;
  gap: 48px;
}

.gallery-sections section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 68px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 58px 22px 26px;
  background: rgba(12, 20, 18, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  grid-column: 2;
  justify-self: center;
  max-width: min(1320px, 100%);
  max-height: 82vh;
  object-fit: contain;
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0 0;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox p a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  width: 56px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav.prev {
  grid-column: 1;
  justify-self: start;
}

.lightbox-nav.next {
  grid-column: 3;
  justify-self: end;
}

.has-lightbox {
  overflow: hidden;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .quick-panel,
  .lodging-grid,
  .price-layout,
  .visit-grid,
  .service-band,
  .location-highlight,
  .room-detail,
  .activity-layout,
  .intro,
  .split,
  .reservation,
  .contact {
    grid-template-columns: 1fr;
  }

  .room-detail.reverse .room-copy {
    order: 0;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

  .legal {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 88vh;
    padding-bottom: 150px;
  }

  .quick-panel {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-preview.large .gallery-grid {
    grid-template-columns: 1fr;
  }

  .room-detail .gallery-item:first-child,
  .gallery-preview.large .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .lightbox-nav {
    width: 42px;
    height: 58px;
    font-size: 2.4rem;
  }

  .activity-list {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    display: block;
  }

  .button {
    width: 100%;
  }
}
