/* ================================================================
   COACHELLA VALLEY COUNTRY CLUB PAGES — DESIGN SYSTEM
   Arbid, Patel & Associates
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Brand palette — warm desert editorial */
  --ink: #1A1815;
  --ink-soft: #2C2722;
  --bone: #F7F3EC;
  --bone-warm: #F1EBE0;
  --sand: #E8DFD0;
  --sand-deep: #D6C9B0;
  --sage: #8A9081;
  --sage-deep: #6B7165;
  --brass: #A88B5C;
  --brass-deep: #8C6F42;
  --stone: #6B6259;
  --line: rgba(26, 24, 21, 0.12);
  --line-soft: rgba(26, 24, 21, 0.06);

  /* Typography */
  --display: 'Fraunces', Georgia, serif;
  --body: 'EB Garamond', Georgia, serif;
  --ui: 'Inter', -apple-system, sans-serif;

  /* Rhythm */
  --container: 1280px;
  --container-narrow: 760px;
  --container-wide: 1480px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── EYEBROW LABELS (small caps, wide tracking) ──────────────── */
.eyebrow {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow--stone { color: var(--stone); }
.eyebrow--bone { color: var(--bone); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(26,24,21,0.45), transparent);
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: var(--bone);
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--bone);
}

.nav.scrolled .nav__brand { color: var(--ink); }

.nav__brand em {
  font-style: italic;
  font-weight: 300;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--bone);
}

.nav.scrolled .nav__links { color: var(--ink); }

.nav__links a {
  position: relative;
  padding: 4px 0;
}

.nav__links a:hover::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Placeholder gradient until photo is supplied */
  background: linear-gradient(135deg, #5C544A 0%, #2C2722 60%, #1A1815 100%);
}

.hero__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(247, 243, 236, 0.4);
  text-transform: uppercase;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 21, 0.25) 0%,
    rgba(26, 24, 21, 0.15) 40%,
    rgba(26, 24, 21, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--bone);
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.85;
}

.hero__location::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--brass);
}

.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}

.hero__lede {
  font-family: var(--body);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.5;
  max-width: 620px;
  font-style: italic;
  opacity: 0.92;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 3;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  writing-mode: vertical-rl;
  opacity: 0.7;
}

/* ── FACT BAR (just below hero) ──────────────────────────────── */
.factbar {
  background: var(--ink);
  color: var(--bone);
  padding: 56px 48px;
}

.factbar__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.fact {
  border-left: 1px solid rgba(247, 243, 236, 0.18);
  padding-left: 24px;
}

.fact__label {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}

.fact__value {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.fact__value small {
  font-size: 14px;
  color: var(--sand);
  display: block;
  margin-top: 4px;
  font-style: italic;
}

/* ── ANSWER CAPSULE (LLM extraction target) ─────────────────── */
.answer-capsule {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: 40px 48px;
}

.answer-capsule__inner {
  max-width: 960px;
  margin: 0 auto;
}

.answer-capsule__meta {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}

.answer-capsule p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ── SECTION FRAMEWORK ───────────────────────────────────────── */
.section {
  padding: 120px 48px;
}

.section--bone { background: var(--bone); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--bone-warm { background: var(--bone-warm); }

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: var(--container-narrow);
}

.section__inner--wide {
  max-width: var(--container-wide);
}

.section__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: baseline;
}

.section__head .eyebrow {
  padding-top: 14px;
}

.section__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section__title em {
  font-style: italic;
  color: var(--brass);
}

/* ── EDITORIAL BODY COPY ─────────────────────────────────────── */
.prose {
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.prose p { margin-bottom: 1.5em; }
.prose p:last-child { margin-bottom: 0; }

.prose .dropcap::first-letter {
  font-family: var(--display);
  font-weight: 300;
  font-size: 5.6em;
  line-height: 0.85;
  float: left;
  padding-right: 14px;
  padding-top: 8px;
  color: var(--brass);
  font-style: italic;
}

.prose strong {
  font-weight: 500;
  color: var(--ink);
}

/* ── PULL QUOTE ──────────────────────────────────────────────── */
.pullquote {
  margin: 96px auto;
  max-width: 880px;
  padding: 0 48px;
  text-align: center;
  position: relative;
}

.pullquote__mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 120px;
  line-height: 0.5;
  color: var(--brass);
  opacity: 0.4;
  margin-bottom: -20px;
}

.pullquote__text {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pullquote__attr {
  margin-top: 32px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── EDITORIAL TWO-COLUMN ────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse > :first-child { order: 2; }

.split__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--sand-deep);
  overflow: hidden;
}

.split__photo::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
}

.split__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.split__title em { font-style: italic; color: var(--brass); }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}

.gallery__item {
  background: var(--sand-deep);
  position: relative;
  overflow: hidden;
}

.gallery__item::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
}

.gallery__item--a { grid-column: span 7; grid-row: span 4; }
.gallery__item--b { grid-column: span 5; grid-row: span 2; }
.gallery__item--c { grid-column: span 5; grid-row: span 2; }
.gallery__item--d { grid-column: span 4; grid-row: span 3; }
.gallery__item--e { grid-column: span 4; grid-row: span 3; }
.gallery__item--f { grid-column: span 4; grid-row: span 3; }

/* ── GEO Q&A (the LLM citation block) ────────────────────────── */
.qa {
  border-top: 1px solid var(--line);
}

.qa__item {
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.qa__q {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.qa__q::before {
  content: 'Q.';
  display: block;
  font-family: var(--ui);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-bottom: 14px;
}

.qa__a {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.qa__a::before {
  content: 'A.';
  display: block;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--stone);
  margin-bottom: 14px;
}

.qa__a strong { color: var(--ink); font-weight: 500; }

/* ── BUYER PERSONAS + OFFER CAUTIONS ────────────────────────── */
.persona-grid,
.caution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.persona,
.caution {
  border: 1px solid var(--line);
  background: rgba(247, 243, 236, 0.48);
  padding: 32px;
}

.persona h3,
.caution h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.persona p,
.caution p {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.caution h3::before {
  content: 'Verify';
  display: block;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}

/* ── DATA TABLE (membership / HOA breakdown) ─────────────────── */
.datatable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ui);
  font-size: 14px;
}

.datatable th, .datatable td {
  text-align: left;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.datatable th {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid var(--ink);
}

.datatable tbody tr:hover { background: var(--bone-warm); }

.datatable td:first-child {
  font-family: var(--body);
  font-size: 18px;
  color: var(--ink);
}

.datatable td:last-child {
  text-align: right;
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
}

/* ── LISTINGS GRID ───────────────────────────────────────────── */
.listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.listing {
  background: var(--bone);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.listing:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(26, 24, 21, 0.15);
}

.listing__photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
  position: relative;
}

.listing__photo::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
}

.listing__body { padding: 28px; }

.listing__price {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.listing__address {
  font-family: var(--body);
  font-size: 17px;
  color: var(--stone);
  margin-bottom: 20px;
}

.listing__specs {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  gap: 16px;
}

.listing__specs span:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  color: var(--brass);
}

/* ── AGENT CARDS ─────────────────────────────────────────────── */
.agents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.agent {
  background: var(--bone-warm);
  padding: 0;
  border: 1px solid var(--line);
}

.agent__photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
  position: relative;
}

.agent__photo::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

.agent__body { padding: 40px; }

.agent__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: 38px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.agent__name em { font-style: italic; color: var(--brass); }

.agent__title {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}

.agent__bio {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.agent__contact {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── CTA BLOCK ───────────────────────────────────────────────── */
.cta {
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  padding: 140px 48px;
}

.cta__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 32px;
}

.cta__title em { font-style: italic; color: var(--brass); }

.cta__sub {
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 48px;
}

.button {
  display: inline-block;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 22px 44px;
  border: 1px solid var(--brass);
  color: var(--brass);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: var(--brass);
  color: var(--bone);
}

.button--filled {
  background: var(--brass);
  color: var(--ink);
}

.button--filled:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  color: var(--bone);
}

/* ── DUNE CTA ───────────────────────────────────────────────── */
.dune-cta {
  background: var(--sage-deep);
  color: var(--bone);
  padding: 72px 48px;
}

.dune-cta__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.dune-cta h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-top: 12px;
}

.dune-cta__button {
  flex: 0 0 auto;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 48px 48px;
  border-top: 1px solid rgba(247, 243, 236, 0.1);
}

.footer__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.1);
}

.footer__brand {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.footer__brand em { font-style: italic; }

.footer__tag {
  font-family: var(--body);
  font-style: italic;
  font-size: 17px;
  opacity: 0.7;
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  font-family: var(--body);
  font-size: 16px;
  line-height: 2;
  opacity: 0.85;
}

.footer__legal {
  max-width: var(--container-wide);
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav, .nav.scrolled { padding: 18px 24px; }
  .nav__links { display: none; }
  .hero__content { padding: 0 24px 64px; }
  .factbar { padding: 40px 24px; }
  .factbar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .answer-capsule { padding: 32px 24px; }
  .section { padding: 80px 24px; }
  .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse > :first-child { order: 0; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .qa__item { grid-template-columns: 1fr; gap: 24px; }
  .persona-grid, .caution-list { grid-template-columns: 1fr; }
  .dune-cta { padding: 56px 24px; }
  .dune-cta__inner { display: block; }
  .dune-cta__button { margin-top: 32px; width: 100%; }
  .listings { grid-template-columns: 1fr; }
  .agents { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__legal { flex-direction: column; gap: 12px; }
}

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

.fade-up {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-up--delay-1 { animation-delay: 0.15s; }
.fade-up--delay-2 { animation-delay: 0.3s; }
.fade-up--delay-3 { animation-delay: 0.45s; }
.fade-up--delay-4 { animation-delay: 0.6s; }


/* COUNTRY CLUB POLISH */
.hero__photo.has-image {
  background: var(--ink);
}

.hero__photo.has-image img,
.split__photo.has-image img,
.gallery__item.has-image img,
.listing__photo.has-image img,
.agent__photo.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing__photo.has-image {
  display: block;
  overflow: hidden;
  background: var(--sand);
}

.listing__photo.has-image::after,
.split__photo.has-image::after,
.gallery__item.has-image::after,
.agent__photo.has-image::after {
  display: none;
}

.split__photo.has-image,
.gallery__item.has-image {
  overflow: hidden;
  background: var(--sand);
}

.listing__photo.has-image img {
  transition: transform 0.5s ease;
}

.listing:hover .listing__photo.has-image img {
  transform: scale(1.035);
}

.listing__meta {
  margin-top: 16px;
  font-family: var(--ui);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.listing-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.button--quiet {
  border-color: rgba(26, 24, 21, 0.18);
  color: var(--stone);
}

.idx-disclaimer {
  max-width: 860px;
  margin: 28px auto 0;
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.7;
  color: var(--stone);
  text-align: center;
}

.listings-note {
  max-width: 760px;
}

.agent__photo.has-image {
  overflow: hidden;
  background: var(--sand);
}

.agent__contact a {
  display: block;
}

@media (max-width: 1180px) {
  .nav__links {
    gap: 20px;
    font-size: 12px;
  }
}
