:root {
  --bg: #f7f1e8;
  --bg-alt: #efe4d4;
  --card: #ffffff;
  --text: #2f2a24;
  --muted: #6d645d;
  --accent: #d9c6ad;
  --dark: #2f2a24;
  --border: rgba(47, 42, 36, 0.08);
  --shadow: 0 18px 45px rgba(22, 18, 14, 0.08);
  --radius: 28px;
  --radius-sm: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding-top: 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.34)); }
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #8a7f74;
}
.eyebrow.light { color: rgba(255,255,255,0.72); }
h1, h2, h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}
h1 { font-size: clamp(3rem, 8vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h3 { font-size: 2rem; }
p { margin: 0; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-light { background: #fff; color: var(--dark); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.56); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-title { font-weight: 700; letter-spacing: 0.02em; }
.brand-subtitle { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: #82776d; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a:not(.nav-cta) { font-size: 0.96rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: flex-end;
}
.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(180deg, rgba(17,14,12,0.16) 10%, rgba(17,14,12,0.62) 100%); }
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 86px;
  color: #fff;
}
.hero-content h1,
.hero-content p { color: #fff; }
.hero-text {
  max-width: 720px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 26px;
  align-items: start;
}
.card, .stat-card, .gallery-item, .media-card, .room-card, .amenity, .location-card, .reservation-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-card, .tone-card { padding: 34px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 26px 20px;
  background: #efe4d4;
  box-shadow: none;
  border: 1px solid rgba(47,42,36,0.03);
}
.stat-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--text);
}
.stat-card span { font-size: 0.95rem; color: var(--muted); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 34px;
}
.section-lead { max-width: 520px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-item-large { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item-large img { height: 370px; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  padding: 18px 20px 22px;
}
.gallery-item figcaption span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a8e83;
  margin-bottom: 4px;
}
.gallery-item figcaption strong { font-size: 1.06rem; }

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}
.tone-card { background: #e7dac9; }
.stack-cards {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 18px;
}
.media-card {
  overflow: hidden;
}
.media-card img,
.room-card img,
.feature-panel img { width: 100%; object-fit: cover; }
.media-card img { height: 280px; }
.media-card-body { padding: 24px; }
.wide img { height: 290px; }
.split-visuals {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
}
.large-visual img { height: 360px; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.room-card { overflow: hidden; }
.room-card img {
  height: 300px;
  cursor: pointer;
}
.room-card-body { padding: 22px; }
.room-card h3 { font-size: 1.7rem; margin-bottom: 8px; }

.equipements-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}
.feature-panel {
  overflow: hidden;
  background: #2f2a24;
  color: #fff;
}
.feature-panel img { height: 360px; opacity: 0.93; }
.feature-panel-body { padding: 32px; }
.feature-panel-body p { color: rgba(255,255,255,0.78); }
.feature-panel-body h2 { color: #fff; }
.amenities-list {
  display: grid;
  gap: 14px;
}
.amenity {
  padding: 22px 24px;
  font-weight: 500;
}
.exterior-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.exterior-gallery .media-card img {
  height: 260px;
  cursor: pointer;
}

.location-card,
.reservation-card {
  padding: 36px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
}
.reservation-section { padding-top: 0; }
.reservation-card {
  background: #d8c4aa;
  grid-template-columns: 1fr auto;
}
.reservation-card p { color: #5b5149; }

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.site-footer p { font-size: 0.95rem; }
.site-footer a { text-decoration: underline; text-underline-offset: 3px; }

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.92);
  padding: 30px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  border-radius: 20px;
}
.lightbox-caption {
  color: rgba(255,255,255,0.86);
  text-align: center;
  margin-top: 12px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: 0;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .intro-grid,
  .two-col,
  .equipements-grid,
  .location-card,
  .reservation-card,
  .split-visuals {
    grid-template-columns: 1fr;
  }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-large { grid-column: span 2; }
  .stack-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .header-inner { min-height: 72px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    background: rgba(247,241,232,0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .nav-cta { width: 100%; }
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 54px; }
  .hero-text { font-size: 1rem; }
  .stats-grid,
  .gallery-grid,
  .rooms-grid,
  .exterior-gallery { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: auto; }
  .gallery-item-large img,
  .gallery-item img,
  .room-card img,
  .large-visual img,
  .feature-panel img,
  .media-card img,
  .exterior-gallery .media-card img { height: 240px; }
  .section-head,
  .footer-inner,
  .location-card,
  .reservation-card { display: grid; }
}


.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(47, 42, 36, 0.16);
}
.btn-full { width: 100%; }

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

.contact-page-body {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55), transparent 30%),
    linear-gradient(180deg, #f7f1e8 0%, #f3eadf 100%);
}

.contact-shell,
.thankyou-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 52px 0;
}

.contact-hero-section {
  width: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-intro-card,
.refined-contact-card,
.thankyou-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(47,42,36,0.07);
  box-shadow: var(--shadow);
  border-radius: 32px;
}

.contact-intro-card {
  padding: 42px;
  position: sticky;
  top: 108px;
}

.contact-intro-card h1,
.thankyou-card h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 10ch;
}

.contact-intro-text {
  font-size: 1.03rem;
  max-width: 42ch;
}

.contact-side-panel {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact-side-block {
  padding: 24px;
  background: #f9f5ef;
  border-radius: 24px;
  border: 1px solid rgba(47,42,36,0.05);
}

.contact-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7f74;
}

.contact-side-block h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-phone {
  display: inline-block;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-form-wrap {
  min-width: 0;
}

.refined-contact-card {
  padding: 38px;
}

.contact-form-head {
  margin-bottom: 26px;
}

.contact-form-head p:last-child {
  max-width: 58ch;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(47,42,36,0.1);
  background: #fff;
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 170px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #b99f7e;
  box-shadow: 0 0 0 4px rgba(185,159,126,0.12);
}

.refined-form-actions {
  margin-top: 10px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #7b7269;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.thankyou-card {
  max-width: 760px;
  text-align: center;
  padding: 56px 32px;
}

.thankyou-card p {
  max-width: 44ch;
  margin: 0 auto;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .exterior-gallery-five {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1080px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .exterior-gallery-five,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .contact-shell,
  .thankyou-shell {
    padding: 24px 0;
  }

  .contact-intro-card,
  .refined-contact-card,
  .thankyou-card {
    border-radius: 24px;
  }

  .contact-intro-card,
  .refined-contact-card {
    padding: 26px;
  }

  .contact-intro-card h1,
  .thankyou-card h1 {
    max-width: none;
  }
}
