:root {
  --forest: #1e3a2f;
  --forest-deep: #13261f;
  --moss: #3d5c4a;
  --gold: #c4a36a;
  --gold-soft: #e8d7b5;
  --cream: #f6f1e8;
  --paper: #fffcf7;
  --ink: #1c1916;
  --muted: #5c574f;
  --line: #e4dccd;
  --shadow: 0 18px 50px rgba(19, 38, 31, 0.12);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--forest);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--forest);
}

.nav a.btn-primary,
.nav a.btn-primary:hover {
  color: var(--paper);
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.7rem;
  font: inherit;
  cursor: pointer;
  color: var(--muted);
}

.lang button[aria-pressed="true"] {
  background: var(--forest);
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--forest);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--gold);
}

.btn-light {
  background: var(--paper);
  color: var(--forest);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  font: inherit;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(196, 163, 106, 0.25), transparent 40%),
    linear-gradient(180deg, #efe6d4 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--moss);
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 560;
  line-height: 1.2;
  color: var(--forest-deep);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.photo-stack {
  display: grid;
  gap: 0.8rem;
}

.photo-stack img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.photo-stack img:first-child {
  height: 260px;
}

.room-media {
  margin-bottom: 1rem;
  min-width: 0;
}

.room-stage {
  position: relative;
}

.room-main {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.room-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 38, 31, 0.7);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.room-nav.prev {
  left: 0.5rem;
}

.room-nav.next {
  right: 0.5rem;
}

.thumbs {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  min-width: 0;
}

.thumb {
  flex: 0 0 58px;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--forest);
}

.thumb img {
  width: 100%;
  height: 52px;
  object-fit: cover;
}

.included {
  margin: 0.2rem 0 1rem;
  color: var(--moss);
  font-size: 0.95rem;
}

section {
  padding: 4rem 0;
}

.section-intro {
  color: var(--muted);
  max-width: 40rem;
}

.about-grid,
.contact-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card,
.info-box,
.amenity-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  min-width: 0;
}

.photo-slot {
  background:
    linear-gradient(135deg, #d9c9a8, #b7c4b3);
  border-radius: 14px;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 1rem;
}

.price {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  color: var(--forest);
  margin: 0.4rem 0 0;
}

.price span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.amenity-card h3,
.card h3 {
  margin-top: 0;
}

.amenity-card ul,
.places {
  margin: 0;
  padding-left: 1.1rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fact label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list a {
  color: var(--forest);
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    inset: 72px 1rem auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .location-grid,
  .cards,
  .amenity-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }
}
