/* ============================================================
   Victoria Barajas, Realtor / Black, White, Gold
   Top Producers Realty Partners
   ============================================================ */

:root {
  --ink: #0b0b0b;
  --ink-2: #161616;
  --ink-3: #1f1f1f;
  --paper: #ffffff;
  --paper-2: #faf7f1;
  --paper-3: #f1ece2;
  --rule-dark: #2a2a2a;
  --rule-light: #e8e3d6;
  --gold: #c9a961;
  --gold-soft: #d8bd7a;
  --gold-deep: #a8862f;
  --muted-dark: #b5b0a4;
  --muted-light: #6a665d;

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.10);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.45);

  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: 0.015em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-2px);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--cream { background: var(--paper-2); }

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 1.25rem 0 2rem;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 1.85rem;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s var(--ease-out-soft),
    color 0.3s var(--ease-out-soft),
    border-color 0.3s var(--ease-out-soft),
    transform 0.25s var(--ease-out-soft),
    box-shadow 0.25s var(--ease-out-soft);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out-soft);
}

.btn:hover::after,
.btn:focus-visible::after { left: 140%; }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(168, 134, 47, 0.30);
}

.btn--ghost-light { color: var(--paper); border-color: rgba(255, 255, 255, 0.45); }
.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  transform: translateY(-2px);
}

.btn--ghost-dark { color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover,
.btn--ghost-dark:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ---------- Brand wordmark (replaces image logo) ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.brand--text {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--paper);
  transition: color 0.25s var(--ease-out-soft);
}

.brand__rule {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out-soft), background 0.25s var(--ease-out-soft);
}

.brand__title {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.brand:hover .brand__rule,
.brand:focus-visible .brand__rule { width: 64px; }
.brand:hover .brand__name { color: var(--gold-soft); }

.brand--footer .brand__name { color: var(--paper); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: background 0.3s var(--ease-out-soft), padding 0.3s var(--ease-out-soft), backdrop-filter 0.3s var(--ease-out-soft);
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding: 0.4rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-soft), left 0.3s var(--ease-out-soft);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after { width: 100%; left: 0; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--paper);
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 13rem 0 7rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 97, 0.12), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 97, 0.06), transparent 50%),
    linear-gradient(180deg, #0b0b0b 0%, #15110a 100%);
  pointer-events: none;
  animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, -1.5%) scale(1.05); }
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.02;
}

.hero__copy h1 .first,
.hero__copy h1 .last { display: block; }

.hero__copy h1 .last { color: var(--paper); }

.hero__credentials {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.hero__credentials span + span::before {
  content: "·";
  color: var(--gold);
  margin-right: 1.25rem;
  font-weight: 700;
}

.hero__tagline {
  margin: 1.5rem 0 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted-dark);
  max-width: 38ch;
  line-height: 1.5;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero__portrait {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}

.hero__portrait::before {
  content: "";
  position: absolute;
  inset: 12% -12% -12% 12%;
  border: 1px solid var(--gold);
  z-index: 0;
  transition: inset 0.6s var(--ease-out-soft);
}

.hero__portrait:hover::before { inset: 18% -18% -18% 18%; }

.hero__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  box-shadow: var(--shadow-deep);
  transition: transform 0.6s var(--ease-out-soft);
}

.hero__portrait:hover img { transform: translateY(-6px); }

/* Animated scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.hero__scroll:hover { border-color: var(--gold); transform: translate(-50%, -3px); }
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollHint 1.8s var(--ease-out-soft) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0);    opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- Tiles (Services) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 3rem;
}

.tiles--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tile {
  background: var(--paper);
  border: 1px solid var(--rule-light);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft), border-color 0.4s var(--ease-out-soft);
  display: flex;
  flex-direction: column;
}

.tile::before {
  content: "";
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out-soft);
}

.tile:hover,
.tile:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}

.tile:hover::before,
.tile:focus-within::before { transform: scaleX(1); }

.tile__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.tile h3 { margin: 1rem 0 1rem; font-size: 1.1rem; }
.tile p { color: var(--muted-light); margin-bottom: 2rem; font-size: 0.97rem; }

.tile__more {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  align-self: flex-start;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.25s var(--ease-out-soft);
}
.tile__more:hover { color: var(--gold-deep); border-color: var(--gold-deep); gap: 1em; }

/* ---------- Pool / Lifestyle parallax section ---------- */
.pool-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.pool-hero__bg {
  position: absolute;
  inset: -20% 0;
  background-image: url('../images/pool-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  transition: transform 0.05s linear;
  z-index: -2;
}

.pool-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 11, 11, 0.55) 0%,
    rgba(11, 11, 11, 0.20) 40%,
    rgba(11, 11, 11, 0.55) 75%,
    rgba(11, 11, 11, 0.80) 100%);
  z-index: -1;
}

.pool-hero__inner {
  padding: 7rem 0;
  max-width: 760px;
}

.pool-hero__inner h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.pool-hero__inner p {
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 56ch;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.pool-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ---------- About strip ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__portrait {
  position: relative;
  background: linear-gradient(180deg, var(--paper-3) 0%, var(--paper-2) 100%);
  padding: 2rem;
}

.about__portrait::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  transition: inset 0.5s var(--ease-out-soft);
}
.about__portrait:hover::before { inset: 10px; }

.about__portrait img { position: relative; width: 100%; }

.about__body p { color: var(--muted-light); font-size: 1.05rem; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-light);
}

.about__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.about__stat span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ---------- Service area ---------- */
.service-area { text-align: center; }
.service-area .container { max-width: 900px; }

.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
  margin: 2rem 0 0;
  list-style: none;
  padding: 0;
}

.cities li {
  padding: 0.4rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.25s ease;
}

.cities li:last-child { border-right: 0; }
.cities li:hover { color: var(--gold-soft); }

/* ---------- Contact band ---------- */
.contact-band {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.10), transparent 60%);
  pointer-events: none;
}

.contact-band > * { position: relative; }

.contact-band h2 { color: var(--paper); }

.contact-band .lead {
  max-width: 56ch;
  margin: 0 auto 2rem;
  color: var(--muted-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}

.contact-band__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  color: var(--muted-dark);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.site-footer .brand { margin-bottom: 1rem; }
.site-footer .brand__name { font-size: 1.4rem; }

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.site-footer a {
  color: var(--paper);
  display: inline-block;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.site-footer a:hover,
.site-footer a:focus-visible { color: var(--gold); border-bottom-color: var(--gold); }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.4rem; }

.site-footer .socials { display: flex; gap: 0.75rem; margin-top: 0.75rem; }

.site-footer .socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 0;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-footer .socials a:hover,
.site-footer .socials a:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.10);
  transform: translateY(-2px);
}

.site-footer .socials svg { width: 16px; height: 16px; fill: currentColor; }

.site-footer .legal {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #6a665d;
  text-align: center;
  line-height: 1.65;
}

.site-footer .legal a { color: var(--muted-dark); }

/* ---------- Inner page hero ---------- */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 11rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.10), transparent 60%);
  pointer-events: none;
}

.page-hero h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 4rem); }
.page-hero .eyebrow { color: var(--gold-soft); }

/* ---------- Content blocks (inner pages) ---------- */
.prose { font-size: 1.05rem; color: var(--muted-light); }
.prose h2 { color: var(--ink); margin-top: 2.5rem; }
.prose h2:first-of-type { margin-top: 0; }

.prose ul { padding-left: 0; list-style: none; margin: 1.25rem 0 2rem; }
.prose ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.75em;
  width: 12px; height: 1px;
  background: var(--gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.step {
  padding: 1.75rem;
  border: 1px solid var(--rule-light);
  background: var(--paper);
  transition: transform 0.3s var(--ease-out-soft), box-shadow 0.3s var(--ease-out-soft), border-color 0.3s var(--ease-out-soft);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.step__num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.step h3 { margin: 1rem 0 0.5rem; font-size: 0.95rem; }
.step p { font-size: 0.95rem; color: var(--muted-light); margin: 0; }

/* ---------- Scroll-reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.8s var(--ease-out-soft),
    transform 0.8s var(--ease-out-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding-top: 10rem; min-height: auto; }
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero__portrait {
    order: -1;
    justify-self: center;
    max-width: 320px;
  }
  .tiles, .tiles--two { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about { grid-template-columns: 1fr; }
  .about__portrait { max-width: 420px; margin: 0 auto; }
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pool-hero { min-height: 60vh; }
  .pool-hero__inner { padding: 5rem 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    right: var(--gutter);
    background: var(--ink-2);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    border: 1px solid var(--rule-dark);
    border-top: 2px solid var(--gold);
    min-width: 220px;
  }
  .nav.is-open a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--rule-dark);
    color: var(--paper);
  }
  .nav.is-open a:last-child { border-bottom: 0; }
  .hero__credentials { font-size: 0.7rem; gap: 0.4rem 0.9rem; }
  .hero__credentials span + span::before { margin-right: 0.9rem; }
  .site-footer .container { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand--text { align-items: center; }
  .site-footer .socials { justify-content: center; }
  .cities li { border-right: 0; }
  .about__stats { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__bg { animation: none !important; }
  .pool-hero__bg { transform: none !important; }
}

/* ============================================================
   FLYER-INSPIRED ADDITIONS
   - Hero billboard (LA skyline background)
   - Two-tone headline (white + gold)
   - 3-up service tiles
   - Footer motto
   ============================================================ */

/* Hero billboard: LA skyline background with dark overlay */
.hero--billboard .hero__bg {
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.65) 0%, rgba(11, 11, 11, 0.50) 40%, rgba(11, 11, 11, 0.92) 100%),
    url('../images/la-skyline.jpg') center 22% / cover no-repeat,
    linear-gradient(180deg, #050810 0%, #0b0b0b 100%);
  inset: 0;
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero--billboard .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 35%, rgba(11, 11, 11, 0.85), transparent 55%),
    radial-gradient(ellipse at 80% 110%, rgba(201, 169, 97, 0.10), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero--billboard .container {
  z-index: 1;
}

/* Two-tone headline: white line + gold line */
.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
}

.headline__line {
  display: block;
  color: var(--paper);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.headline__line--accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.65), 0 0 40px rgba(201, 169, 97, 0.12);
  position: relative;
}

.headline__line--accent::after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.55em;
  opacity: 0.85;
  transform-origin: left;
  animation: ruleGrow 1.2s var(--ease-out-soft) 0.4s both;
}

@keyframes ruleGrow {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Eyebrow variant placed above the headline */
.eyebrow--top {
  display: block;
  margin-bottom: 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--gold-soft);
}

.eyebrow--top::before {
  width: 22px;
  margin-right: 12px;
}

/* 3-up service tiles */
.tiles--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

/* The short "Find your perfect home." lead line above body copy */
.tile__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 0.85rem;
  letter-spacing: 0.005em;
}

/* Footer motto in gold italic */
.footer__motto {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

/* Responsive overrides for new components */
@media (max-width: 980px) {
  .tiles--three { grid-template-columns: 1fr; max-width: 480px; }
  .headline__line--accent::after { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .hero--billboard { padding-top: 9rem; padding-bottom: 4rem; }
  .headline { font-size: clamp(2.5rem, 11vw, 3.5rem); }
}
