/* ============================================================
   KinCo Legacy Group — Premium Luxury Design System
   Black · Champagne Gold · Warm Beige · Charcoal · White
   ============================================================ */

/* ---- Google Fonts are loaded in layout ---- */

/* ---- CSS Variables ---- */
:root {
  --black:        #050505;
  --black-panel:  #111111;
  --black-soft:   #1A1A1A;
  --black-card:   #141414;
  --gold:         #C9A86A;
  --gold-light:   #D9BC8A;
  --gold-dark:    #A8873E;
  --gold-muted:   rgba(201,168,106,0.18);
  --beige:        #E8E0D4;
  --beige-light:  #F6F1E8;
  --beige-mid:    #D4C9B8;
  --text-primary: #F5F2ED;
  --text-muted:   #A8A29E;
  --text-dim:     #6B6560;
  --text-dark:    #1A1A1A;
  --border-gold:  rgba(201,168,106,0.22);
  --border-soft:  rgba(255,255,255,0.07);
  --white:        #FFFFFF;

  --font-serif:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', 'Manrope', 'Helvetica Neue', sans-serif;

  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --duration:    0.35s;
  --duration-slow: 0.6s;

  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   12px;
  --radius-xl:   20px;

  --shadow-gold: 0 0 28px rgba(201,168,106,0.18);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-lift: 0 20px 60px rgba(0,0,0,0.55);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
input, textarea, select { font-family: var(--font-sans); font-size: 1rem; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0.02em; }
p  { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }
em { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Layout ---- */
.container       { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 820px; }
section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }

/* ---- Gold Divider ---- */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: box-shadow var(--duration) var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo */
.nav__logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-sans);
}

/* Center nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { transform: scaleX(1); }

/* Right CTA */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__portal {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--duration);
}
.nav__portal:hover { color: var(--gold); }
.nav__portal svg { opacity: 0.6; transition: opacity var(--duration); }
.nav__portal:hover svg { opacity: 1; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--gold);
}
.btn-nav:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--duration);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--black-panel);
  border-top: 1px solid var(--border-gold);
  padding: 20px 32px 28px;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 13px 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--duration);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile a:last-child { border-bottom: none; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 32px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--border-gold);
}
.btn--outline-gold:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
}
.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--dark-gold {
  background: var(--black);
  color: var(--gold);
  border-color: var(--border-gold);
}
.btn--dark-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn--black-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(26,26,26,0.3);
}
.btn--black-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 0.64rem; }
.btn--lg { padding: 18px 40px; font-size: 0.74rem; }

/* ================================================================
   SECTION HEADER
   ================================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header--left { text-align: left; }
.section-header h2 { margin-top: 14px; margin-bottom: 16px; }
.section-header p { max-width: 540px; margin: 0 auto; }
.section-header--left p { margin: 0; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
}
.hero__left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
}
.hero__left::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-gold) 30%, var(--border-gold) 70%, transparent);
}
.hero__left-inner { max-width: 560px; }
.hero__eyebrow { margin-bottom: 28px; }
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero__headline-line1 { display: block; color: var(--text-primary); }
.hero__headline-line2 { display: block; color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 440px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__divider {
  width: 100%;
  height: 1px;
  background: var(--border-soft);
  margin-bottom: 36px;
}
.hero__stats {
  display: flex;
  gap: 40px;
}
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5,5,5,0.45) 0%,
    rgba(5,5,5,0.1) 60%,
    transparent 100%
  );
}
.hero__img-caption {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__img-caption svg { color: var(--gold); flex-shrink: 0; }
.hero__img-caption-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}
.hero__img-caption-text span {
  font-size: 0.67rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why {
  background: var(--black-panel);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.why__label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.why__label::before,
.why__label::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--border-gold);
  max-width: 120px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.why__item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border-gold);
  transition: background var(--duration) var(--ease);
  position: relative;
}
.why__item:last-child { border-right: none; }
.why__item:hover { background: rgba(201,168,106,0.05); }
.why__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--duration-slow) var(--ease-out), right var(--duration-slow) var(--ease-out);
}
.why__item:hover::after { left: 20%; right: 20%; }
.why__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.85;
}
.why__icon svg { width: 26px; height: 26px; stroke-width: 1.2; }
.why__item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.why__item p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ================================================================
   PROPERTY SECTION
   ================================================================ */
.properties { background: var(--beige-light); }
.properties__header {
  text-align: center;
  margin-bottom: 56px;
}
.properties__header h2 {
  color: var(--text-dark);
  margin-top: 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  letter-spacing: 0.06em;
}
.properties__header .eyebrow { color: var(--gold-dark); }
.properties__header .eyebrow::before { background: var(--gold-dark); }
.properties__header p { color: #5A534E; }
.properties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.property-card {
  background: var(--beige-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.property-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.property-card:hover .property-card__img { transform: scale(1.05); }
.property-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--black);
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}
.property-card__body {
  padding: 24px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-card__location {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.property-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.property-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.property-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4A4540;
}
.property-card__meta-item svg {
  width: 13px; height: 13px;
  color: var(--gold-dark);
  stroke-width: 1.8;
  flex-shrink: 0;
}
.property-card__divider {
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 14px 0;
}
.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.property-card__price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.property-card__price span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: #6B6560;
}

/* Row 2: 2 wide cards */
.properties__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

/* ================================================================
   OWNER PORTAL CTA
   ================================================================ */
.owner-portal {
  background: var(--black-panel);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.owner-portal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.owner-portal__visual {
  position: relative;
  height: 400px;
}
.owner-portal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.7;
}
.owner-portal__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.5), rgba(201,168,106,0.08));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
}
.owner-portal__content .eyebrow { margin-bottom: 20px; }
.owner-portal__content h2 { margin-bottom: 20px; }
.owner-portal__content p { margin-bottom: 32px; }
.owner-portal__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.owner-portal__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.owner-portal__feature svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 15px; height: 15px;
  stroke-width: 1.8;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { background: var(--black); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.testimonial-card__quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-card__stars svg {
  width: 13px; height: 13px;
  fill: var(--gold);
  color: var(--gold);
}
.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__avatar svg { color: var(--gold); width: 16px; height: 16px; }
.testimonial-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.testimonial-card__role {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ================================================================
   NEIGHBORHOOD
   ================================================================ */
.neighborhood { background: var(--black-panel); }
.neighborhood__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.neighborhood__card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-gold);
}
.neighborhood__card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.neighborhood__card:hover .neighborhood__card-img { transform: scale(1.06); }
.neighborhood__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.72) 100%);
  transition: background var(--duration) var(--ease);
}
.neighborhood__card:hover .neighborhood__card-overlay {
  background: linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.82) 100%);
}
.neighborhood__card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}
.neighborhood__card-content h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 4px;
  font-weight: 600;
}
.neighborhood__card-content p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.neighborhood__card-line {
  width: 24px; height: 1px;
  background: var(--gold);
  margin-bottom: 10px;
  transition: width var(--duration-slow) var(--ease-out);
}
.neighborhood__card:hover .neighborhood__card-line { width: 40px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq { background: var(--black); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border-gold); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 20px;
  transition: color var(--duration);
  letter-spacing: 0.01em;
}
.faq__question:hover { color: var(--gold); }
.faq__icon {
  width: 30px; height: 30px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration);
}
.faq__icon svg { width: 12px; height: 12px; color: var(--gold); stroke-width: 2.5; transition: transform var(--duration); }
.faq__item.open .faq__icon { background: var(--gold); border-color: var(--gold); }
.faq__item.open .faq__icon svg { color: var(--black); transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 0 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}
.faq__item.open .faq__answer { display: block; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--black-panel);
  border-top: 1px solid var(--border-gold);
  padding: 100px 32px;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; color: var(--text-primary); }
.cta-banner p { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact { background: var(--black); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact__info h2 { margin-bottom: 20px; }
.contact__info > p { margin-bottom: 40px; }
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; gap: 16px; align-items: flex-start; }
.contact__detail-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact__detail-icon svg { width: 16px; height: 16px; stroke-width: 1.6; }
.contact__detail-info strong {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.contact__detail-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact__detail-info a { color: var(--gold); transition: color var(--duration); }
.contact__detail-info a:hover { color: var(--gold-light); }

/* Form */
.form {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 44px 40px;
}
.form__title { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-primary); margin-bottom: 6px; }
.form__subtitle { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 32px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 18px; }
.form__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--black-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: border-color var(--duration), box-shadow var(--duration);
  appearance: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-dim); }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,106,0.1);
}
.form__textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form__select option { background: var(--black-panel); color: var(--text-primary); }
.form__success {
  display: none;
  background: rgba(201,168,106,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 16px;
  text-align: center;
}

/* ================================================================
   PROPERTIES PAGE — beige background overrides
   ================================================================ */
.properties-page-grid { background: var(--beige-light); }
.properties-page-grid h3,
.properties-page-grid h2 { color: var(--text-dark); }
.properties-page-grid p { color: #5A534E; }

/* ================================================================
   INTERIOR PAGE HERO
   ================================================================ */
.page-hero {
  background: var(--black-panel);
  padding: 160px 32px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__eyebrow { display: flex; justify-content: center; margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* ================================================================
   PROPERTY DETAIL
   ================================================================ */
.property-detail { padding-top: 72px; background: var(--black); }
.property-detail .container { padding-top: 48px; }
.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  border: 1px solid var(--border-gold);
}
.property-gallery__main { grid-row: 1 / 3; object-fit: cover; width: 100%; height: 100%; }
.property-gallery__thumb { object-fit: cover; width: 100%; height: 100%; }
.property-detail__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
  padding-bottom: 80px;
}
.property-detail__location {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.property-detail__title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 6px; }
.property-detail__meta {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.property-detail__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.property-detail__meta-item svg { color: var(--gold); width: 15px; height: 15px; stroke-width: 1.6; }
.property-detail__desc h3 { margin-bottom: 16px; }
.property-detail__desc p { margin-bottom: 16px; }
.property-detail__amenities h3 { margin-bottom: 20px; margin-top: 32px; }
.property-detail__amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.amenity-item svg { color: var(--gold); flex-shrink: 0; width: 14px; height: 14px; stroke-width: 1.8; }
.good-for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.good-for-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.good-for-item svg { color: var(--gold); width: 13px; height: 13px; stroke-width: 2; flex-shrink: 0; }

/* Booking Sidebar */
.booking-sidebar {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: sticky;
  top: 88px;
}
.booking-sidebar__price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.booking-sidebar__price span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 400;
}
.booking-sidebar__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.booking-sidebar__rating svg { fill: var(--gold); color: var(--gold); width: 12px; height: 12px; }
.booking-sidebar__divider { border: none; border-top: 1px solid var(--border-soft); margin: 20px 0; }
.booking-sidebar__note { font-size: 0.72rem; color: var(--text-dim); text-align: center; margin-top: 14px; }
.booking-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--duration);
  margin-bottom: 10px;
}
.booking-link svg { width: 12px; height: 12px; color: var(--gold); }
.booking-link:hover { border-color: var(--gold); color: var(--text-primary); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__story-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border-gold); }
.about__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about__value {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: border-color var(--duration), box-shadow var(--duration);
}
.about__value:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.about__value-icon { margin-bottom: 18px; color: var(--gold); }
.about__value-icon svg { width: 26px; height: 26px; stroke-width: 1.3; }
.about__value h4 { color: var(--text-primary); margin-bottom: 10px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.about__value p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.7; }

/* ================================================================
   CORPORATE PAGE
   ================================================================ */
.corporate-page__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.corporate-page__feature {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--duration);
}
.corporate-page__feature:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.corporate-page__feature-icon { color: var(--gold); margin-bottom: 14px; }
.corporate-page__feature-icon svg { width: 26px; height: 26px; stroke-width: 1.3; }
.corporate-page__feature h4 { color: var(--text-primary); margin-bottom: 8px; }
.corporate-page__feature p { font-size: 0.82rem; }
.corporate-page__process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.corporate-page__process::before {
  content: '';
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.process-step { text-align: center; }
.process-step__num {
  width: 54px; height: 54px;
  background: var(--black-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.process-step h4 { color: var(--text-primary); margin-bottom: 8px; font-size: 0.82rem; }
.process-step p { font-size: 0.78rem; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 10px; height: 10px; color: var(--text-dim); stroke-width: 2; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black-panel);
  border-top: 1px solid var(--border-gold);
  padding: 72px 0 36px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}
.footer__logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.footer__brand p { font-size: 0.82rem; line-height: 1.75; max-width: 240px; color: var(--text-dim); }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all var(--duration);
}
.footer__social svg { width: 14px; height: 14px; stroke-width: 1.8; }
.footer__social:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }
.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 0.82rem; color: var(--text-dim); transition: color var(--duration); }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: 0.72rem; color: var(--text-dim); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 0.72rem; color: var(--text-dim); transition: color var(--duration); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-up { animation: fadeUp 0.7s var(--ease-out) both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 56px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
/* ================================================================
   RESPONSIVE — 1200px (Large tablets / small desktops)
   ================================================================ */
@media (max-width: 1200px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .why__item { border-bottom: 1px solid var(--border-gold); }
  .why__item:nth-child(3) { border-right: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ================================================================
   RESPONSIVE — 1024px (Tablets landscape)
   ================================================================ */
@media (max-width: 1024px) {
  h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero__right { height: 55vw; min-height: 360px; order: -1; }
  .hero__left { padding: 56px 48px; }
  .hero__left::after { display: none; }
  .hero__left-inner { max-width: 100%; }

  /* Why grid */
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .why__item:nth-child(3) { border-right: none; }
  .why__item:nth-child(4),
  .why__item:nth-child(5),
  .why__item:nth-child(6) { border-bottom: none; }

  /* Properties */
  .properties__grid { grid-template-columns: repeat(2, 1fr); }
  .properties__row2 { grid-template-columns: 1fr 1fr; }

  /* About */
  .about__story { grid-template-columns: 1fr; gap: 40px; }
  .about__story-img { height: 340px; }
  .about__values { grid-template-columns: repeat(2, 1fr); }

  /* Corporate */
  .corporate-page__features { grid-template-columns: 1fr 1fr; }
  .corporate-page__process { grid-template-columns: repeat(2, 1fr); }
  .corporate-page__process::before { display: none; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Property detail */
  .property-detail__inner { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; margin-top: 32px; }
  .property-gallery { grid-template-columns: 1fr; grid-template-rows: 340px; }
  .property-gallery__thumb { display: none; }
  .property-gallery__main { grid-row: 1; }
  .property-detail__amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Neighborhood */
  .neighborhood__grid { grid-template-columns: repeat(2, 1fr); }

  /* Owner portal */
  .owner-portal__inner { grid-template-columns: 1fr; }
  .owner-portal__visual { display: none; }
}

/* ================================================================
   RESPONSIVE — 768px (Tablets portrait / large phones)
   ================================================================ */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }

  /* Nav */
  .nav__links { display: none; }
  .nav__cta { gap: 12px; }
  .nav__hamburger { display: flex; }
  .btn-nav { padding: 10px 18px; font-size: 0.62rem; }

  /* Hero */
  .hero__right { height: 52vw; min-height: 280px; }
  .hero__left { padding: 44px 20px 52px; }
  .hero__headline { font-size: clamp(2.2rem, 7vw, 3.2rem); margin-bottom: 20px; }
  .hero__sub { font-size: 0.92rem; margin-bottom: 32px; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 20px; flex-wrap: wrap; margin-top: 32px; }
  .hero__stat-num { font-size: 1.6rem; }
  .hero__img-caption { display: none; }

  /* Why */
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__item { padding: 28px 18px; }
  .why__item:nth-child(2) { border-right: none; }
  .why__item:nth-child(3) { border-right: 1px solid var(--border-gold); }
  .why__item:nth-child(4) { border-right: none; }
  .why__item:nth-child(5) { border-right: 1px solid var(--border-gold); }
  .why__item:nth-child(1),
  .why__item:nth-child(2),
  .why__item:nth-child(3),
  .why__item:nth-child(4) { border-bottom: 1px solid var(--border-gold); }
  .why__item:nth-child(5),
  .why__item:nth-child(6) { border-bottom: none; }

  /* Page hero */
  .page-hero { padding: 120px 20px 60px; }
  .page-hero h1 { font-size: clamp(2rem, 6vw, 3rem); }

  /* Properties */
  .properties__grid { grid-template-columns: 1fr; }
  .properties__row2 { grid-template-columns: 1fr; }
  .property-card__img-wrap { height: 200px; }

  /* About */
  .about__values { grid-template-columns: 1fr; gap: 14px; }
  .about__story-img { height: 260px; }

  /* Corporate */
  .corporate-page__features { grid-template-columns: 1fr; }
  .corporate-page__process { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Neighborhood */
  .neighborhood__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .neighborhood__card { height: 220px; }

  /* FAQ */
  .faq__list { max-width: 100%; }
  .faq__question { font-size: 0.85rem; }

  /* CTA Banner */
  .cta-banner { padding: 72px 20px; }
  .cta-banner h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .cta-banner__actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-banner__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Contact form */
  .form { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; }

  /* Property detail */
  .property-gallery { grid-template-rows: 260px; }
  .property-detail__amenities-grid { grid-template-columns: 1fr 1fr; }
  .good-for-grid { grid-template-columns: 1fr; }
  .property-detail__meta { flex-wrap: wrap; gap: 14px; }
  .booking-sidebar { padding: 24px 18px; }

  /* Footer */
  .footer { padding: 52px 0 28px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { max-width: 100%; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bottom-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* Section header */
  .section-header { margin-bottom: 44px; }
  .section-header h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

/* ================================================================
   RESPONSIVE — 480px (Mobile phones)
   ================================================================ */
@media (max-width: 480px) {
  section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }
  .nav__mobile { padding: 16px 16px 24px; }

  /* Hero */
  .hero__right { height: 60vw; min-height: 240px; }
  .hero__left { padding: 36px 16px 44px; }
  .hero__headline { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero__sub { font-size: 0.88rem; }
  .hero__stats { gap: 16px; }
  .hero__stat-num { font-size: 1.4rem; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; border: none; }
  .why__item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-gold) !important;
    border-left: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
  }
  .why__grid { border: 1px solid var(--border-gold); border-radius: var(--radius-md); overflow: hidden; }
  .why__item:last-child { border-bottom: none !important; }
  .why__item { padding: 24px 20px; }

  /* Page hero */
  .page-hero { padding: 110px 16px 52px; }

  /* About */
  .about__story-img { height: 220px; }
  .about__value { padding: 24px 18px; }

  /* Corporate */
  .corporate-page__process { grid-template-columns: 1fr; }
  .corporate-page__features { gap: 14px; }

  /* Neighborhood */
  .neighborhood__grid { grid-template-columns: 1fr; }
  .neighborhood__card { height: 200px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Property detail */
  .property-gallery { grid-template-rows: 220px; }
  .property-detail__meta { flex-direction: column; gap: 10px; }
  .property-detail__amenities-grid { grid-template-columns: 1fr; }
  .booking-sidebar__price { font-size: 1.8rem; }

  /* Contact */
  .contact__detail-icon { width: 36px; height: 36px; }
  .form { padding: 24px 16px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-links { flex-direction: column; gap: 8px; }

  /* Buttons */
  .btn--lg { padding: 16px 28px; font-size: 0.7rem; }
  .btn-nav { display: none; }

  /* FAQ */
  .faq__question { font-size: 0.82rem; padding: 20px 0; }

  /* Section header */
  .section-header { margin-bottom: 36px; }
}
