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

    :root {
      --black: #0a0a0a;
      --white: #fafaf8;
      --gold: #c9a84c;
      --gold-light: #e2c97e;
      --gold-pale: #f5edd8;
      --gray: #888;
      --mid: #1c1c1c;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Josefin Sans', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 3rem;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.15em;
      color: var(--white);
    }

    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 200;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s, color 0.3s;
    }

    .nav-links a:hover { opacity: 1; color: var(--gold); }

    .nav-cta {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 300;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 0.6rem 1.5rem;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }

    .nav-cta:hover { background: var(--gold); color: var(--black); }

    /* ── HERO ── */
    .hero {
      height: 100vh;
      background: var(--black);
      position: relative;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.75) 100%),
        url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1800&q=80') center/cover no-repeat;
      transform: scale(1.05);
      animation: slowzoom 20s ease-out forwards;
    }

    @keyframes slowzoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.0); }
    }

    /* Decorative gold line */
    .hero-line {
      position: absolute;
      top: 0; left: 50%;
      width: 1px;
      height: 100vh;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
      transform: translateX(-50%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 3rem 5rem;
      max-width: 700px;
      animation: fadeup 1.2s ease 0.3s both;
    }

    @keyframes fadeup {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 2.5rem;
      height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 0.75rem;
      font-weight: 200;
      letter-spacing: 0.15em;
      color: rgba(250,250,248,0.7);
      line-height: 1.9;
      max-width: 420px;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 1rem 2.5rem;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s;
    }

    .btn-primary:hover { background: var(--gold-light); }

    .btn-ghost {
      color: var(--white);
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 200;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      text-decoration: none;
      opacity: 0.7;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      transition: opacity 0.3s;
    }

    .btn-ghost:hover { opacity: 1; }

    .btn-ghost::after {
      content: '→';
      font-size: 0.9rem;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      right: 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: fadeup 1.2s ease 1s both;
    }

    .scroll-hint span {
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.4);
      writing-mode: vertical-rl;
    }

    .scroll-dot {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollpulse 2s ease-in-out infinite;
    }

    @keyframes scrollpulse {
      0%, 100% { opacity: 0.4; }
      50%       { opacity: 1; }
    }

    /* ── MARKETS ── */
    .markets {
      background: var(--black);
      padding: 6rem 3rem;
      border-top: 1px solid rgba(201,168,76,0.15);
    }

    .section-label {
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 2rem;
      height: 1px;
      background: var(--gold);
    }

    .markets-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.5rem;
    }

    .markets h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
    }

    .markets h2 em { font-style: italic; color: var(--gold-light); }

    .markets-sub {
      font-size: 0.7rem;
      font-weight: 200;
      letter-spacing: 0.1em;
      color: var(--gray);
      max-width: 260px;
      text-align: right;
      line-height: 1.8;
    }

    .markets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1px;
      border: 1px solid rgba(201,168,76,0.15);
    }

    .market-item {
      padding: 2rem 1.75rem;
      border-right: 1px solid rgba(201,168,76,0.1);
      transition: background 0.4s;
      cursor: default;
    }

    .market-item:last-child { border-right: none; }
    .market-item:hover { background: rgba(201,168,76,0.06); }

    .market-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      color: rgba(201,168,76,0.2);
      line-height: 1;
      margin-bottom: 0.75rem;
    }

    .market-name {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.4rem;
    }

    .market-desc {
      font-size: 0.6rem;
      font-weight: 200;
      letter-spacing: 0.05em;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ── ABOUT ── */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
    }

    .about-image {
      position: relative;
      overflow: hidden;
      background: var(--mid);
      min-height: 500px;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(20%);
      transition: filter 0.6s;
    }

    .about-image:hover img { filter: grayscale(0%); }

    .about-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--white));
    }

    .about-gold-bar {
      position: absolute;
      top: 3rem;
      left: 0;
      width: 4px;
      height: 80px;
      background: var(--gold);
    }

    .about-content {
      background: var(--white);
      padding: 6rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.25;
      color: var(--black);
      margin-bottom: 1.75rem;
    }

    .about-content h2 em { font-style: italic; color: var(--gold); }

    .about-content p {
      font-size: 0.75rem;
      font-weight: 200;
      letter-spacing: 0.06em;
      line-height: 2;
      color: #555;
      margin-bottom: 1.25rem;
      max-width: 460px;
    }

    .about-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(201,168,76,0.25);
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 0.3rem;
    }

    /* ── SERVICES ── */
    .services {
      background: var(--gold-pale);
      padding: 6rem 3rem;
    }

    .services-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .services-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
    }

    .services h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--black);
    }

    .services h2 em { font-style: italic; color: var(--gold); }

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

    .service-card {
      background: var(--white);
      padding: 2.75rem 2.25rem;
      border-bottom: 2px solid transparent;
      transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    }

    .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }

    .service-icon {
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 0.75rem;
    }

    .service-desc {
      font-size: 0.7rem;
      font-weight: 200;
      letter-spacing: 0.05em;
      color: #666;
      line-height: 1.9;
    }

    /* ── TESTIMONIAL ── */
    .testimonial {
      background: var(--black);
      padding: 7rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .testimonial::before {
      content: '"';
      position: absolute;
      top: -2rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 20rem;
      color: rgba(201,168,76,0.04);
      line-height: 1;
      pointer-events: none;
    }

    .testimonial blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      max-width: 750px;
      margin: 0 auto 2rem;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .dot {
      width: 5px;
      height: 5px;
      background: rgba(201,168,76,0.3);
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }

    .dot.active { background: var(--gold); }

    /* ── CONTACT ── */
    .contact {
      padding: 7rem 3rem;
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .contact-left h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.25;
      margin-bottom: 1.25rem;
    }

    .contact-left h2 em { font-style: italic; color: var(--gold); }

    .contact-left p {
      font-size: 0.72rem;
      font-weight: 200;
      letter-spacing: 0.06em;
      color: #666;
      line-height: 2;
      margin-bottom: 2rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .contact-info a {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      color: var(--black);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      transition: color 0.3s;
    }

    .contact-info a:hover { color: var(--gold); }

    .contact-info a::before {
      content: '—';
      color: var(--gold);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      border: none;
      border-bottom: 1px solid rgba(0,0,0,0.15);
      padding: 0.7rem 0;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--black);
      background: transparent;
      outline: none;
      transition: border-color 0.3s;
      width: 100%;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
    }

    .form-group textarea { resize: none; height: 80px; }

    .form-submit {
      background: var(--black);
      color: var(--white);
      border: none;
      padding: 1rem 2.5rem;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 300;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      cursor: pointer;
      align-self: flex-start;
      margin-top: 0.5rem;
      transition: background 0.3s;
    }

    .form-submit:hover { background: var(--gold); color: var(--black); }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.15);
      padding: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 300;
      letter-spacing: 0.15em;
      color: var(--white);
    }

    .footer-logo span { color: var(--gold); }

    .footer-copy {
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: var(--gray);
    }

    .footer-social {
      display: flex;
      gap: 1.5rem;
    }

    .footer-social a {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-social a:hover { color: var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.25rem 1.5rem; }
      .nav-links { display: none; }
      .hero-content { padding: 0 1.5rem 4rem; }
      .about { grid-template-columns: 1fr; }
      .about-image { min-height: 350px; }
      .about-content { padding: 3.5rem 2rem; }
      .about-image-overlay { background: linear-gradient(to bottom, transparent 60%, var(--white)); }
      .services-grid { grid-template-columns: 1fr; }
      .services-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .contact { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
      .markets-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .markets-sub { text-align: left; }
      footer { flex-direction: column; gap: 1.5rem; text-align: center; }
      .markets { padding: 4rem 1.5rem; }
      .services { padding: 4rem 1.5rem; }
    }

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: var(--black);
  padding: 9rem 3rem 4rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-top: 0.75rem;
}

.page-header h1 em { font-style: italic; color: var(--gold-light); }

.page-header p {
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--gray);
  max-width: 480px;
  margin: 1.25rem auto 0;
  line-height: 1.9;
}

.page-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.page-eyebrow::before, .page-eyebrow::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

/* ── LISTINGS PAGE ── */
.listings-wrap {
  padding: 5rem 3rem 7rem;
  max-width: 1200px;
  margin: 0 auto;
}

.listings-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.listing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.listing-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--mid);
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.listing-card:hover .listing-img img { transform: scale(1.08); }

.listing-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
}

.listing-body { padding: 1.5rem; }

.listing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.listing-addr {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 1rem;
}

.listing-stats {
  display: flex;
  gap: 1.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 1rem;
}

.listing-stats strong { color: var(--gold); font-weight: 600; }

.listings-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.listings-cta p {
  font-size: 0.72rem;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* ── COMMUNITIES PAGE ── */
.communities-wrap {
  padding: 5rem 3rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
}

.community-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.community-block:last-child { border-bottom: none; }

.community-block.reverse { direction: rtl; }
.community-block.reverse > * { direction: ltr; }

.community-img {
  height: 320px;
  overflow: hidden;
  background: var(--mid);
}

.community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.5s, transform 0.5s;
}

.community-img:hover img { filter: grayscale(0%); transform: scale(1.04); }

.community-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.community-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.community-text h3 em { font-style: italic; color: var(--gold); }

.community-text p {
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.95;
  color: #666;
  margin-bottom: 1.25rem;
}

.community-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.community-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 0.9rem;
}

/* ── ABOUT PAGE EXTRAS ── */
.about-page-hero {
  padding: 6rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-page-img {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.about-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.values-strip {
  background: var(--gold-pale);
  padding: 5rem 3rem;
}

.values-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.value-item .stat-num { font-size: 2.8rem; }

.value-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin: 0.5rem 0 0.75rem;
}

.value-item p {
  font-size: 0.68rem;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ── CONTACT PAGE EXTRAS ── */
.contact-page-wrap {
  padding: 5rem 3rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-page-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-method-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.contact-method a, .contact-method span {
  font-size: 0.78rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.contact-method a:hover { color: var(--gold); }

.map-placeholder {
  margin-top: 2rem;
  height: 180px;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── ACTIVE NAV STATE ── */
.nav-links a.active { color: var(--gold); opacity: 1; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .page-header { padding: 7rem 1.5rem 3rem; }
  .listings-grid { grid-template-columns: 1fr; }
  .listings-wrap { padding: 3rem 1.5rem 5rem; }
  .community-block { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .community-block.reverse { direction: ltr; }
  .communities-wrap { padding: 3rem 1.5rem 5rem; }
  .about-page-hero { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2rem; }
  .about-page-img { height: 320px; }
  .values-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-page-wrap { grid-template-columns: 1fr; padding: 3rem 1.5rem 5rem; gap: 3rem; }
}
