:root {
  --warm-cream: #fbf6ed;
  --soft-cream: #f4eadc;
  --warm-white: #fffaf3;
  --deep-olive: #34402b;
  --muted-olive: #6f7140;
  --terracotta: #b65a35;
  --soft-terracotta: #d08a62;
  --muted-gold: #b89655;
  --charcoal: #25251f;
  --taupe: #6f675c;
  --soft-border: #d8cbb8;
  --footer: #202619;
  --shadow: 0 18px 50px rgba(37, 37, 31, 0.13);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-cream);
  color: var(--charcoal);
  font-family: Roboto, Inter, Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(184, 150, 85, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(52, 64, 43, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--deep-olive);
  color: var(--warm-white);
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 237, 0.95);
  border-bottom: 1px solid rgba(216, 203, 184, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-olive);
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--muted-gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep-olive);
  line-height: 1.04;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  display: block;
  color: var(--taupe);
  font-size: 12px;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--deep-olive);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta) {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta):focus-visible {
  border-color: var(--muted-gold);
  color: var(--terracotta);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-cta,
.button-primary {
  background: var(--terracotta);
  color: var(--warm-white);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--soft-terracotta);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 250, 243, 0.86);
  color: var(--deep-olive);
  border-color: rgba(184, 150, 85, 0.85);
}

.button-secondary:hover {
  background: var(--warm-white);
  border-color: var(--terracotta);
}

.section-band {
  position: relative;
  padding: 92px 0;
}

.alt-band {
  background: var(--soft-cream);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 58px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 38, 25, 0.62), rgba(32, 38, 25, 0.14) 54%, rgba(32, 38, 25, 0.34)),
    linear-gradient(0deg, rgba(32, 38, 25, 0.48), rgba(32, 38, 25, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--warm-white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--muted-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--warm-white);
  font-size: clamp(54px, 9vw, 118px);
  max-width: 780px;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.92);
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  border: 1px solid rgba(255, 250, 243, 0.24);
  background: rgba(255, 250, 243, 0.2);
  box-shadow: var(--shadow);
}

.quick-facts div {
  min-height: 102px;
  padding: 20px;
  background: rgba(32, 38, 25, 0.68);
  backdrop-filter: blur(10px);
}

.quick-facts span,
.info-card span,
.experience-card span,
.price-box span,
.integration-slot span {
  display: block;
  color: var(--muted-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--warm-white);
  font-size: 16px;
}

.intro-strip {
  background: var(--deep-olive);
  color: var(--warm-white);
  border-top: 1px solid rgba(184, 150, 85, 0.35);
  border-bottom: 1px solid rgba(184, 150, 85, 0.35);
}

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

.intro-grid p {
  margin: 0;
  padding: 20px 0;
  color: rgba(255, 250, 243, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 27px;
}

p {
  color: var(--taupe);
}

.stay-section p {
  max-width: 680px;
  font-size: 18px;
}

.heritage-panel {
  position: relative;
  padding: 34px;
  background: var(--deep-olive);
  border: 1px solid rgba(184, 150, 85, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.heritage-panel h3 {
  color: var(--warm-white);
}

.heritage-panel p {
  margin-bottom: 0;
  color: rgba(255, 250, 243, 0.78);
}

.panel-line {
  display: block;
  width: 72px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--muted-gold);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-card,
.experience-card,
.price-box,
.booking-form,
.integration-slot,
.faq-list details {
  background: var(--warm-white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(37, 37, 31, 0.06);
}

.info-card {
  min-height: 126px;
  padding: 20px;
}

.info-card strong {
  display: block;
  margin-top: 10px;
  color: var(--deep-olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.15;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--soft-border);
  background: var(--deep-olive);
  box-shadow: 0 16px 38px rgba(37, 37, 31, 0.11);
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--warm-white);
  background: rgba(32, 38, 25, 0.78);
  border: 1px solid rgba(184, 150, 85, 0.44);
  border-radius: 4px;
  font-weight: 800;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(52, 64, 43, 0.9), rgba(111, 113, 64, 0.82)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 250, 243, 0.08) 14px 15px);
}

.photo-placeholder span {
  color: rgba(255, 250, 243, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.experience-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  text-decoration: none;
}

.experience-card strong {
  margin-top: 12px;
  color: var(--deep-olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.16;
}

.experience-card p {
  margin: 14px 0 0;
}

.experience-card::after {
  content: "Open link";
  margin-top: auto;
  padding-top: 24px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
}

.experience-card:hover,
.experience-card:focus-visible {
  border-color: var(--muted-gold);
  transform: translateY(-2px);
}

.booking-section {
  background:
    linear-gradient(90deg, rgba(52, 64, 43, 0.09), transparent 42%),
    var(--warm-cream);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.price-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  background: var(--soft-border);
}

.price-box div {
  padding: 18px;
  background: var(--warm-white);
}

.price-box strong {
  display: block;
  margin-top: 6px;
  color: var(--deep-olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.price-box .estimate-total {
  background: var(--deep-olive);
}

.price-box .estimate-total span,
.price-box .estimate-total strong {
  color: var(--warm-white);
}

#estimate-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 18px;
  background: var(--warm-white);
  font-size: 14px;
}

.integration-slot {
  margin-top: 18px;
  padding: 22px;
  border-style: dashed;
}

.integration-slot strong {
  display: block;
  margin-top: 8px;
  color: var(--deep-olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.integration-slot p {
  margin-bottom: 0;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-wide,
.form-actions,
.form-note {
  grid-column: 1 / -1;
}

label {
  color: var(--deep-olive);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--soft-border);
  border-radius: 4px;
  background: #fffdfa;
  color: var(--charcoal);
  padding: 12px 13px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(182, 90, 53, 0.13);
}

textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.whatsapp-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  color: var(--deep-olive);
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--terracotta);
  font-family: Roboto, Inter, Arial, sans-serif;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.site-footer {
  padding: 58px 0;
  background: var(--footer);
  color: #efe7d9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.site-footer h2,
.site-footer h3 {
  color: #efe7d9;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.site-footer p,
.site-footer a {
  color: rgba(239, 231, 217, 0.78);
}

.site-footer p {
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--soft-terracotta);
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 780px;
    padding-top: 120px;
  }

  .quick-facts,
  .intro-grid,
  .two-column,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .facility-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-band {
    padding: 66px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    gap: 6px 12px;
    font-size: 13px;
  }

  .nav-cta,
  .button {
    width: 100%;
  }

  .hero {
    min-height: 820px;
    padding: 116px 0 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(32, 38, 25, 0.68), rgba(32, 38, 25, 0.2)),
      linear-gradient(0deg, rgba(32, 38, 25, 0.7), rgba(32, 38, 25, 0.04) 42%);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-facts {
    margin-top: 34px;
  }

  .quick-facts div {
    min-height: auto;
  }

  .intro-grid p {
    padding: 14px 0;
  }

  .facility-grid,
  .experience-grid,
  .booking-form,
  .price-box {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-feature {
    grid-column: span 1;
    grid-row: span 1;
  }

  h2 {
    font-size: 34px;
  }

  .heritage-panel,
  .booking-form {
    padding: 20px;
  }
}
