:root {
  --bg: #f5efe6;
  --bg-soft: #fbf7f1;
  --paper: #fffdfa;
  --text: #24130f;
  --muted: #6e5b54;
  --line: rgba(36, 19, 15, 0.12);
  --brand: #7d0e08;
  --brand-dark: #5a0905;
  --gold: #b9852f;
  --gold-soft: #ddb46d;
  --shadow: 0 24px 60px rgba(36, 19, 15, 0.12);
  --shadow-soft: 0 18px 40px rgba(36, 19, 15, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --section-pad: clamp(72px, 10vw, 120px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbf7f1 0%, #f5efe6 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.topbar {
  background: #2a120d;
  color: #f8ebda;
  font-size: 0.92rem;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(251, 247, 241, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 64px;
  height: auto;
}

.brand-name,
.brand-tag {
  display: block;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  transition: 0.24s ease;
  cursor: pointer;
}

.btn-large {
  padding: 15px 22px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #99160d 100%);
  color: #fff7ee;
  box-shadow: 0 12px 30px rgba(125, 14, 8, 0.24);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(125, 14, 8, 0.28);
}

.btn-outline {
  border-color: rgba(125, 14, 8, 0.18);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover,
.btn-glass:hover {
  transform: translateY(-1px);
  background: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 248, 238, 0.3);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: clip;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(33, 14, 11, 0.85) 0%, rgba(33, 14, 11, 0.55) 42%, rgba(33, 14, 11, 0.36) 60%, rgba(33, 14, 11, 0.44) 100%),
    linear-gradient(180deg, rgba(33, 14, 11, 0.15) 0%, rgba(33, 14, 11, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 420px);
  gap: 32px;
  align-items: end;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1,
.section-heading h2,
.split-layout h2,
.location-grid h2,
.host-copy h2,
.inquiry-grid h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.75rem, 7vw, 5.4rem);
  line-height: 0.94;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.hero h1 {
  color: #fff8f0;
  max-width: 13ch;
}

.hero-lead {
  color: rgba(255, 247, 238, 0.88);
  max-width: 56ch;
  font-size: 1.08rem;
}

.hero-points,
.micro-trust,
.feature-strip,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  margin: 26px 0 22px;
}

.hero-points span,
.micro-trust span,
.feature-strip span,
.badge-row span {
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(12px);
}

.hero-points span {
  background: rgba(255, 248, 238, 0.14);
  color: #fff7ee;
  border: 1px solid rgba(255, 248, 238, 0.16);
}

.micro-trust {
  margin-top: 18px;
}

.micro-trust span {
  background: rgba(255, 248, 238, 0.08);
  color: rgba(255, 247, 238, 0.86);
  border: 1px solid rgba(255, 248, 238, 0.11);
  font-size: 0.92rem;
}

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

.booking-card,
.countdown-card,
.upsell-card,
.map-card,
.host-panel,
.contact-card,
.inquiry-form,
.benefit-card,
.trust-card,
.testimonial-card {
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid rgba(255, 250, 243, 0.22);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.booking-card {
  padding: 28px;
}

.booking-kicker,
.countdown-label {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.booking-card h2,
.countdown-wrap h2,
.upsell-card h3,
.host-panel h3,
.site-footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0 0 12px;
  line-height: 1;
}

.price-note,
.small-note,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-list,
.upsell-card ul,
.host-panel ul {
  margin: 18px 0;
  padding-left: 18px;
}

.booking-cta-stack {
  display: grid;
  gap: 12px;
}

.countdown-section {
  padding: 36px 0 0;
  position: relative;
  z-index: 2;
}

.countdown-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.countdown-wrap h2,
.section-heading h2,
.split-layout h2,
.location-grid h2,
.host-copy h2,
.inquiry-grid h2 {
  font-size: clamp(2.2rem, 4.7vw, 4rem);
}

.countdown-card {
  padding: 26px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.countdown div {
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px 10px;
  text-align: center;
}

.countdown strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand);
}

.countdown span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: var(--section-pad) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--text);
}

.section-heading p,
.location-grid p,
.host-copy p,
.inquiry-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.benefits-grid,
.trust-grid,
.testimonials {
  display: grid;
  gap: 20px;
}

.benefits-grid,
.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card,
.trust-card,
.testimonial-card {
  padding: 24px;
  background: rgba(255, 253, 250, 0.86);
  box-shadow: var(--shadow-soft);
}

.benefit-card h3,
.trust-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.benefit-card p,
.trust-card p,
.testimonial-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-strip {
  margin-top: 28px;
}

.feature-strip span,
.badge-row span {
  background: rgba(125, 14, 8, 0.06);
  border: 1px solid rgba(125, 14, 8, 0.08);
  color: var(--brand);
}

.amenities-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
}

.split-layout,
.location-grid,
.host-grid,
.inquiry-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.split-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.amenity-item {
  padding: 16px 18px;
  background: rgba(255, 253, 250, 0.8);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.upsell-card {
  padding: 28px;
  height: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-large {
  grid-row: span 2;
  min-height: 500px;
}

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

.location-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
}

.location-highlights div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.86);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.location-highlights strong {
  display: block;
  color: var(--brand);
  font-size: 1.25rem;
}

.location-highlights span {
  color: var(--muted);
  font-size: 0.92rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-card {
  overflow: hidden;
  min-height: 460px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.badge-row {
  margin: 22px 0 30px;
}

.testimonials {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card span {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
}

.host-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.host-note {
  margin-top: 20px;
  padding: 18px;
  background: rgba(125, 14, 8, 0.05);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  color: var(--text);
}

.host-panel {
  padding: 28px;
}

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

.faq-list details {
  background: rgba(255, 253, 250, 0.86);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list p {
  color: var(--muted);
  margin: 14px 0 0;
}

.inquiry-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  gap: 12px;
}

.contact-card a {
  color: var(--brand);
  font-weight: 600;
}

.inquiry-form {
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 19, 15, 0.12);
  background: #fffdfa;
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(125, 14, 8, 0.45);
  box-shadow: 0 0 0 4px rgba(125, 14, 8, 0.08);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.sticky-book {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 60;
  background: linear-gradient(135deg, var(--brand) 0%, #99160d 100%);
  color: #fff8f0;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(125, 14, 8, 0.26);
}

.site-footer {
  background: #210e0b;
  color: rgba(255, 247, 238, 0.84);
  padding: 54px 0 20px;
}

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

.footer-logo {
  width: 96px;
  margin-bottom: 16px;
}

.site-footer h3 {
  color: #fff7ee;
}

.site-footer a {
  display: block;
  color: #f8ebda;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 247, 238, 0.12);
  padding-top: 18px;
  text-align: center;
  color: rgba(255, 247, 238, 0.68);
}

@media (max-width: 1100px) {
  .hero-content,
  .countdown-wrap,
  .benefits-grid,
  .trust-grid,
  .split-layout,
  .location-grid,
  .host-grid,
  .inquiry-grid,
  .footer-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

  .gallery-large {
    grid-row: span 1;
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 10px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
  }

  .mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    padding: 10px 16px 16px;
    background: rgba(251, 247, 241, 0.96);
  }

  .mobile-menu.open {
    display: grid;
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 0 28px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .booking-card {
    padding: 24px;
  }

  .amenities-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .sticky-book {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}

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

  .brand img {
    width: 54px;
  }

  .brand-name {
    font-size: 1.6rem;
  }

  .topbar {
    font-size: 0.84rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero-points,
  .hero-actions,
  .micro-trust,
  .location-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points span,
  .micro-trust span {
    text-align: center;
  }

  .countdown strong {
    font-size: 1.6rem;
  }
}

/* Promo pricing */
.promo-bar {
  background: linear-gradient(90deg, #4f0905 0%, #7d0e08 50%, #4f0905 100%);
  color: #fff3e8;
  animation: promoPulse 1.6s ease-in-out infinite;
}

.promo-bar .price-strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.85;
  margin: 0 4px;
}

.promo-bar .price-now {
  color: #ffd58a;
  font-weight: 800;
  margin-left: 4px;
}

@keyframes promoPulse {
  0%, 100% { box-shadow: inset 0 0 0 rgba(255, 213, 138, 0); }
  50% { box-shadow: inset 0 -6px 18px rgba(255, 213, 138, 0.12); }
}

.price-note {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.price-note .price-strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: var(--muted);
  margin-left: 6px;
  margin-right: 6px;
}

.price-note .price-now {
  color: var(--brand);
  font-weight: 800;
  font-size: 1.5rem;
}

.inline-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 18px;
}

.inline-quote-card {
  background: rgba(255, 251, 246, 0.12);
  border: 1px solid rgba(255, 248, 238, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.inline-quote-card p {
  margin: 0 0 8px;
  color: #fff6ee;
  font-size: 1rem;
  line-height: 1.45;
}

.inline-quote-card span {
  color: rgba(255, 247, 238, 0.72);
  font-size: 0.86rem;
}

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

.inline-quote-card--center {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  backdrop-filter: none;
}

.inline-quote-card--center p {
  color: var(--text);
}

.inline-quote-card--center span {
  color: var(--muted);
}

@media (max-width: 900px) {
  .inline-quote-grid {
    grid-template-columns: 1fr;
  }
}
