:root {
  --cream: #f6f1e7;
  --cream-deep: #efe6d4;
  --stucco: #eee5d3;
  --walnut: #4a3826;
  --walnut-soft: rgba(74, 56, 38, 0.72);
  --terracotta: #b3572f;
  --terracotta-dark: #8f4322;
  --olive: #6b7b4f;
  --gold: #a9814a;
  --line: rgba(74, 56, 38, 0.14);
  --paper: #fffdf8;
  font-size: 16px;
}

@media (min-width: 640px) {
  :root { font-size: 17px; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--walnut);
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--walnut);
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--terracotta-dark);
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) {
  .wrap { padding: 0 1.5rem; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* ---------- Topbar (mobile base: hamburger menu) ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(to bottom, rgba(30, 22, 14, 0.55), rgba(30, 22, 14, 0));
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.topbar.solid {
  background: rgba(246, 241, 231, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(74, 56, 38, 0.08);
}
.topbar.menu-open {
  background: var(--cream);
  backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(74, 56, 38, 0.08);
}
.topbar .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  z-index: 2;
  margin-right: auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.topbar.solid .brand,
.topbar.menu-open .brand {
  color: var(--walnut);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.topbar.solid .nav-toggle,
.topbar.menu-open .nav-toggle {
  color: var(--walnut);
  border-color: var(--line);
  background: rgba(74, 56, 38, 0.06);
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}
.nav-toggle .icon-close { display: none; }
.topbar.menu-open .nav-toggle .icon-open { display: none; }
.topbar.menu-open .nav-toggle .icon-close { display: block; }

nav.site-nav {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 1;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1.75rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.3s;
}
.topbar.menu-open nav.site-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.site-nav a {
  color: var(--walnut);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
  padding: 0.35rem 0;
}
.site-nav .btn-book {
  margin-top: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lang-switch a {
  display: block;
  width: 32px;
  height: 22px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 5px;
  text-decoration: none;
  opacity: 0.5;
  filter: grayscale(45%);
  transition: opacity 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}
.lang-switch a svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.lang-switch a.active {
  opacity: 1;
  filter: none;
  background: rgba(255, 255, 255, 0.16);
}
.topbar.solid .lang-switch a.active,
.topbar.menu-open .lang-switch a.active {
  background: rgba(74, 56, 38, 0.08);
}

@media (min-width: 900px) {
  .topbar { padding: 1.1rem 1.5rem; }
  .nav-toggle { display: none; }
  nav.site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    margin-left: 1.5rem;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    gap: 0;
    width: auto;
  }
  .site-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    margin-left: 1.5rem;
    padding: 0;
    transition: color 0.3s ease, opacity 0.2s ease;
  }
  .site-nav a:hover {
    opacity: 0.75;
  }
  .topbar.solid .site-nav a {
    color: var(--walnut-soft);
  }
  .site-nav .btn-book {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: #2a2015;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 8, 0.85) 0%, rgba(20, 14, 8, 0.32) 48%, rgba(20, 14, 8, 0.48) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem 3.5rem;
  width: 100%;
  color: #fff;
}
.hero-content .eyebrow {
  color: #e9d7b5;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 9vw, 5rem);
  line-height: 1.02;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-content .lead {
  max-width: 620px;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.6rem;
}
.hero-content .btn {
  margin: 0 0.5rem 0.5rem 0;
}
.hero-scroll {
  display: none;
}
@media (min-width: 640px) {
  .hero-content { padding: 0 1.5rem 4.5rem; }
  .hero-content .lead { font-size: 1.15rem; margin-bottom: 1.8rem; }
  .hero-scroll {
    display: block;
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.75);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    animation: bob 2.4s ease-in-out infinite;
  }
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
  font-family: 'Jost', sans-serif;
}
.btn:active {
  transform: translateY(1px);
}
.btn-terracotta {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 14px 28px rgba(179, 87, 47, 0.32);
}
.btn-terracotta:hover {
  background: var(--terracotta-dark);
  color: #fff;
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: var(--walnut);
  color: var(--walnut);
}
.btn-outline:hover {
  background: var(--walnut);
  color: #fff;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Sections ---------- */
section {
  padding: 4rem 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 6vw, 2.6rem);
}
.section-head p {
  color: var(--walnut-soft);
  font-size: 1.02rem;
}
.section-alt {
  background: var(--stucco);
}
@media (min-width: 900px) {
  section { padding: 6.5rem 0; }
  .section-head { margin-bottom: 3rem; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}
.about-copy p {
  color: var(--walnut-soft);
  font-size: 1.02rem;
}
.about-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(74, 56, 38, 0.18);
}
.about-image img {
  height: 300px;
  object-fit: cover;
}
.facts {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem 1.5rem;
}
.facts li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: var(--walnut);
}
.facts li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex: none;
  margin-bottom: 2px;
}
@media (min-width: 480px) {
  .facts { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
  .about-image img { height: 480px; }
  .facts { margin-top: 2rem; }
}

/* ---------- Rooms / amenities ---------- */
.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.room-card {
  background: var(--paper);
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 40px rgba(74, 56, 38, 0.08);
  border: 1px solid var(--line);
}
.room-card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  display: block;
}
.room-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.room-card p {
  color: var(--walnut-soft);
  font-size: 0.95rem;
  margin: 0;
}
.capacity-banner {
  margin-top: 2rem;
  text-align: center;
  padding: 1.8rem;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--walnut) 0%, #5c4530 100%);
  color: #fff;
}
.capacity-banner .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  display: block;
  color: #f1dfbb;
}
.capacity-banner p {
  margin: 0.4rem 0 0;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 640px) {
  .room-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
}
@media (min-width: 900px) {
  .room-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .room-card { padding: 2rem 1.7rem; }
  .capacity-banner { margin-top: 3rem; padding: 2.2rem; }
  .capacity-banner .num { font-size: 3.2rem; }
}

/* ---------- Gallery ---------- */
.gallery-group {
  margin-bottom: 2.25rem;
}
.gallery-group h3 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.gallery-grid a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: 0 10px 24px rgba(74, 56, 38, 0.1);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid a:hover img {
  transform: scale(1.06);
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .gallery-group { margin-bottom: 3rem; }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 14, 8, 0.92);
  padding: 1rem;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 92vw;
  max-height: 78vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-close {
  top: 0.8rem;
  right: 0.8rem;
}
.lightbox-prev {
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 640px) {
  .lightbox { padding: 2rem; }
  .lightbox img { max-width: 90vw; max-height: 84vh; }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 46px; height: 46px; font-size: 1.2rem; }
  .lightbox-close { top: 1.4rem; right: 1.4rem; }
  .lightbox-prev { left: 1.4rem; }
  .lightbox-next { right: 1.4rem; }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.testimonial-card {
  background: var(--paper);
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 40px rgba(74, 56, 38, 0.08);
  border: 1px solid var(--line);
  margin: 0;
}
.testimonial-card p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--walnut);
  margin: 0 0 0.8rem;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (min-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .testimonial-card { padding: 2rem 1.7rem; }
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.location-copy p {
  color: var(--walnut-soft);
}
.location-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
}
.location-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}
.location-list li::before {
  content: '\2708';
  position: absolute;
  left: 0;
  opacity: 0.6;
}
.map-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(74, 56, 38, 0.15);
  border: 1px solid var(--line);
  height: 300px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .map-frame { height: 380px; }
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--walnut);
  color: #f3ece0;
}
.contact-section .section-head p {
  color: rgba(243, 236, 224, 0.75);
}
.contact-section .eyebrow {
  color: #d8b984;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}
.contact-info h3 {
  color: #fff;
  font-size: 1.25rem;
}
.contact-channels {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  text-decoration: none;
  color: #f3ece0;
  transition: background 0.2s ease;
}
.contact-channel:hover {
  background: rgba(255,255,255,0.12);
}
.contact-channel .ic {
  font-size: 1.25rem;
}
.contact-channel .label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(243, 236, 224, 0.6);
  display: block;
}
.contact-channel .value {
  font-size: 1rem;
  font-weight: 600;
}

.form-card {
  background: var(--paper);
  color: var(--walnut);
  border-radius: 10px;
  padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.form-row {
  margin-bottom: 1rem;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--walnut);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--walnut);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(179, 87, 47, 0.14);
}
.form-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.form-msg {
  margin-bottom: 1.1rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.form-msg.ok {
  background: #e4efe4;
  color: #33532f;
}
.form-msg.err {
  background: #f6e3df;
  color: #8f4322;
}
@media (min-width: 480px) {
  .form-two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .contact-channels { margin-top: 1.6rem; gap: 0.9rem; }
  .contact-channel { padding: 1rem 1.2rem; }
  .form-card { padding: 2.2rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #241a10;
  color: rgba(246, 241, 231, 0.55);
  padding: 2.2rem 0;
  font-size: 0.85rem;
  text-align: center;
}
.site-footer strong {
  color: rgba(246, 241, 231, 0.85);
}
