/* Sallie Lin Realty — Foundation-Inspired Dark Theme */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Sans+SC:wght@300;400;500&display=swap');

:root {
  --black:        #000000;
  --dark:         #0a0a0a;
  --dark-mid:     #111111;
  --dark-card:    #141414;
  --dark-border:  rgba(255,255,255,0.08);
  --white:        #ffffff;
  --white-soft:   rgba(255,255,255,0.7);
  --white-muted:  rgba(255,255,255,0.4);
  --white-dim:    rgba(255,255,255,0.15);
  --gold:         #c9a96e;
  --gold-light:   #dfc088;
  --gold-dim:     rgba(201,169,110,0.15);
  --pad-x:        clamp(24px, 5vw, 80px);
  --pad-section:  clamp(100px, 12vw, 200px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

.container {
  width: 100%;
  padding: 0 var(--pad-x);
  max-width: 1440px;
  margin: 0 auto;
}

/* ---- TYPOGRAPHY ---- */
.serif-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.heading-xl {
  font-weight: 300;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
}

.heading-lg {
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
}

.heading-md {
  font-weight: 300;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
}

.text-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white-soft);
  max-width: 520px;
}

.text-light-inline { color: var(--white-muted); }

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad-x);
  transition: background 0.4s, padding 0.3s;
}
.nav--solid {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px var(--pad-x);
}
.nav__logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--white); }
.nav__link--active { color: var(--gold) !important; }
.nav__cta-btn {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 10px 28px;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  transition: opacity 0.3s !important;
}
.nav__cta-btn:hover { opacity: 0.85; }
.nav__lang a {
  color: var(--white-dim) !important;
  font-size: 10px !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  z-index: 101;
}
.nav__hamburger span {
  height: 1.5px;
  background: var(--white);
  width: 100%;
  transition: 0.3s;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--white-soft);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero-wrapper {
  height: 300vh;
  position: relative;
}
.hero {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 var(--pad-x);
}
.hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero__title {
  font-weight: 200;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__cta:hover { gap: 20px; background: var(--gold); color: var(--white); }
.hero__cta-secondary {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 16px 24px;
  border: 1px solid var(--white-dim);
  transition: all 0.3s;
}
.hero__cta-secondary:hover { border-color: var(--white); color: var(--white); }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--white-muted), transparent);
}

/* ---- STATS ---- */
.stats {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid var(--dark-border);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__num span { color: var(--gold); }
.stats__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* ---- STATEMENT ---- */
.statement {
  padding: var(--pad-section) 0;
  background: var(--black);
}
.statement__text {
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 200;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 900px;
}

/* ---- ABOUT ---- */
.about {
  padding: var(--pad-section) 0;
  background: var(--dark);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.about__text .heading-lg { margin-bottom: 32px; }
.about__credentials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential {
  font-size: 13px;
  color: var(--white-muted);
  padding-left: 20px;
  position: relative;
}
.credential::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* ---- SERVICES ---- */
.services {
  padding: var(--pad-section) 0;
  background: var(--black);
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 72px;
}
.services__header .text-body { max-width: 400px; text-align: right; }

.services__list {
  border-top: 1px solid var(--dark-border);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--dark-border);
  cursor: pointer;
  transition: background 0.3s;
  gap: 24px;
}
.service-row:hover { background: rgba(255,255,255,0.02); }
.service-row__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}
.service-row__title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.service-row__arrow {
  font-size: 20px;
  color: var(--white-muted);
  transition: transform 0.4s, color 0.3s;
}
.service-row:hover .service-row__arrow { color: var(--gold); transform: rotate(45deg); }
.service-row.active .service-row__arrow { transform: rotate(90deg); color: var(--gold); }
.service-row__desc {
  display: none;
  grid-column: 2 / -1;
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-soft);
  max-width: 600px;
  padding: 8px 0 16px;
}
.service-row.active .service-row__desc { display: block; }

/* ---- KNOWLEDGE ---- */
.knowledge {
  padding: var(--pad-section) 0;
  background: var(--dark);
  position: relative;
}
.knowledge .label { color: var(--gold); }
.knowledge > .container > .text-body {
  color: var(--white-muted);
  margin-bottom: 64px;
}
.knowledge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.knowledge__card {
  position: relative;
  min-height: 520px;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-card);
  transition: background 0.4s;
}
.knowledge__card:hover { background: rgba(255,255,255,0.04); }
.knowledge__card-inner {
  position: relative;
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.knowledge__card-bg {
  position: absolute;
  inset: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
  z-index: 0;
}
.knowledge__card-bg--buyer {
  background: linear-gradient(160deg, rgba(0,0,0,0.92) 0%, rgba(20,30,40,0.85) 50%, rgba(0,0,0,0.95) 100%),
    url('https://cdn.prod.website-files.com/66f603e5069e2b5cc1f8ec86/66f603e5069e2b5cc1f8ecfa_battalion-rental01.jpg') center/cover no-repeat;
}
.knowledge__card-bg--seller {
  background: linear-gradient(160deg, rgba(0,0,0,0.92) 0%, rgba(30,25,15,0.88) 50%, rgba(0,0,0,0.95) 100%),
    url('https://cdn.prod.website-files.com/66f603e5069e2b5cc1f8ec86/66f603e5069e2b5cc1f8ecfc_rental-apartment.jpg') center/cover no-repeat;
}
.knowledge__card:hover .knowledge__card-bg {
  transform: scale(1.04);
  opacity: 0.85;
}
.knowledge__card-content {
  position: relative;
  z-index: 1;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.knowledge__card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.knowledge__card-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.knowledge__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.knowledge__card-sub {
  font-size: 14px;
  line-height: 1.75;
  color: var(--white-muted);
  max-width: 340px;
  margin-bottom: 40px;
}
.knowledge__card-articles { }
.knowledge__article-preview {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--dark-border);
  font-size: 13.5px;
  color: var(--white-soft);
  line-height: 1.4;
  transition: color 0.3s, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.knowledge__article-preview:last-of-type {
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 40px;
}
.knowledge__card:hover .knowledge__article-preview {
  color: rgba(255,255,255,0.9);
  padding-left: 6px;
}
.knowledge__article-num {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.knowledge__card-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}
.knowledge__card:hover .knowledge__card-cta {
  gap: 18px;
  color: var(--white);
}

/* ---- PROPERTIES ---- */
.properties {
  padding: var(--pad-section) 0 80px;
  background: var(--black);
}
.properties__scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 40px;
}
.properties__scroll::-webkit-scrollbar { display: none; }
.property-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--dark-card);
  overflow: hidden;
  transition: background 0.3s;
}
.property-card:hover { background: rgba(255,255,255,0.04); }
.property-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.8);
}
.property-card:hover .property-card__image img { transform: scale(1.04); }
.property-card__status {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
}
.property-card__status--sold {
  background: transparent;
  border: 1px solid var(--white-dim);
  color: var(--white-soft);
}
.property-card__info { padding: 24px; }
.property-card__address {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}
.property-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.property-card__specs {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.5px;
}
.property-card__price {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
}

/* ---- NEIGHBORHOODS ---- */
.neighborhoods {
  padding: var(--pad-section) 0;
  background: var(--dark);
}
.neighborhoods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.hood-card {
  overflow: hidden;
}
.hood-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hood-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
}
.hood-card:hover .hood-card__image img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1);
}
.hood-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
}
.hood-card__name {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.hood-card__price {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: var(--pad-section) 0;
  background: var(--black);
  position: relative;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.testimonial {
  background: var(--dark-card);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.testimonial:hover { background: rgba(255,255,255,0.03); }
.testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.testimonial__quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-soft);
  margin-bottom: 32px;
  flex-grow: 1;
}
.testimonial__author {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.testimonial__role {
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.5px;
}

/* ---- CONTACT ---- */
.contact {
  padding: var(--pad-section) 0;
  background: var(--dark);
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}
.contact__info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-border);
}
.contact__info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 8px;
}
.contact__info-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.contact__info-value a { transition: color 0.3s; }
.contact__info-value a:hover { color: var(--gold); }

.contact__form { display: flex; flex-direction: column; gap: 0; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-border);
}
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  font-size: 16px;
  font-family: inherit;
  color: var(--white);
  padding: 4px 0;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-dim);
}
.form-group select {
  -webkit-appearance: none;
  cursor: pointer;
}
.form-group select option { background: var(--dark); color: var(--white); }
.btn-submit {
  margin-top: 32px;
  padding: 18px 48px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.4s;
}
.btn-submit:hover { background: var(--gold); color: var(--white); }

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  padding: 80px 0 40px;
  border-top: 1px solid var(--dark-border);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 64px;
}
.footer__brand-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__brand-tagline {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--white-muted);
  max-width: 320px;
}
.footer__cols {
  display: flex;
  gap: 64px;
}
.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 13px;
  color: var(--white-soft);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
}
.footer__copyright {
  font-size: 12px;
  color: var(--white-dim);
}
.footer__legal a {
  font-size: 12px;
  color: var(--white-dim);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--white-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--dark-border); }
  .neighborhoods__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; gap: 48px; }
  .property-card { flex: 0 0 320px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__title { font-size: clamp(44px, 13vw, 80px); }
  .hero-wrapper { height: 200vh; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .statement__text { font-size: clamp(24px, 6vw, 38px); }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { max-height: 500px; aspect-ratio: 4/3; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row__arrow { display: none; }
  .property-card { flex: 0 0 290px; }
  .neighborhoods__grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .contact__layout { grid-template-columns: 1fr; }
  .footer__cols { flex-direction: column; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 16px; }
  .services__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services__header .text-body { text-align: left; max-width: 100%; }
  .testimonial { padding: 32px 28px; }
}

@media (max-width: 480px) {
  .neighborhoods__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- KNOWLEDGE RESPONSIVE ---- */
@media (max-width: 900px) {
  .knowledge__grid { grid-template-columns: 1fr; }
  .knowledge__card { min-height: 440px; }
  .knowledge__card-inner { min-height: 440px; }
  .knowledge__card-content { padding: 40px 32px; }
}

/* ---- GUIDE PAGES ---- */
.guide-page {
  background: var(--black);
  min-height: 100vh;
}
.guide-hero {
  padding: 160px var(--pad-x) 100px;
  position: relative;
  overflow: hidden;
}
.guide-hero--buyer {
  background: linear-gradient(160deg, #000 0%, #0a1520 45%, #0f2030 70%, #142838 100%);
}
.guide-hero--seller {
  background: linear-gradient(160deg, #000 0%, #0f0a02 45%, #1a1005 70%, #25180a 100%);
}
.guide-hero__back {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
  transition: opacity 0.3s, gap 0.4s;
}
.guide-hero__back:hover { opacity: 1; gap: 16px; }
.guide-hero__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.guide-hero__tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.guide-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 32px;
}
.guide-hero__sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white-muted);
  max-width: 520px;
}
.guide-articles {
  padding: 80px var(--pad-x) var(--pad-section);
  max-width: 1440px;
  margin: 0 auto;
}

/* ---- BLOG CARDS ---- */
.blog-card {
  background: var(--dark-card);
  margin-bottom: 2px;
  overflow: hidden;
  transition: background 0.3s;
}
.blog-card:hover { background: rgba(255,255,255,0.03); }
.blog-card__header {
  padding: 40px 52px;
  cursor: pointer;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.blog-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
}
.blog-card__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}
.blog-card__tag--news { background: rgba(255,255,255,0.06); color: var(--white-muted); }
.blog-card__tag--strategy { background: var(--gold-dim); color: var(--gold); }
.blog-card__tag--opinion { background: rgba(255,255,255,0.04); color: var(--white-soft); }
.blog-card__tag--financial { background: rgba(255,255,255,0.06); color: var(--white-muted); }
.blog-card__tag--investment { background: var(--gold-dim); color: var(--gold-light); }
.blog-card__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-card__blurb {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--white-muted);
  max-width: 720px;
}
.blog-card__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.blog-card__arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 14px;
}
.blog-card.open .blog-card__arrow { transform: rotate(180deg); }
.blog-card.open .blog-card__toggle span:first-child { display: none; }
.blog-card.open .blog-card__toggle::before {
  content: 'Close Article';
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
}
.blog-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
  padding: 0 52px;
}
.blog-card.open .blog-card__body {
  max-height: 4000px;
  padding: 0 52px 52px;
}
.blog-card__body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--white-soft);
  margin-bottom: 20px;
  max-width: 760px;
}
.blog-card__body p strong {
  color: var(--white);
  font-weight: 500;
}
.blog-card__sallie {
  background: rgba(201,169,110,0.06);
  border-left: 3px solid var(--gold);
  padding: 36px 40px;
  margin: 32px 0;
}
.blog-card__sallie-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.blog-card__sallie p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--white-soft);
  font-style: italic;
  max-width: 100%;
  margin-bottom: 0;
}
.blog-card__pulse {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--white-dim);
  padding: 28px 36px;
  margin: 24px 0;
}
.blog-card__pulse-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 12px;
}
.blog-card__pulse p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--white-muted);
  max-width: 100%;
  margin-bottom: 0;
}
.blog-card__takeaways {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--dark-border);
}
.blog-card__takeaways-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.blog-card__takeaways ul { list-style: none; padding: 0; }
.blog-card__takeaways li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-soft);
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.blog-card__takeaways li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
.blog-card__takeaways li:last-child { border-bottom: none; }

/* ---- GUIDE CTA STRIP ---- */
.guide-cta-strip {
  background: var(--gold);
  padding: 72px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guide-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.guide-cta-strip__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.guide-cta-strip__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  position: relative;
}
.guide-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.guide-cta-strip__btn:hover { gap: 20px; background: #111; }
.guide-cta-strip--dark {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}
.guide-cta-strip--dark .guide-cta-strip__title { color: var(--white); }
.guide-cta-strip--dark .guide-cta-strip__sub { color: var(--white-muted); }
.guide-cta-strip__btn--gold {
  background: var(--gold) !important;
  color: var(--white) !important;
}
.guide-cta-strip__btn--gold:hover { background: var(--gold-light) !important; }

@media (max-width: 900px) {
  .guide-articles__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .guide-hero { padding: 120px 24px 72px; }
  .blog-card__header { padding: 28px 24px; }
  .blog-card__body { padding: 0 24px; }
  .blog-card.open .blog-card__body { padding: 0 24px 36px; }
  .blog-card__sallie { padding: 28px 24px; }
  .blog-card__pulse { padding: 24px 20px; }
}
