/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --mid: #666;
  --light: #f7f5f2;
  --white: #ffffff;
  --accent: #c8965a;
  --accent-dark: #a87848;
  --border: #e8e4df;
  --radius: 12px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.5px;
}

.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 24px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 360px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-main { grid-row: span 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-grid img {
  border-radius: 0;
}

/* ===== SAVINGS BANNER ===== */
.savings-banner {
  background: #fef8ee;
  border: 1px solid #f5d9a8;
  border-radius: var(--radius);
  padding: 14px 24px;
  margin: 24px auto;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark);
}

.savings-icon { font-size: 1.2rem; }

/* ===== MAIN LAYOUT ===== */
.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* ===== PROPERTY ===== */
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.property-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.property-location {
  color: var(--mid);
  margin-bottom: 16px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--dark);
}

.price-card-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.price-from { font-size: 0.8rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.5px; }

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
}

.price-night { font-size: 1rem; font-weight: 400; color: var(--mid); font-family: 'Inter', sans-serif; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* ===== HIGHLIGHTS ===== */
.highlights { display: flex; flex-direction: column; gap: 20px; }

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-icon { font-size: 1.5rem; margin-top: 2px; }

.highlight strong { display: block; margin-bottom: 2px; }

.highlight p { font-size: 0.9rem; color: var(--mid); }

/* ===== DESCRIPTION ===== */
.description h2, .amenities h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.description p {
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.amenity {
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== BOOKING CARD ===== */
.booking-section {
  position: sticky;
  top: 84px;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.booking-header { margin-bottom: 24px; }

.booking-header h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.booking-header p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ===== FORM ===== */
.booking-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
}

input, select, textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

textarea { resize: vertical; }

/* ===== PRICE SUMMARY ===== */
.price-summary {
  background: var(--light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--dark);
}

.price-row.total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}

.savings-note {
  font-size: 0.8rem;
  color: #2d7a2d;
  font-weight: 500;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
  display: inline-block;
}

.btn-primary:hover { background: var(--dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-full { width: 100%; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mid);
}

/* ===== SUCCESS ===== */
.booking-success {
  text-align: center;
  padding: 24px 0;
}

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.booking-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.booking-success p {
  color: var(--mid);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.success-email { font-weight: 600; color: var(--black) !important; }

/* ===== HOUSE RULES ===== */
.rules-section {
  background: var(--light);
  padding: 60px 24px;
}

.rules-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rules-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

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

.rule {
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--dark);
  border: 1px solid var(--border);
}

/* ===== REVIEWS ===== */
.reviews-section { padding: 60px 24px; }

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* review header / score link */
.reviews-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
  transition: box-shadow 0.2s, transform 0.1s;
}

.reviews-link:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.reviews-star { color: var(--accent); font-size: 1.4rem; line-height: 1; }

.reviews-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--black);
}

.reviews-head-text h2 { font-size: 1.4rem; margin-bottom: 4px; }
.reviews-head-text p { font-size: 0.9rem; color: var(--mid); }

/* category rating bars */
.rating-bars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  margin-bottom: 40px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark);
}

.rating-bar span { flex: 0 0 110px; }

.rating-bar .bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar .bar i {
  display: block;
  height: 100%;
  background: var(--black);
  border-radius: 4px;
}

.rating-bar b { flex: 0 0 32px; text-align: right; font-weight: 600; }

/* "what guests loved" tags */
.reviews-loved { font-size: 1.2rem; margin-bottom: 16px; }

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

.review-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.1s;
}

.review-tag:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.review-tag img { width: 24px; height: 24px; flex-shrink: 0; }
.review-tag span { flex: 1; font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.review-tag b { font-size: 0.85rem; color: var(--mid); font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 6px; }

.footer-contact a {
  color: var(--accent);
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ===== SMALL NOTE ===== */
.note-small {
  font-size: 0.85rem;
  color: var(--mid);
  background: var(--light);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 8px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--light);
  padding: 60px 24px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

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

.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 400;
}

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

.faq details p {
  padding: 0 0 16px;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  max-width: 1100px;
  margin: 0 auto 8px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 32px;
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
}

.trust-icon { font-size: 1.5rem; flex-shrink: 0; }

.trust-item strong { display: block; font-size: 0.92rem; color: var(--black); }
.trust-item span { font-size: 0.8rem; color: var(--mid); }

.trust-verify {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  transition: background 0.2s, border-color 0.2s;
}

.trust-verify:hover { background: var(--light); border-color: var(--mid); }

/* ===== STICKY MOBILE BOOKING BAR ===== */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-book-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--black);
}

.mobile-book-price span { font-size: 0.85rem; color: var(--mid); }

.mobile-book-btn {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===== LOCATION MAP ===== */
.location-section {
  background: var(--light);
  padding: 60px 24px;
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.location-inner h2 { font-size: 1.6rem; margin-bottom: 6px; }

.location-sub {
  color: var(--mid);
  margin-bottom: 24px;
  font-size: 0.95rem;
  max-width: 640px;
}

.location-map {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 1;
}

/* on-brand map pin */
.map-pin {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent), 0 2px 6px rgba(0,0,0,0.35);
}

/* tidy Leaflet controls to match the site */
.location-map .leaflet-control-zoom a {
  color: var(--black);
  border-radius: 6px;
}
.location-map .leaflet-bar { border: none; box-shadow: var(--shadow); }

.location-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.loc-point {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.loc-point span { font-size: 1.1rem; }

/* ===== GALLERY ===== */
.gallery-section { padding: 60px 24px; }

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-inner h2 { font-size: 1.6rem; margin-bottom: 6px; }
.gallery-sub { color: var(--mid); margin-bottom: 28px; font-size: 0.95rem; }

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

.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-grid figure.g-wide { grid-column: span 2; }

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

.gallery-grid figure:hover img { transform: scale(1.05); }

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 14px 10px;
  font-size: 0.8rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-grid figure:hover figcaption { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-section {
    position: static;
  }

  .property-header {
    flex-direction: column;
  }

  .price-card-inline {
    align-items: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 160px;
  }

  .hero-main { grid-row: span 1; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .review-tags { grid-template-columns: repeat(2, 1fr); }
  .rating-bars { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-points { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .mobile-book-bar { display: flex; }
  body { padding-bottom: 72px; } /* room for the sticky bar */
  .trust-strip { gap: 16px 24px; }
  .trust-verify { flex: 1 1 100%; text-align: center; }
}

@media (max-width: 600px) {
  .hero-gallery { grid-template-rows: 240px auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; height: 140px; }
  .form-row { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .property-title { font-size: 1.6rem; }
  .booking-card { padding: 24px 20px; }
  .review-tags { grid-template-columns: 1fr; }
  .reviews-link { flex-direction: column; text-align: center; }
  .gallery-grid figcaption { opacity: 1; }
}
