:root {
  --cream: #ffef9a;
  --cream-soft: #fff6c4;
  --paper: #fffdf2;
  --yellow: #fad107;
  --yellow-deep: #e4bc00;
  --orange: #f98202;
  --red: #a0211a;
  --maroon: #800000;
  --green: #2d8a38;
  --green-deep: #1c5c26;
  --green-soft: #6fb36a;
  --ink: #222222;
  --muted: #444444;
  --line: rgba(160, 33, 26, 0.16);
  --shadow: 0 14px 40px rgba(34, 34, 34, 0.12);
  --radius: 18px;
  --header-h: 78px;
  --font-display: "Source Serif 4", "Times New Roman", Times, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

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

a {
  color: var(--red);
}

a:hover {
  color: var(--orange);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.windows {
  display: flex;
  height: 10px;
  width: 100%;
}

.windows span {
  flex: 1;
}

.windows span:nth-child(1) { background: var(--green); }
.windows span:nth-child(2) { background: var(--yellow); }
.windows span:nth-child(3) { background: var(--red); }
.windows span:nth-child(4) { background: var(--orange); }
.windows span:nth-child(5) { background: var(--green-soft); }
.windows span:nth-child(6) { background: var(--yellow-deep); }
.windows span:nth-child(7) { background: var(--maroon); }
.windows span:nth-child(8) { background: var(--green-deep); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 210px;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  color: var(--red);
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.2rem 1.05rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.lang {
  display: flex;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.lang a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
}

.lang a[aria-current="true"] {
  color: var(--ink);
  background: var(--yellow);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(160, 33, 26, 0.22);
}

.btn:hover {
  background: var(--orange);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  box-shadow: none;
  border: 2px solid var(--red);
}

.btn-ghost:hover {
  background: var(--red);
  color: #fff;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: var(--yellow);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: #1c5c26;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 92, 38, 0.1) 0%, rgba(28, 20, 12, 0.55) 48%, rgba(28, 20, 12, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.4rem;
}

.kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 0.8rem;
  font-weight: 650;
  max-width: 16ch;
}

.hero p {
  max-width: 42ch;
  font-size: 1.15rem;
  margin: 0 0 1.5rem;
  color: #fff6c4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-head h2,
.page-hero h1,
.content h2 {
  font-family: var(--font-display);
  color: var(--red);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  font-weight: 650;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split img,
.card img,
.room-card img,
.gallery a img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.fact {
  background: var(--paper);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--red);
}

.fact span {
  color: var(--muted);
  font-size: 0.92rem;
}

.award {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--yellow);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
}

.award b {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red);
}

.rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.room-card,
.card {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.room-card img {
  height: 240px;
  border-radius: 0;
}

.room-body,
.card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.room-body h3,
.card-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.45rem;
}

.room-body h3 a,
.card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.room-body h3 a:hover,
.card-body h3 a:hover {
  color: var(--orange);
}

.price {
  font-weight: 800;
  color: var(--green-deep);
  font-size: 1.15rem;
}

.price small {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.85rem;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.amenity {
  background: var(--paper);
  border-radius: 16px;
  padding: 1.1rem;
  min-height: 8.2rem;
}

.amenity .mark {
  width: 34px;
  height: 28px;
  border: 3px solid var(--ink);
  border-radius: 4px 4px 2px 2px;
  margin-bottom: 0.7rem;
}

.amenity:nth-child(4n+1) .mark { background: var(--green); }
.amenity:nth-child(4n+2) .mark { background: var(--yellow); }
.amenity:nth-child(4n+3) .mark { background: var(--red); }
.amenity:nth-child(4n+4) .mark { background: var(--orange); }

.amenity h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
}

.amenity p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  align-items: stretch;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--yellow);
  height: 100%;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-grid a:nth-child(1),
.gallery-grid a.wide {
  grid-column: span 2;
}

.gallery-grid a:nth-child(1) img,
.gallery-grid a.wide img {
  aspect-ratio: 16 / 9;
}

.page-hero {
  padding: 2.6rem 1.25rem 0;
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 46rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th, td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--yellow);
  color: var(--ink);
}

td strong {
  color: var(--red);
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 0;
}

.contact-card p {
  margin: 0.35rem 0;
}

.map {
  min-height: 420px;
  border: 0;
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  font-weight: 700;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.place {
  background: var(--paper);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.place h2 {
  margin: 0 0 0.4rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.crumbs {
  max-width: 1180px;
  margin: 1.2rem auto 0;
  padding: 0 1.25rem;
  font-size: 0.92rem;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--red);
  opacity: 0.45;
}

.crumbs a {
  color: var(--muted);
}

.crumbs [aria-current="page"] {
  color: var(--ink);
}

caption {
  text-align: left;
  font-weight: 700;
  padding: 0.9rem 1rem 0.2rem;
  color: var(--ink);
}

address {
  font-style: normal;
  margin: 0.35rem 0;
}

.cta-band {
  background: var(--green-deep);
  color: #fff;
}

.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2 {
  color: var(--yellow);
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
}

.cta-band p {
  margin: 0;
  color: var(--cream);
}

.cta-band .btn-ghost {
  border-color: var(--yellow);
  color: var(--yellow);
}

.cta-band .btn-ghost:hover {
  background: var(--yellow);
  color: var(--ink);
}

.site-footer {
  background: #1a1a14;
  color: #f4e7a0;
  padding: 2.5rem 1.25rem 1.4rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--yellow);
}

.site-footer h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  color: #fff;
}

.copy {
  max-width: 1180px;
  margin: 1.4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 239, 154, 0.2);
  font-size: 0.85rem;
  color: #cbb96a;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 8, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--yellow);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .split,
  .rooms,
  .facts,
  .amenities,
  .places,
  .contact-grid,
  .footer-inner,
  .cta-band .wrap {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .cta-band .wrap,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }

  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1rem 1.25rem 1.4rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .rooms,
  .facts,
  .amenities,
  .places,
  .footer-inner,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .gallery-grid a:nth-child(1),
  .gallery-grid a.wide {
    grid-column: auto;
  }

  .gallery-grid img,
  .gallery-grid a:nth-child(1) img,
  .gallery-grid a.wide img {
    aspect-ratio: 4 / 3;
  }
}
