/* ============================================================
   villa.css — Villa Interior Design Service Page
   Nexus Living Hub | Session 7
   Accent: var(--color-espresso) | Personality: Grand, Architectural
   ============================================================ */

/* ── 00. NAV OVERRIDES (transparent over dark villa hero)
   ============================================================ */
.villa-page .site-nav:not(.nav-scrolled) {
  background: transparent;
  box-shadow: none;
}

.villa-page .site-nav:not(.nav-scrolled) .nav__logo,
.villa-page .site-nav:not(.nav-scrolled) .nav__link,
.villa-page .site-nav:not(.nav-scrolled) .lang-toggle__btn {
  color: var(--color-ivory);
}

.villa-page .site-nav:not(.nav-scrolled) .nav__link::after {
  background: var(--color-gold);
}

.villa-page .site-nav:not(.nav-scrolled) .nav__cta {
  background: var(--color-cta);
  color: var(--color-ivory);
}

.villa-page .site-nav:not(.nav-scrolled) .nav__hamburger span {
  background: var(--color-ivory);
}

.villa-page .nav-scrolled {
  background: var(--color-cream) !important;
  box-shadow: var(--shadow-nav) !important;
}

.villa-page .nav-scrolled .nav__logo,
.villa-page .nav-scrolled .nav__link {
  color: var(--color-charcoal);
}


/* ── 01. HERO — 70vh Cinematic Vertical Split
   ============================================================ */
.villa-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-espresso);
}

/* Grain texture overlay */
.villa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

/* Right image panel placeholder */
.villa-hero__image-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: var(--color-walnut);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(74, 55, 40, 0.15) 0px,
      rgba(74, 55, 40, 0.15) 1px,
      transparent 1px,
      transparent 40px
    );
  z-index: 0;
}

/* Dark gradient wash — left 55% fade to transparent right */
.villa-hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-walnut) 0%,
    var(--color-walnut) 35%,
    rgba(44, 31, 20, 0.88) 50%,
    rgba(44, 31, 20, 0.4) 70%,
    transparent 100%
  );
  z-index: 2;
}

/* Bottom vignette */
.villa-hero__wash::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(44, 31, 20, 0.5), transparent);
}

.villa-hero__content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px var(--space-sm) var(--space-2xl);
  width: 100%;
}

.villa-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: var(--space-md);
}

.villa-hero__breadcrumb a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.villa-hero__breadcrumb a:hover {
  color: var(--color-gold);
}

.villa-hero__breadcrumb-sep {
  font-size: 0.625rem;
  opacity: 0.5;
}

.villa-hero__overline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.villa-hero__title {
  font-family: var(--font-hero);
  font-size: var(--size-h1);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-ivory);
  max-width: 560px;
  margin-bottom: var(--space-md);
}

.villa-hero__divider {
  width: 80px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.villa-hero__subtext {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.85);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.villa-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Trust strip under hero content */
.villa-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.villa-hero__trust-item {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.65);
  text-transform: uppercase;
}

.villa-hero__trust-item strong {
  color: var(--color-gold);
  font-weight: 700;
}

.villa-hero__trust-sep {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  opacity: 0.4;
  flex-shrink: 0;
}


/* ── 02. WHAT'S INCLUDED — Floor-by-Floor Vertical Narrative
   ============================================================ */
.villa-included {
  padding: var(--section-pad-mobile) 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .villa-included {
    padding: var(--section-pad-tablet) 0;
  }
}

.villa-included__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.villa-included__header h2 {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.villa-included__header p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--leading-body);
  color: var(--color-grey);
}

/* Floor-by-floor narrative layout */
.floors-narrative {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Vertical connecting line */
.floors-narrative::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(45, 74, 62, 0) 0%,
    rgba(45, 74, 62, 0.3) 15%,
    rgba(45, 74, 62, 0.3) 85%,
    rgba(45, 74, 62, 0) 100%
  );
}

.floor-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: var(--space-xl) 0 var(--space-xl) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.floor-band:last-child {
  border-bottom: none;
}

/* Floor dot on the connecting line */
.floor-band::before {
  content: '';
  position: absolute;
  left: -5px;
  top: calc(var(--space-xl) + 14px);
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--color-espresso);
  border: 2px solid var(--color-surface);
  box-shadow: 0 0 0 2px var(--color-espresso);
}

.floor-band__label-area {
  /* Mobile: full width */
}

.floor-band__label {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-espresso);
  line-height: 1.1;
}

.floor-band__floor-count {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-grey);
  margin-top: 4px;
  display: block;
}

.floor-band__rooms {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.floor-room {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-espresso);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floor-room:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.floor-room__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-ivory);
  font-size: 0.875rem;
}

.floor-room__text {
  flex: 1;
}

.floor-room__name {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.floor-room__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-grey);
}

@media (min-width: 768px) {
  .floors-narrative::before {
    left: 28%;
  }

  .floor-band {
    grid-template-columns: 28% 1fr;
    gap: var(--space-xl);
    padding-left: calc(28% + var(--space-lg));
    position: relative;
  }

  .floor-band::before {
    left: calc(28% - 5px);
    top: calc(var(--space-xl) + 14px);
  }

  .floor-band__label-area {
    margin-left: calc(-28% - var(--space-lg) + var(--space-sm));
  }

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

@media (min-width: 1024px) {
  .floor-band__rooms {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── 03. PACKAGE TIERS — Horizontal Scrolling Cards
   ============================================================ */
.villa-tiers {
  padding: var(--section-pad-mobile) 0;
  background: var(--color-cream);
  overflow: hidden;
}

@media (min-width: 768px) {
  .villa-tiers {
    padding: var(--section-pad-tablet) 0;
  }
}

.villa-tiers__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
  padding: 0 var(--space-sm);
}

.villa-tiers__header h2 {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.villa-tiers__header p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--leading-body);
  color: var(--color-grey);
}

/* Scroll container */
.villa-tiers__scroll-outer {
  padding: var(--space-md) var(--space-sm) var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-espresso) var(--color-linen);
}

.villa-tiers__scroll-outer::-webkit-scrollbar {
  height: 4px;
}

.villa-tiers__scroll-outer::-webkit-scrollbar-track {
  background: var(--color-linen);
}

.villa-tiers__scroll-outer::-webkit-scrollbar-thumb {
  background: var(--color-espresso);
  border-radius: var(--radius-pill);
}

.villa-tiers__track {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  width: max-content;
  padding: var(--space-sm) var(--space-xs);
}

/* Tier card */
.villa-tier-card {
  scroll-snap-align: start;
  width: 320px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.villa-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Top colour band */
.villa-tier-card__band {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}

.villa-tier-card__band--essential {
  background: var(--color-green);
}

.villa-tier-card__band--premium {
  background: var(--color-gold);
}

.villa-tier-card__band--elite {
  background: var(--color-espresso);
}

.villa-tier-card__inner {
  padding: var(--space-lg) var(--space-md) var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* "Most Chosen" ribbon */
.villa-tier-card__ribbon {
  position: absolute;
  top: 16px;
  right: -1px;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px 4px 10px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  line-height: 1.4;
  box-shadow: -2px 2px 6px rgba(74, 55, 40, 0.15);
}

.villa-tier-card__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
  align-self: flex-start;
}

.villa-tier-card__badge--essential {
  background: rgba(45, 74, 62, 0.1);
  color: var(--color-green);
}

.villa-tier-card__badge--premium {
  background: rgba(201, 169, 110, 0.15);
  color: var(--color-espresso);
}

.villa-tier-card__badge--elite {
  background: rgba(74, 55, 40, 0.1);
  color: var(--color-espresso);
}

.villa-tier-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.villa-tier-card__tagline {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-grey);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.villa-tier-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  flex: 1;
}

.villa-tier-card__divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-md);
}

.villa-tier-card__inclusions-label {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  color: var(--color-grey);
  margin-bottom: var(--space-sm);
}

.villa-tier-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.villa-tier-card__list li {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.villa-tier-card__list li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.villa-tier-card__cta {
  margin-top: var(--space-md);
}

/* Desktop: elevate Premium card */
@media (min-width: 1024px) {
  .villa-tiers__scroll-outer {
    overflow-x: visible;
  }

  .villa-tiers__track {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    justify-content: center;
    align-items: flex-start;
  }

  .villa-tier-card {
    width: calc(33.333% - var(--space-md));
    flex: 1;
    max-width: 360px;
    scroll-snap-align: unset;
  }

  .villa-tier-card--premium {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--color-gold);
  }

  .villa-tier-card--premium:hover {
    transform: translateY(-18px);
  }
}


/* ── 04. MULTI-FLOOR DESIGN CHALLENGES — Dark Espresso Section
   ============================================================ */
.villa-challenges {
  padding: var(--section-pad-mobile) 0;
  background: var(--color-espresso);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .villa-challenges {
    padding: var(--section-pad-tablet) 0;
  }
}

/* Subtle gold grain overlay */
.villa-challenges::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.villa-challenges .container {
  position: relative;
  z-index: 1;
}

.villa-challenges__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.villa-challenges__header h2 {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-ivory);
  margin-bottom: var(--space-sm);
}

.villa-challenges__header p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--leading-body);
  color: rgba(245, 240, 232, 0.65);
}

/* Numbered challenge blocks */
.challenge-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.challenge-block {
  position: relative;
  padding: var(--space-xl) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

/* Gold horizontal rule between blocks */
.challenge-block + .challenge-block {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* Large watermark number */
.challenge-block__number {
  font-family: var(--font-hero);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 800;
  color: var(--color-gold);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: var(--space-md);
  right: 0;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.challenge-block__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.challenge-block__title {
  font-family: var(--font-heading);
  font-size: var(--size-h3);
  font-weight: 600;
  color: var(--color-ivory);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-heading);
}

.challenge-block__body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.82);
}

@media (min-width: 768px) {
  .challenge-block {
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    align-items: start;
  }

  .challenge-block__number {
    position: static;
    font-size: clamp(3.5rem, 5vw, 5rem);
    opacity: 0.12;
    line-height: 1;
    align-self: start;
    padding-top: 4px;
  }
}


/* ── 05. FEATURED PROJECTS
   ============================================================ */
.villa-projects {
  padding: var(--section-pad-mobile) 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .villa-projects {
    padding: var(--section-pad-tablet) 0;
  }
}

.villa-projects__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.villa-projects__header h2 {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.villa-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .villa-projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .villa-projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vproject-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vproject-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.vproject-card__image {
  aspect-ratio: 4 / 3;
  background: var(--color-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.vproject-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(74, 55, 40, 0.04) 0,
    rgba(74, 55, 40, 0.04) 1px,
    transparent 1px,
    transparent 28px
  );
}

.vproject-card__image-icon {
  font-size: 2rem;
  color: var(--color-espresso);
  opacity: 0.25;
}

.vproject-card__body {
  padding: var(--space-md);
}

.vproject-card__badge {
  display: inline-block;
  background: rgba(74, 55, 40, 0.1);
  color: var(--color-espresso);
  font-family: var(--font-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.vproject-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.vproject-card__locality {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  color: var(--color-grey);
  margin-bottom: var(--space-sm);
}

.vproject-card__link {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-espresso);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.vproject-card__link:hover {
  color: var(--color-gold);
}

.villa-projects__all {
  text-align: center;
}

.villa-projects__all a {
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-espresso);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--color-espresso);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.villa-projects__all a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}


/* ── 06. FAQ
   ============================================================ */
.villa-faq {
  padding: var(--section-pad-mobile) 0;
  background: var(--color-cream);
}

@media (min-width: 768px) {
  .villa-faq {
    padding: var(--section-pad-tablet) 0;
  }
}

.villa-faq__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
}

.villa-faq__header h2 {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.villa-faq__header p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-grey);
  line-height: var(--leading-body);
}

.faq-section-villa {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-section-villa .faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-section-villa .faq-item.open {
  border-color: var(--color-espresso);
}

.faq-section-villa .faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-section-villa .faq-question:hover {
  color: var(--color-espresso);
}

.faq-section-villa .faq-question__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-espresso);
  color: var(--color-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.2s ease, transform 0.3s ease;
  line-height: 1;
}

.faq-section-villa .faq-item.open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-section-villa .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-section-villa .faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-section-villa .faq-answer__inner {
  padding: 0 var(--space-md) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}


/* ── 07. CTA SECTION — Espresso → Walnut Gradient
   ============================================================ */
.villa-cta {
  padding: var(--section-pad-mobile) 0;
  background: linear-gradient(
    135deg,
    var(--color-espresso) 0%,
    var(--color-walnut) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .villa-cta {
    padding: var(--section-pad-tablet) 0;
  }
}

/* Decorative radial glow */
.villa-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  border-radius: var(--radius-full);
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle diagonal texture */
.villa-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(201, 169, 110, 0.025) 0px,
    rgba(201, 169, 110, 0.025) 1px,
    transparent 1px,
    transparent 32px
  );
  pointer-events: none;
}

.villa-cta .container {
  position: relative;
  z-index: 1;
}

.villa-cta__flourish {
  font-size: 1.5rem;
  color: var(--color-gold);
  opacity: 0.7;
  margin-bottom: var(--space-md);
  display: block;
  letter-spacing: 0.5em;
}

.villa-cta__title {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  font-weight: 700;
  color: var(--color-ivory);
  max-width: 640px;
  margin: 0 auto var(--space-md);
  line-height: 1.2;
}

.villa-cta__subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.78);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}

.villa-cta__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Override btn-primary for CTA section contrast */
.villa-cta .btn-primary {
  background: var(--color-ivory);
  color: var(--color-espresso);
  border: 2px solid var(--color-ivory);
}

.villa-cta .btn-primary:hover {
  background: transparent;
  color: var(--color-ivory);
}

/* Ghost CTA */
.villa-cta .btn-ghost {
  background: transparent;
  color: var(--color-ivory);
  border: 2px solid rgba(245, 240, 232, 0.45);
  font-family: var(--font-accent);
  font-size: var(--size-cta);
  font-weight: 600;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.villa-cta .btn-ghost:hover {
  background: rgba(245, 240, 232, 0.12);
  border-color: var(--color-ivory);
}

/* Trust mini-strip */
.villa-cta__trust {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.villa-cta__trust-item {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.villa-cta__trust-item strong {
  color: var(--color-gold);
}


/* ── RESPONSIVE: Hero content padding at mobile
   ============================================================ */
@media (min-width: 768px) {
  .villa-hero__content {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .villa-hero__title {
    max-width: 600px;
  }

  .villa-hero__subtext {
    font-size: 1.125rem;
  }
}

@media (min-width: 1280px) {
  .villa-hero__content {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .villa-hero__image-panel {
    width: 58%;
  }
}


/* ── REDUCED MOTION FALLBACK
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .floor-room,
  .villa-tier-card,
  .vproject-card,
  .faq-section-villa .faq-question__icon {
    transition: none !important;
    animation: none !important;
  }
}
