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

:root {
  --sage: #5a7d6a;
  --sage-light: #e8f0eb;
  --sage-mid: #8aab96;
  --warm: #c4956a;
  --warm-light: #f5ede3;
  --charcoal: #2c2c2a;
  --stone: #6b6b67;
  --offwhite: #f8f6f1;
  --white: #ffffff;
  --border: rgba(90,125,106,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,246,241,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage); }
.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.82rem !important;
}
.nav-cta:hover { background: #3f6354; color: var(--white) !important; }

/* HERO */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.hero-text {
  padding: 5rem 4rem 5rem 6rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  background: var(--warm-light);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--sage);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #3f6354; transform: translateY(-1px); }
.btn-secondary {
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.btn-secondary::after { content: '→'; transition: transform 0.2s; }
.btn-secondary:hover::after { transform: translateX(4px); }

.hero-visual {
  height: 90vh;
  background: var(--sage-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 45%, transparent 72%);
  z-index: 1;
}
.hero-svg {
  position: absolute; top: 0; right: 0; width: 100%; height: 100%;
  opacity: 0.18;
}
.hero-stat-strip {
  position: relative; z-index: 2;
  display: flex; gap: 1rem;
}
.hero-stat {
  flex: 1;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(6px);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--stone);
  font-weight: 400;
  line-height: 1.3;
}

/* SECTION STYLES */
section { padding: 5rem 6rem; }
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ABOUT STRIP */
.about-strip {
  background: var(--sage);
  color: var(--white);
  padding: 4rem 6rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-strip .section-label { color: var(--sage-mid); }
.about-strip .section-title { color: var(--white); margin-bottom: 1.2rem; }
.about-strip p { color: rgba(255,255,255,0.82); font-weight: 300; line-height: 1.8; }
.about-bullets { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.about-bullets li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}
.about-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--warm);
  border-radius: 50%;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* IDEAL FOR */
.ideal-section { background: var(--white); }
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.ideal-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.ideal-card:hover { border-color: var(--sage-mid); transform: translateY(-3px); }
.ideal-icon {
  width: 44px; height: 44px;
  background: var(--sage-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.ideal-icon svg { width: 22px; height: 22px; stroke: var(--sage); fill: none; stroke-width: 1.8; }
.ideal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.ideal-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.65; font-weight: 300; }

/* INCLUSIONS */
.inclusions-section { background: var(--offwhite); }
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.inclusion-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.inclusion-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.inclusion-item span { font-size: 0.9rem; color: var(--charcoal); line-height: 1.5; }

/* RENTAL OPTIONS */
.rental-section { background: var(--white); }
.rental-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; }
.rental-card {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}
.rental-card.featured {
  border-color: var(--sage);
  background: var(--sage-light);
}
.rental-badge {
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--sage);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
}
.rental-type {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
}
.rental-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.rental-card p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  font-weight: 300;
}
.rental-detail-list {
  list-style: none;
  margin-top: 1.2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.rental-detail-list li {
  font-size: 0.88rem;
  color: var(--charcoal);
  display: flex; align-items: center; gap: 0.6rem;
}
.rental-detail-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--warm);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA SECTION */
.cta-section {
  background: var(--warm-light);
  text-align: center;
  padding: 5rem 6rem;
}
.cta-section .section-title { max-width: 600px; margin: 0 auto 1.2rem; }
.cta-section p {
  color: var(--stone);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.contact-chip {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--stone);
}
.contact-chip a { color: var(--sage); text-decoration: none; font-weight: 500; }

/* FOOTER */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 2rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.85); }

/* LOCATION BADGE */
.location-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--stone);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
.location-badge svg { width: 13px; height: 13px; stroke: var(--sage); fill: none; stroke-width: 2; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 320px; }
  .hero-text { padding: 3rem 2rem; }
  section, .about-strip, .cta-section, footer { padding: 3rem 1.5rem; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; }
  .rental-grid { grid-template-columns: 1fr; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-stat { background: rgba(255,255,255,0.5); }
}

/* HERO PHOTO */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* GALLERY */
.gallery-section { background: var(--offwhite); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--sage-light);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.gallery-overlay-caption {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,20,18,0.94);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(90vw, 1100px);
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  text-align: center;
  background: rgba(255,255,255,0.08);
  padding: 0.35rem 1.1rem;
  border-radius: 2rem;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.4rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}
