
:root {
  --sand: #c99867;
  --sand-soft: #ead9c6;
  --sand-light: #f3e7da;
  --terracotta: #b76f4d;
  --stone: #f6f1eb;
  --ivory: #fdfaf7;
  --earth: #5b463a;
  --olive: #7d8a6d;
  --charcoal: #2b2724;
  --line: #e3d7cc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(36, 28, 24, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* WhatsApp Buttons */

.whatsapp-button {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  gap: 0.65rem;
}

.whatsapp-button:hover {
  opacity: 0.92;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* Topbar / Navigation */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(253, 250, 247, 0.86);
  border-bottom: 1px solid rgba(201, 152, 103, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.18rem;
  font-family: Arial, Helvetica, sans-serif;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #54483f;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  background: #000;
}

.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-fallback {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 12, 10, 0.22), rgba(15, 12, 10, 0.38)),
    linear-gradient(180deg, rgba(183, 111, 77, 0.08), rgba(41, 34, 28, 0.32));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 0 0;
  padding-top: clamp(60px, 8vh, 120px);
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}

.eyebrow {
  display: inline-block;
  color: #f2c89c;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 1rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  white-space: nowrap;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}

.hero-copy {
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
}

/* Optimized Hero Card */

.hero-card {
  margin-top: 2rem;
  max-width: 940px;
  display: grid;
  grid-template-columns: 1.85fr 0.62fr 0.62fr 0.62fr;
  gap: 0;
  align-items: stretch;
  background: rgba(253, 250, 247, 0.88);
  color: var(--charcoal);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card > div:first-child {
  padding: 1.3rem 1.45rem 1.25rem;
}

.hero-card > div + div {
  border-left: 1px solid var(--line);
}

.hero-subtext {
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: none;
  padding-left: 1.2rem;
  margin-top: 0.4rem;
}

.stat {
  padding: 1.25rem 0.95rem 1.15rem;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--sand);
  margin-bottom: 0.45rem;
}

.hero-text {
  margin: 0.2rem 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--earth);
  max-width: 34ch;
}

.stat-value {
  margin-top: 0.15rem;
  font-size: 1.95rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* General Sections */

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.alt {
  background: var(--stone);
}

.section-header {
  max-width: 780px;
  margin-bottom: 3.5rem;
}

.section-kicker {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.lead {
  font-size: 1.1rem;
  color: #54463e;
  line-height: 1.8;
}

.muted {
  color: #5d524a;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 60ch;
  line-height: 1.72;
  font-size: 0.98rem;
}

/* Grids */

.story-grid,
.feature-grid,
.room-grid,
.gallery-grid,
.use-grid,
.location-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.story-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.story-grid img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.45rem;
  color: var(--earth);
  max-width: 19ch;
  margin-top: 1.5rem;
  font-style: italic;
}

.card,
.feature-card,
.room-card,
.use-card,
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 152, 103, 0.12);
}

	  
.feature-grid,
.room-grid,
.use-grid,
.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.room-card,
.location-card {
  overflow: hidden;
}

.feature-card img,
.room-card img,
.location-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.feature-body,
.room-body,
.use-body,
.location-body {
  padding: 1.3rem;
}

.card {
  padding: 1.5rem;
}

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

.pill {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  background: rgba(125, 138, 109, 0.12);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: #46513d;
  margin: 0.25rem 0.35rem 0 0;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

/* Buttons */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand), var(--terracotta));
  color: white;
  padding: 0.95rem 1.4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Footer */

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(201, 152, 103, 0.18);
  background: var(--ivory);
}

.small {
  font-size: 0.92rem;
}

/* Contact Form */

.form-field {
  margin-bottom: 1rem;
}

.contact-form {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}

.contact-form select,
.contact-form option {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form option {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--charcoal);
  box-sizing: border-box;
}

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

.contact-form select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  padding-right: 2.8rem;
  line-height: 1.5;
  background: #fff;
  color: var(--charcoal);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 54px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.45) 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.45) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--sand);
}

option:disabled {
  color: #b5aaa1;
  font-style: italic;
}

/* FAQ Sektion */

.faq-section {
  padding: 110px 24px;
  background: var(--ivory);
  scroll-margin-top: 120px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  margin: 0 0 18px;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
}

.faq-title {
  margin: 0 0 40px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--charcoal);
  font-weight: 500;
}

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

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--charcoal);
  font-weight: 500;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sand);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding-top: 14px;
  max-width: 820px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--earth);
}

.faq-answer a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  opacity: 0.8;
}

/* Availability */

.availability-section {
  background: var(--sand-light);
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.availability-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 152, 103, 0.14);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(36, 28, 24, 0.05);
  padding: 1.7rem 1.4rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.availability-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(36, 28, 24, 0.08);
  border-color: rgba(201, 152, 103, 0.22);
}

.availability-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.02;
  margin: 0 0 1rem;
  color: var(--charcoal);
}

.availability-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: #5d524a;
  background: rgba(125, 138, 109, 0.12);
}

.footer-inner {
  font-family: "Cormorant Garamond", Georgia, serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.status-full {
  background: rgba(120, 110, 105, 0.18);
  color: #6f6560;
}

.status-low {
  background: rgba(183, 111, 77, 0.18);
  border: 1px solid rgba(183, 111, 77, 0.25);
  color: #8c4e35;
}

.status-medium {
  background: rgba(201, 152, 103, 0.18);
  color: #8a684a;
}

.status-high {
  background: rgba(125, 138, 109, 0.18);
  color: #4f5a45;
}

.extra-card,
.extra-room {
  display: none;
}

.extra-card.show,
.extra-room.show {
  display: block;
}

.feature-toggle {
  display: block;
  margin: 2.5rem auto 0;
  padding: 0.95rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.38);
}

.discover-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 84px;
  padding: 0 20px;
  margin-top: 12px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.discover-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.discover-bar h3 {
  margin: 0;
  font: inherit;
  color: inherit;
}

.discover-bar .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #5f5650;
  border-bottom: 2px solid #5f5650;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.discover-bar.open .arrow {
  transform: rotate(-135deg);
}

/* Responsive */

@media (max-width: 1100px) {
  .availability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-card > div + div {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .hero-card > div:first-child,
  .hero-card .stat {
    padding: 1.1rem 1.15rem;
  }

  .hero-text {
    max-width: none;
  }

  .story-grid,
  .feature-grid,
  .room-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .availability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  h1 {
    white-space: normal;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hero-inner {
    padding-top: 84px;
  }

  .hero-subtext {
    padding-left: 0;
    font-size: 1rem;
  }

  .gallery-grid,
  .use-grid,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 80px 18px;
  }

  .faq-item summary {
    font-size: 1.05rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
