:root {
  --bg: #f8f6f2;
  --bg-soft: #f0ebe3;
  --surface: #ffffff;
  --text: #2e2a26;
  --text-muted: #6c635a;
  --accent: #b27741;
  --accent-strong: #9e6532;
  --line: #e0d7cc;
  --radius: 10px;
  --shadow: 0 14px 34px rgba(65, 43, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

h1, h2 {
  font-family: "Fraunces", serif;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-style: italic;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
}

.container {
  width: min(1080px, calc(100% - 3rem));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.site-header.scrolled .brand {
  color: var(--text);
}

.site-header.scrolled .button-small {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1.5rem;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-style: italic;
  text-decoration: none;
  font-size: 1.25rem;
  color: #fff;
  transition: color 0.3s ease;
}

.site-nav {
  display: flex;
  align-items: center;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button-small:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: none;
}

.button-ghost {
  color: var(--accent-strong);
  background: transparent;
  border: 1px solid rgba(178, 119, 65, 0.35);
}

.button-ghost:hover {
  background: rgba(178, 119, 65, 0.06);
}

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 1.5rem;
}

.kicker {
  display: inline-block;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.hero-lead {
  margin: 1rem 0 2rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.hero .button {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

/* Sections */

.section {
  padding: 4rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

/* Alternating rows */

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.row-reverse {
  direction: rtl;
}

.row-reverse > * {
  direction: ltr;
}

.row-text h2 {
  margin-bottom: 1.2rem;
}

.row-text p {
  color: var(--text-muted);
  margin: 0 0 0.8rem;
}

.row-text p:last-child,
.row-text ul:last-child {
  margin-bottom: 0;
}

.row-image img {
  width: 100%;
  /*border-radius: var(--radius);*/
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Full-width image break */

.full-image {
  width: 100%;
  overflow: hidden;
}

.full-image img {
  width: 100%;
  height: clamp(300px, 45vw, 560px);
  object-fit: cover;
}

/* Image pair */

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.image-pair img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Lists */

.amenity-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.amenity-list li {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(178, 119, 65, 0.3);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(178, 119, 65, 0.06);
  font-size: 0.85rem;
}

.detail-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.detail-list li {
  border-top: 1px solid var(--line);
  padding: 0.65rem 0;
  color: var(--text-muted);
}

.detail-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

/* Gallery */

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

.gallery-grid figure {
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* CTA block */

.cta-block {
  text-align: center;
  max-width: 600px;
}

.cta-block p {
  color: var(--text-muted);
  margin: 0.8rem 0 0;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

/* Footer */

.site-footer {
  padding: 2rem;
}

.footer-wrap {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-wrap p {
  margin: 0;
}

/* Responsive */

/*@media (max-width: 860px) {*/
/*  .row {*/
/*    grid-template-columns: 1fr;*/
/*    gap: 2rem;*/
/*  }*/

/*  .row-reverse {*/
/*    direction: ltr;*/
/*  }*/

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

/*  .image-pair {*/
/*    grid-template-columns: 1fr;*/
/*  }*/
/*}*/

/*@media (max-width: 600px) {*/
/*  .container {*/
/*    width: min(1080px, calc(100% - 1.5rem));*/
/*  }*/

/*  .site-nav {*/
/*    display: none;*/
/*  }*/

/*  .hero {*/
/*    min-height: 480px;*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 2.2rem;*/
/*  }*/

/*  .section {*/
/*    padding: 3rem 0;*/
/*  }*/

/*  .gallery-grid {*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: 0.35rem;*/
/*  }*/

/*  .gallery-grid figure {*/
/*    border-radius: 6px;*/
/*  }*/

/*  .footer-wrap {*/
/*    flex-direction: column;*/
/*  }*/
/*}*/
