/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — HVM Light Theme
   assets/css/index.css
   Navy #1B2D5B · Red #C22032 · White bg · Black text
   ═══════════════════════════════════════════════════════════════ */


/* ═════════════════════════════════════════════════════════════
   1. BANNER CAROUSEL (extracted from inline <style>)
   ═════════════════════════════════════════════════════════════ */

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #f6f7f9;
}

.banner .h-100 { height: 100%; }

.banner .row.gap-row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin: 0;
}

/* Carousel container */
#banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#herobanner.herobanner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Slides */
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-slide picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 6s ease-out;
}

.carousel-slide.active picture img {
  transform: scale(1.06);
}

/* Overlay gradient */
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 45, 91, 0.10) 0%,
    rgba(27, 45, 91, 0.04) 50%,
    rgba(27, 45, 91, 0.35) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Dot indicators */
.carousel-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  list-style: none;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.carousel-indicators li.active,
.carousel-indicators li:hover {
  background: #ffffff;
  transform: scale(1.25);
}

/* Prev / Next arrows */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.carousel-prev,
.carousel-next {
  pointer-events: all;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27, 45, 91, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.2s ease;
  user-select: none;
  line-height: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(27, 45, 91, 0.55);
  transform: scale(1.1);
}

/* Progress bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--clr-red, #C22032);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* Banner responsive */
@media (max-width: 768px) {
  .banner {
    min-height: 320px;
    height: 60vw;
  }
  .carousel-prev,
  .carousel-next {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .carousel-indicators { bottom: 16px; }
}

@media (max-width: 576px) {
  .banner {
    min-height: 260px;
    height: 75vw;
  }
  .carousel-controls { display: none; }
}


/* ═════════════════════════════════════════════════════════════
   2. HERO SPLIT (extracted from inline <style>)
   ═════════════════════════════════════════════════════════════ */

.hero-split {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  background: var(--clr-white, #ffffff);
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  overflow: hidden;
  position: relative;
}

/* Subtle diagonal texture */
.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      118deg,
      transparent,
      transparent 120px,
      rgba(27,45,91,0.025) 120px,
      rgba(27,45,91,0.025) 121px
    );
  pointer-events: none;
  z-index: 0;
}

/* LEFT PANEL */
.hs-left {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 64px 64px;
  background: var(--clr-white, #ffffff);
}

/* Accent left border */
.hs-left::before {
  content: "";
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--clr-red, #C22032), transparent);
}

/* Tag */
.hs-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-red, #C22032);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .6s .1s forwards;
}

.hs-tag::before {
  content: "";
  display: block;
  width: 28px; height: 1.5px;
  background: var(--clr-red, #C22032);
}

/* Title */
.hs-title {
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--clr-heading, #111111);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp .65s .2s forwards;
}

.hs-title em {
  font-style: italic;
  color: var(--clr-red, #C22032);
}

/* Location */
.hs-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-navy, #1B2D5B);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .65s .28s forwards;
}

.hs-location svg {
  flex-shrink: 0;
  stroke: var(--clr-red, #C22032);
}

/* Description */
.hs-desc {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--clr-muted, #5c6272);
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp .65s .35s forwards;
}

.hs-desc p + p { margin-top: 14px; }

/* Stats row */
.hs-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(27, 45, 91, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .65s .44s forwards;
}

.hs-stat {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(27, 45, 91, 0.15);
  background: rgba(27, 45, 91, 0.03);
  transition: background 0.35s ease;
}

.hs-stat:last-child { border-right: none; }
.hs-stat:hover { background: rgba(27, 45, 91, 0.07); }

.hs-stat-value {
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--clr-navy, #1B2D5B);
  display: block;
  line-height: 1.1;
}

.hs-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--clr-muted, #5c6272);
  margin-top: 5px;
  display: block;
}

/* Meta grid */
.hs-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .65s .52s forwards;
}

.hs-meta-item { display: flex; flex-direction: column; gap: 4px; }

.hs-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-muted, #5c6272);
}

.hs-meta-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-heading, #111111);
}

/* Actions */
.hs-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .65s .6s forwards;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--clr-red, #C22032);
  color: #fff;
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease;
}

.btn-gold:hover {
  background: var(--clr-red-dk, #9a1926);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--clr-navy, #1B2D5B);
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--clr-navy, #1B2D5B);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.btn-outline-gold:hover {
  background: var(--clr-navy, #1B2D5B);
  color: #fff;
  transform: translateY(-2px);
}

/* RIGHT PANEL (carousel) */
.hs-right {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hs-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

/* Slides */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  z-index: 0;
}

.hs-slide.active {
  opacity: 1;
  z-index: 1;
}

.hs-slide picture,
.hs-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease-out;
}

.hs-slide.active img { transform: scale(1.07); }

/* Left vignette blending into white panel */
.hs-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.45) 0%,
    transparent 30%
  );
  z-index: 2;
  pointer-events: none;
}

/* Bottom gradient */
.hs-carousel::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(27, 45, 91, 0.65), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Caption */
.hs-caption {
  position: absolute;
  bottom: 56px;
  left: 22px; right: 22px;
  z-index: 5;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: .06em;
  font-style: italic;
}

/* Dot indicators */
.hs-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  list-style: none;
}

.hs-dots li {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.hs-dots li.active {
  background: var(--clr-red, #C22032);
  border-color: var(--clr-red, #C22032);
  transform: scale(1.3);
}

/* Arrow controls */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(27, 45, 91, 0.35);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease;
}

.hs-arrow:hover {
  background: rgba(27, 45, 91, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.hs-arrow-prev { left: 12px; }
.hs-arrow-next { right: 12px; }

/* Progress bar */
.hs-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--clr-red, #C22032);
  z-index: 5;
  width: 0%;
  transition: width linear;
}

/* Slide counter */
.hs-counter {
  position: absolute;
  top: 20px; right: 18px;
  z-index: 5;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.6);
}

.hs-counter span {
  color: #fff;
  font-weight: 600;
}

/* Hero-split responsive */
@media (max-width: 992px) {
  .hero-split { flex-direction: column; min-height: auto; }
  .hs-left  { flex: none; max-width: 100%; padding: 56px 32px 48px; }
  .hs-right { flex: none; max-width: 100%; height: 55vw; min-height: 300px; }
  .hs-left::before { display: none; }
}

@media (max-width: 576px) {
  .hs-left  { padding: 48px 20px 40px; }
  .hs-title { font-size: 2.2rem; }
  .hs-stats { flex-wrap: wrap; }
  .hs-stat  { flex: 0 0 50%; border-bottom: 1px solid rgba(27,45,91,0.12); }
  .hs-meta  { grid-template-columns: 1fr; }
  .hs-right { height: 72vw; }
  .hs-arrow { display: none; }
}


/* ═════════════════════════════════════════════════════════════
   3. SPLIT SECTION (Walkthrough)
   ═════════════════════════════════════════════════════════════ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-img {
  position: relative;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.split-img:hover img { transform: scale(1.04); }

.artistic-tag {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(27,45,91,0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--clr-offwhite, #f6f7f9);
}

.split-text p {
  color: var(--clr-muted, #5c6272);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.split-text h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  color: var(--clr-heading, #111) !important;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.split-text h2 em {
  color: var(--clr-red, #C22032) !important;
}

@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
}


/* ═════════════════════════════════════════════════════════════
   4. AMENITIES
   ═════════════════════════════════════════════════════════════ */

.amenities-section {
  position: relative;
  background: var(--clr-white, #ffffff);
  overflow: hidden;
}

.amenities-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(27,45,91,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: var(--clr-white, #ffffff);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-md, 8px);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  border-color: var(--clr-navy, #1B2D5B);
}

.amenity-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(27,45,91,0.05);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
}

.amenity-icon svg {
  width: 22px; height: 22px;
  stroke: var(--clr-navy, #1B2D5B);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-label {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-navy, #1B2D5B);
}

@media (max-width: 1024px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }


/* ═════════════════════════════════════════════════════════════
   5. FLOOR PLANS
   ═════════════════════════════════════════════════════════════ */

.floorplans-section {
  background: var(--clr-offwhite, #f6f7f9);
}

.floorplan-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.fp-tab {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-sm, 4px);
  background: transparent;
  color: var(--clr-muted, #5c6272);
  cursor: pointer;
  transition: all 0.35s ease;
}

.fp-tab:hover,
.fp-tab.active {
  background: var(--clr-navy, #1B2D5B);
  color: #fff;
  border-color: var(--clr-navy, #1B2D5B);
}

.fp-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.fp-panel.active { display: grid; }

.fp-img-wrap {
  position: relative;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
}

.fp-img-wrap img {
  width: 100%;
  display: block;
  filter: blur(4px);
}

.fp-lock-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  background: rgba(255,255,255,0.75);
}

.fp-lock-overlay svg {
  width: 40px; height: 40px;
  stroke: var(--clr-navy, #1B2D5B);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.fp-info h3 {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--clr-navy, #1B2D5B);
  margin-bottom: 1.5rem;
}

.fp-specs {
  margin-bottom: 1.5rem;
}

.fp-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  font-size: 0.85rem;
}

.spec-key { color: var(--clr-muted, #5c6272); }
.spec-val { color: var(--clr-heading, #111); font-weight: 500; }

@media (max-width: 768px) {
  .fp-panel { grid-template-columns: 1fr; }
}


/* ═════════════════════════════════════════════════════════════
   6. PRICE TABLE
   ═════════════════════════════════════════════════════════════ */

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-md, 8px);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.price-table th {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--clr-navy, #1B2D5B);
  padding: 1rem 1.2rem;
  text-align: left;
  white-space: nowrap;
}

.price-table td {
  padding: 1rem 1.2rem;
  color: var(--clr-body, #1a1a1a);
  border-bottom: 1px solid var(--clr-border, rgba(27,45,91,0.12));
}

.price-table tbody tr {
  background: var(--clr-white, #ffffff);
  transition: background 0.3s ease;
}

.price-table tbody tr:hover {
  background: rgba(27,45,91,0.03);
}

.price-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--clr-red, #C22032);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-weight: 500;
}


/* ═════════════════════════════════════════════════════════════
   7. GALLERY ROW hover override
   ═════════════════════════════════════════════════════════════ */

div:hover > div > img {
  transform: scale(1.05);
}


/* ═════════════════════════════════════════════════════════════
   8. LOCATION
   ═════════════════════════════════════════════════════════════ */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-map-wrap {
  position: relative;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
}

.location-map-wrap img {
  width: 100%;
  display: block;
}

.location-map-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,45,91,0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.location-map-wrap:hover .location-map-overlay { opacity: 1; }

.location-map-overlay span {
  color: #fff;
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm, 4px);
}

.location-advantages { display: flex; flex-direction: column; gap: 1.5rem; }

.loc-group-title {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-red, #C22032);
  margin-bottom: 0.6rem;
}

.loc-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.loc-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm, 4px);
}

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
}


/* ═════════════════════════════════════════════════════════════
   9. FAQ
   ═════════════════════════════════════════════════════════════ */

.faq-section {
  background: var(--clr-white, #ffffff);
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border, rgba(27,45,91,0.12));
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--clr-heading, #111);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--clr-navy, #1B2D5B); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--clr-red, #C22032);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.88rem;
  color: var(--clr-muted, #5c6272);
  line-height: 1.75;
  padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.2rem;
}


/* ═════════════════════════════════════════════════════════════
   10. CONTACT SECTION
   ═════════════════════════════════════════════════════════════ */

.contact-section {
  background: var(--clr-offwhite, #f6f7f9);
}

.contact-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--clr-heading, #111);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--clr-muted, #5c6272);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(27,45,91,0.06);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px; height: 16px;
  stroke: var(--clr-navy, #1B2D5B);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.contact-info .contact-detail span {
  font-size: 0.88rem;
  color: var(--clr-body, #1a1a1a);
}

/* Form card */
.form-card {
  background: var(--clr-white, #ffffff);
  border: 1px solid var(--clr-border, rgba(27,45,91,0.12));
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.form-card h3 {
  font-family: var(--ff-heading, 'Cinzel', serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-navy, #1B2D5B);
  margin-bottom: 0.3rem;
}

.form-tagline {
  font-size: 0.82rem;
  color: var(--clr-muted, #5c6272);
  margin-bottom: 1.5rem;
}


/* ═════════════════════════════════════════════════════════════
   11. STAGGER CHILDREN ANIMATION
   ═════════════════════════════════════════════════════════════ */

.stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-children > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > *:nth-child(2)  { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4)  { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5)  { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6)  { transition-delay: 0.40s; }
.stagger-children > *:nth-child(7)  { transition-delay: 0.48s; }
.stagger-children > *:nth-child(8)  { transition-delay: 0.56s; }
.stagger-children > *:nth-child(9)  { transition-delay: 0.64s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.72s; }
.stagger-children > *:nth-child(11) { transition-delay: 0.80s; }
.stagger-children > *:nth-child(12) { transition-delay: 0.88s; }


/* ═════════════════════════════════════════════════════════════
   12. INLINE STYLE OVERRIDES
   These override the inline style="color:var(--clr-*)" values
   in the PHP to match the light theme
   ═════════════════════════════════════════════════════════════ */

/* Overview & walkthrough heading overrides */
#overview h2,
.split-text h2 {
  color: var(--clr-heading, #111) !important;
}

#overview h2 em,
.split-text h2 em {
  color: var(--clr-red, #C22032) !important;
}

/* Location section — dark background kept for contrast */
#location {
  background: var(--clr-navy, #1B2D5B) !important;
}

/* Price list section — white background */
#pricelist {
  background: var(--clr-white, #ffffff) !important;
}
