:root {
  color-scheme: light;
  --paper: #f6f0e5;
  --paper-deep: #eadfce;
  --ink: #211d18;
  --muted: #6d6256;
  --forest: #1f3f35;
  --forest-soft: #315b4e;
  --clay: #9a4732;
  --gold: #c79a43;
  --line: rgba(33, 29, 24, 0.16);
  --white: #fffaf1;
  --shadow: 0 24px 60px rgba(36, 31, 23, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(31, 63, 53, 0.05) 1px, transparent 1px),
    linear-gradient(var(--paper), var(--paper));
  background-size: 52px 52px, auto;
}

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

a {
  color: inherit;
}

.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: 18px clamp(18px, 4vw, 52px);
  background: rgba(246, 240, 229, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.booking-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.nav {
  gap: clamp(10px, 2vw, 28px);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  color: var(--forest);
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--clay);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--forest);
}

.menu-toggle {
  display: none;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.language-switcher a {
  padding: 6px 7px;
  color: var(--forest);
  text-decoration: none;
}

.language-switcher a[aria-current="true"] {
  background: var(--forest);
  color: var(--paper);
}

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

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 25, 20, 0.74), rgba(16, 25, 20, 0.24) 55%, rgba(16, 25, 20, 0.08)),
    url("/images/responsive/house-front-1024.jpg?v=20260523-5") center / cover;
  background:
    linear-gradient(90deg, rgba(16, 25, 20, 0.74), rgba(16, 25, 20, 0.24) 55%, rgba(16, 25, 20, 0.08)),
    image-set(
      url("/images/responsive/house-front-768.jpg?v=20260523-5") 1x,
      url("/images/responsive/house-front-1024.jpg?v=20260523-5") 2x
    ) center / cover;
}

.hero-content {
  position: relative;
  width: min(840px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c56f;
}

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

h1 {
  max-width: 950px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 11vw, 9.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  color: var(--forest);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 1.35rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

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

.hero-actions,
.booking-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--forest);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.button.secondary {
  background: rgba(255, 250, 241, 0.9);
  color: var(--forest);
}

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

.quick-info div {
  min-height: 130px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.quick-info strong,
.quick-info span,
.room-card span,
.site-footer span,
.contact-panel span,
.form-note {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.quick-info strong {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 1.05rem;
}

.quick-info span,
.room-card span,
.site-footer span,
.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(34px, 7vw, 96px);
}

.flow > * + * {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

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

.section-heading a {
  color: var(--clay);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

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

.room-card,
.room-detail,
.contact-panel,
.booking-form,
.visit-notes article {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.room-card {
  overflow: hidden;
}

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

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

.room-card p {
  min-height: 74px;
  margin-bottom: 18px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  gap: 14px;
  padding-top: 0;
}

.photo-strip img {
  width: 100%;
  height: clamp(220px, 32vw, 420px);
  object-fit: cover;
}

.photo-strip img:nth-child(even) {
  margin-top: 44px;
}

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

.booking-band h2,
.booking-band p {
  color: var(--white);
}

.booking-band .eyebrow {
  color: var(--gold);
}

.page-hero {
  min-height: auto;
  padding-top: 150px;
  background: var(--paper-deep);
}

.page-hero.compact {
  min-height: 54vh;
}

.page-hero h1 {
  color: var(--forest);
  font-size: clamp(3rem, 8vw, 7rem);
}

.page-hero p {
  max-width: 720px;
}

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

.room-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1.08fr);
}

.room-detail.reverse {
  grid-template-columns: minmax(280px, 1.08fr) minmax(260px, 0.92fr);
}

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

.room-detail img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.room-detail .flow {
  padding: clamp(28px, 5vw, 56px);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: var(--muted);
}

.feature-list li {
  padding-left: 22px;
  background: linear-gradient(var(--gold), var(--gold)) left 0.65em / 8px 2px no-repeat;
}

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

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: clamp(240px, 24vw, 420px);
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--forest);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-hero {
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 390px);
  gap: 32px;
  align-items: end;
}

.contact-panel {
  padding: 24px;
}

.contact-panel span {
  margin-top: 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel span:first-child {
  margin-top: 0;
}

.contact-panel a {
  display: block;
  margin-top: 4px;
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-panel p {
  margin: 4px 0 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.booking-com-form {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.booking-form .full {
  grid-column: 1 / -1;
}

label {
  color: var(--forest);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
}

.visit-notes {
  display: grid;
  gap: 16px;
}

.visit-notes article {
  padding: 24px;
}

.visit-notes h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #1a1814;
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: var(--white);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .language-switcher {
    margin-top: -6px;
  }

  .quick-info,
  .room-grid,
  .split,
  .booking-band,
  .room-detail,
  .room-detail.reverse,
  .booking-hero,
  .booking-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 620px) {
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px 10px;
    padding: 8px 12px;
    align-items: center;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .brand span:last-child {
    overflow: hidden;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    display: none;
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    padding: 8px 0 2px;
    border-top: 1px solid var(--line);
    font-size: 0.74rem;
    gap: 0;
    overflow: visible;
  }

  .site-header[data-menu-open="true"] .nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav a {
    padding: 9px 0;
  }

  .nav-cta {
    padding: 0;
    border: 0;
  }

  .language-switcher {
    order: 2;
    justify-self: end;
    margin-top: 0;
    font-size: 0.68rem;
  }

  .language-switcher a {
    padding: 5px 6px;
  }

  .menu-toggle {
    order: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--forest);
    background: transparent;
    color: var(--forest);
  }

  .menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero,
  .page-hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .quick-info,
  .gallery-grid,
  .photo-strip,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide {
    grid-column: span 1;
  }

  .photo-strip img:nth-child(even) {
    margin-top: 0;
  }

  .room-detail img {
    display: block;
    height: 260px;
    min-height: 0;
  }

  .room-detail .flow {
    position: relative;
    z-index: 1;
    padding: 24px 20px 26px;
    background: var(--white);
  }

  .room-detail h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }
}
