/* ─── RESET & BASE ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --deep: #0D0D0D;
  --charcoal: #1A1A1A;
  --ink: #111111;
  --off-white: #F7F4EE;
  --warm-white: #FDFAF5;
  --muted: #6B6458;
  --border: rgba(201,168,76,0.2);
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Outfit', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--deep);
  color: var(--off-white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── PAGE SYSTEM ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.top-bar a { color: var(--gold-light); transition: color .2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar-contacts { display: flex; gap: 24px; }
.top-bar-social { display: flex; gap: 14px; }
.top-bar-social a {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: border-color .2s, background .2s;
}
.top-bar-social a:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* ─── NAVBAR ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 600;
  color: var(--deep);
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}
.nav-logo-tag {
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links li a, .nav-links li button {
  padding: 8px 14px;
  font-size: 12.5px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.7);
  transition: color .2s;
  font-weight: 400;
}
.nav-links li a:hover, .nav-links li button:hover,
.nav-links li a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--deep) !important;
  padding: 9px 22px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ─── HEADER PROJECT LINK BANNER ─── */
.header-project-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  text-align: center;
  padding: 10px 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--deep);
}
.header-project-banner a {
  color: var(--deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s;
}
.header-project-banner a:hover { opacity: 0.75; }
.header-project-banner .banner-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-right: 4px;
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 60%, rgba(13,13,13,0.85) 100%),
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-skyline {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 300px; opacity: 0.06;
  background:
    linear-gradient(to top, rgba(201,168,76,0.5) 0%, transparent 100%);
  clip-path: polygon(0% 100%, 0% 60%, 2% 60%, 2% 30%, 3.5% 30%, 3.5% 45%, 5% 45%, 5% 20%, 6% 20%, 6% 45%, 7.5% 45%, 7.5% 55%, 9% 55%, 9% 35%, 10% 35%, 10% 50%, 12% 50%, 12% 25%, 13% 25%, 13% 50%, 15% 50%, 15% 40%, 17% 40%, 17% 10%, 18% 10%, 18% 40%, 20% 40%, 20% 55%, 22% 55%, 22% 30%, 24% 30%, 24% 55%, 26% 55%, 26% 45%, 28% 45%, 28% 15%, 29% 15%, 29% 45%, 31% 45%, 31% 60%, 33% 60%, 33% 35%, 35% 35%, 35% 60%, 37% 60%, 37% 48%, 40% 48%, 40% 22%, 41% 22%, 41% 48%, 43% 48%, 43% 55%, 46% 55%, 46% 38%, 48% 38%, 48% 55%, 51% 55%, 51% 42%, 54% 42%, 54% 58%, 57% 58%, 57% 32%, 59% 32%, 59% 58%, 62% 58%, 62% 50%, 65% 50%, 65% 28%, 66% 28%, 66% 50%, 68% 50%, 68% 60%, 71% 60%, 71% 40%, 73% 40%, 73% 60%, 76% 60%, 76% 44%, 79% 44%, 79% 55%, 82% 55%, 82% 30%, 83% 30%, 83% 55%, 86% 55%, 86% 62%, 88% 62%, 88% 45%, 90% 45%, 90% 62%, 92% 62%, 92% 50%, 94% 50%, 94% 65%, 96% 65%, 96% 48%, 97% 48%, 97% 65%, 98% 65%, 98% 70%, 100% 70%, 100% 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic; color: var(--gold);
}
.hero-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; color: rgba(247,244,238,0.5);
  margin-bottom: 32px; letter-spacing: 0.02em;
}
.hero-desc {
  max-width: 560px;
  font-size: 15px; line-height: 1.8;
  color: rgba(247,244,238,0.65);
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--gold);
  color: var(--deep);
  padding: 15px 36px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--gold-light);
  padding: 15px 36px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color .25s, background .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.hero-stats {
  position: absolute; right: 40px; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; gap: 24px;
  animation: fadeLeft 1.2s ease 0.3s both;
}
.hero-stat {
  text-align: right;
  padding-right: 20px;
  border-right: 2px solid var(--gold);
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 42px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 4px;
}

/* ─── SEARCH BAR ─── */
.search-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}
.search-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 12px; align-items: flex-end;
}
.search-group { flex: 1; }
.search-group label {
  display: block;
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.search-group select, .search-group input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--off-white);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.search-group select:focus, .search-group input:focus {
  border-color: var(--gold);
}
.search-group select option { background: var(--charcoal); }
.search-btn {
  background: var(--gold);
  color: var(--deep);
  padding: 13px 32px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--gold-light); }

/* ─── SECTION LAYOUTS ─── */
.section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 100px 40px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-size: 15px; line-height: 1.8;
  color: rgba(247,244,238,0.6);
  max-width: 540px;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0 40px;
}

/* ─── PROPERTY TYPES ─── */
.types-bg { background: var(--charcoal); }
.types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 60px;
}
.type-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 40px 28px;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.type-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.type-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: border-color .3s, background .3s;
}
.type-card:hover .type-icon { border-color: var(--gold); background: rgba(201,168,76,0.12); }
.type-name {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 500;
  color: var(--off-white);
}
.type-count {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em;
}

/* ─── FEATURED PROPERTIES ─── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 60px;
}
@media (max-width: 1200px) {
  .props-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
.prop-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--gold);
}
.prop-img {
  height: 220px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}
.prop-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 60%);
}
.prop-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--deep);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 1px;
}
.prop-img-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; opacity: 0.12;
}
.prop-body { padding: 28px; }
.prop-location {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.prop-name {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 500;
  color: var(--off-white);
  margin-bottom: 12px; line-height: 1.3;
}
.prop-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.7; margin-bottom: 20px;
}
.prop-features {
  display: flex; gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 18px; margin-bottom: 20px;
}
.prop-feat {
  font-size: 12px; color: rgba(247,244,238,0.5);
  display: flex; align-items: center; gap: 6px;
}
.prop-price {
  font-family: var(--ff-display);
  font-size: 20px; color: var(--gold);
}
.prop-price span { font-size: 12px; color: var(--muted); }

/* ─── WHY CHOOSE ─── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 40px;
  max-width: 1200px; margin: 0 auto;
}
.why-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
.why-feat {
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color .3s, background .3s;
}
.why-feat:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.why-feat-icon { font-size: 28px; margin-bottom: 14px; }
.why-feat-title {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 500;
  color: var(--off-white); margin-bottom: 8px;
}
.why-feat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.why-visual {
  position: relative;
}
.why-img-main {
  height: 500px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #533483 100%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; opacity: 0.3;
  position: relative; overflow: hidden;
}
.why-img-accent {
  position: absolute; bottom: -24px; left: -24px;
  width: 180px; height: 180px;
  background: var(--gold);
  opacity: 0.08;
}
.why-stat-box {
  position: absolute; bottom: 24px; right: -24px;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  padding: 24px 32px;
  text-align: center;
}
.why-stat-num {
  font-family: var(--ff-display);
  font-size: 48px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.why-stat-label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 6px;
}

/* ─── PARTNERS ─── */
.partners-bg { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 40px;
}
.partners-label {
  text-align: center;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 36px;
}
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.partner-badge {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 500;
  color: rgba(247,244,238,0.25);
  letter-spacing: 0.08em;
  transition: color .3s;
  cursor: default;
}
.partner-badge:hover { color: var(--gold-light); }

/* ─── CTA BAND ─── */
.cta-band {
  position: relative; overflow: hidden;
  padding: 100px 40px;
  text-align: center;
  background: var(--gold);
}
.cta-band::before {
  content: ''; position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(139,105,20,0.6) 0%, transparent 70%);
}
.cta-band * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; color: var(--deep);
  margin-bottom: 16px; line-height: 1.1;
}
.cta-band p {
  font-size: 16px; color: rgba(13,13,13,0.7);
  margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.btn-dark {
  background: var(--deep); color: var(--gold);
  padding: 16px 40px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark:hover { background: var(--charcoal); }

/* ─── FOOTER ─── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 24px; font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.footer-brand-tag {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.8; margin-bottom: 28px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact { font-size: 13px; color: rgba(247,244,238,0.5); display: flex; align-items: center; gap: 10px; }
.footer-contact span { color: var(--gold); font-size: 14px; }
.footer-col-title {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a {
  font-size: 13px; color: var(--muted);
  transition: color .2s;
}
.footer-links li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  font-size: 12px; color: var(--muted);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--muted); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding: 100px 40px 60px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-hero-visual {
  height: 520px;
  background: linear-gradient(135deg, #0f3460 0%, #533483 50%, #1a1a2e 100%);
  border: 1px solid var(--border);
  position: relative; display: flex;
  align-items: center; justify-content: center;
  font-size: 100px; overflow: hidden;
}
.about-hero-visual::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(201,168,76,0.15), transparent);
}
.about-accent-line {
  position: absolute; top: -1px; left: 40px;
  width: 80px; height: 3px; background: var(--gold);
}
.about-values {
  background: var(--charcoal);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
}
.value-card {
  padding: 48px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: border-color .3s, background .3s;
}
.value-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.value-num {
  font-family: var(--ff-display);
  font-size: 60px; font-weight: 300;
  color: rgba(201,168,76,0.15); line-height: 1;
  margin-bottom: 20px;
}
.value-title {
  font-family: var(--ff-display);
  font-size: 26px; font-weight: 500;
  color: var(--off-white); margin-bottom: 14px;
}
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.team-section { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 60px;
}
.team-card {
  background: var(--charcoal); border: 1px solid var(--border);
  overflow: hidden; transition: border-color .3s, transform .3s;
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-img {
  height: 240px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.team-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: linear-gradient(to top, rgba(201,168,76,0.15), transparent);
}
.team-body { padding: 24px; }
.team-name {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 500;
  color: var(--off-white); margin-bottom: 6px;
}
.team-role { font-size: 12px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── PRIVACY PAGE ─── */
.privacy-hero {
  padding: 80px 40px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
}
.privacy-hero-inner { max-width: 860px; margin: 0 auto; }
.privacy-body {
  max-width: 860px; margin: 0 auto;
  padding: 80px 40px;
}
.privacy-body h2 {
  font-family: var(--ff-display);
  font-size: 28px; font-weight: 500;
  color: var(--off-white);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p {
  font-size: 14px; line-height: 1.9; color: var(--muted);
  margin-bottom: 16px;
}
.privacy-body ul {
  list-style: none; margin: 16px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.privacy-body ul li {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; padding-left: 20px;
  position: relative;
}
.privacy-body ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-size: 12px;
}
.privacy-date {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 12px; color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 40px; border-radius: 1px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .top-bar { display: none; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 20px; }
  .hero-stats { display: none; }
  .section { padding: 60px 20px; }
  .why-grid, .about-hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .props-grid, .values-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .search-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .header-project-banner { padding: 10px 20px; font-size: 12px; }
}
