/* ============================================================
   URBAN SOUTH GROUP — Editorial Luxury Real Estate
   ============================================================ */

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

:root {
  --ink: #0A0908;
  --paper: #F5F1EA;
  --paper-warm: #EDE7DA;
  --gold: #B8935B;
  --gold-dim: #8A6E43;
  --carbon: #2C2A26;
  --taupe: #8A8378;
  --hairline: rgba(10, 9, 8, 0.15);
  --hairline-light: rgba(245, 241, 234, 0.18);

  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, sans-serif;

  --pad-x: clamp(1.5rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--paper); }

/* ── LOADER (moment orchestrated on load) ── */
.curtain {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.curtain.lift { transform: translateY(-100%); }
.curtain .mark {
  color: var(--paper);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.2em;
  opacity: 0;
  animation: markFade 1.2s ease forwards 0.2s;
}
.curtain__logo {
  width: clamp(240px, 32vw, 400px);
  height: auto;
  opacity: 0;
  animation: markFade 1.2s ease forwards 0.15s;
  filter: drop-shadow(0 0 40px rgba(184, 147, 91, 0.35));
}
@keyframes markFade {
  0%   { opacity: 0; letter-spacing: 0.5em; }
  60%  { opacity: 1; letter-spacing: 0.2em; }
  100% { opacity: 0; letter-spacing: 0.2em; }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  mix-blend-mode: difference;
  transition: padding 0.4s ease;
}
.nav.scrolled { padding-top: 0.6rem; padding-bottom: 0.6rem; }

.nav__brand {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  line-height: 1;
  display: flex;
  align-items: center;
  /* Sacar el mix-blend del logo para que se vea con sus colores originales */
  mix-blend-mode: normal;
  isolation: isolate;
}
.nav__brand em { font-style: italic; font-weight: 300; }
.nav__logo {
  height: 80px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav.scrolled .nav__logo { height: 58px; }

.nav__center {
  display: flex;
  gap: 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}
.nav__center a {
  position: relative;
  padding: 0.4rem 0;
  transition: opacity 0.3s;
}
.nav__center a::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s ease, left 0.4s ease;
}
.nav__center a:hover::after { width: 100%; left: 0; }

.nav__right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.nav__lang {
  display: flex; gap: 0.5rem;
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-style: italic;
}
.nav__lang a { opacity: 0.5; transition: opacity 0.3s; }
.nav__lang a.active { opacity: 1; }
.nav__lang a:hover { opacity: 1; }
.nav__lang span { opacity: 0.4; }

.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav__center { display: none; }
  .nav__burger {
    display: flex; flex-direction: column;
    gap: 5px; padding: 8px;
  }
  .nav__burger span {
    width: 22px; height: 1px; background: currentColor;
  }
}

/* ── HERO (asymmetric editorial) ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.25) 0%, rgba(10,9,8,0.55) 60%, rgba(10,9,8,0.85) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.5) 0%, transparent 45%);
  z-index: 1;
}
.hero__image img,
.hero__image .hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}
.hero__image .hero-photo {
  background: url('/static/images/hero.png') center/cover no-repeat;
  height: 100%; width: 100%;
}

.hero__index {
  position: absolute;
  top: 40%; right: var(--pad-x);
  z-index: 5;
  font-family: var(--f-display);
  color: var(--paper);
  opacity: 0.5;
  text-align: right;
  transform: translateY(-50%);
  animation: fadeIn 1.5s ease 1.4s both;
}
.hero__index-num {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  font-style: italic;
}
.hero__index-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  margin-top: 0.6rem;
  opacity: 0.7;
}

.hero__content {
  position: relative;
  z-index: 4;
  padding: 0 var(--pad-x) clamp(6rem, 14vh, 10rem);
  max-width: 1100px;
  align-self: end;
}

.hero__eyebrow {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideRight 0.9s ease 1s forwards;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title .line:nth-child(1) span { animation-delay: 1.1s; }
.hero__title .line:nth-child(2) span { animation-delay: 1.25s; }
.hero__title .line:nth-child(3) span { animation-delay: 1.4s; }
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__meta {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3rem);
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 4;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--paper);
  opacity: 0;
  animation: fadeIn 1.5s ease 1.8s forwards;
}
.hero__coords {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  opacity: 0.75;
}
.hero__scroll {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: currentColor;
  margin: 0.8rem auto 0;
}

@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── SECTIONS ── */
section { padding: clamp(5rem, 12vh, 9rem) var(--pad-x); }

.section-label {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: attr(data-roman);
  font-style: normal;
  font-weight: 500;
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--hairline);
  color: var(--carbon);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  max-width: 20ch;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── INTRO ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: end;
}
.intro__body {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 55ch;
  color: var(--carbon);
  line-height: 1.75;
}
@media (max-width: 800px) {
  .intro { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── CATEGORIES (editorial three-column with hairlines) ── */
.categories {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(4rem, 10vh, 7rem);
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
  border-top: 1px solid var(--hairline);
}
.category {
  padding: 3rem 2.2rem;
  border-right: 1px solid var(--hairline);
  transition: background 0.5s ease;
  cursor: pointer;
  position: relative;
}
.category:last-child { border-right: none; }
.category:hover { background: var(--paper-warm); }
.category__num {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.category__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.category__text {
  color: var(--carbon);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.category__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s, border-color 0.3s;
}
.category__cta:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 800px) {
  .categories__grid { grid-template-columns: 1fr; }
  .category { border-right: none; border-bottom: 1px solid var(--hairline); }
  .category:last-child { border-bottom: none; }
}

/* ── FEATURED (editorial spread) ── */
.featured {
  background: var(--ink);
  color: var(--paper);
}
.featured__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.featured__label {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}
.featured__label::before {
  content: attr(data-roman);
  font-style: normal;
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--hairline-light);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.featured__badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.featured__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 15ch;
}
.featured__location {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--taupe);
  margin-top: 1rem;
}

.featured__spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.featured__images {
  display: grid;
  gap: 1rem;
}
.featured__img {
  aspect-ratio: 4/5;
  background: var(--carbon) center/cover no-repeat;
  overflow: hidden;
}
.featured__img--wide {
  aspect-ratio: 16/9;
  grid-column: 1;
}
.featured__sections {
  padding-top: 2rem;
}
.featured__sec {
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline-light);
}
.featured__sec:last-child { border-bottom: none; }
.featured__sec h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--paper);
}
.featured__sec p {
  color: var(--taupe);
  font-size: 0.95rem;
  line-height: 1.75;
}
.featured__specs {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hairline-light);
}
.featured__spec-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.featured__spec-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--taupe);
  margin-top: 0.4rem;
}
@media (max-width: 900px) {
  .featured__spread { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── LISTINGS (auction catalog style) ── */
.listings {
  background: var(--paper);
}
.listings__header {
  margin-bottom: 4rem;
  max-width: 60ch;
}
.listing {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--hairline);
  transition: background 0.4s;
  cursor: pointer;
}
.listing:last-of-type { border-bottom: 1px solid var(--hairline); }
.listing:hover { background: rgba(184, 147, 91, 0.04); padding-left: 1rem; padding-right: 1rem; }
.listing:hover .listing__img { transform: scale(1.03); }

.listing__lot {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.listing__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--carbon);
}
.listing__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(20%);
}
.listing__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.listing__status {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.listing__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.listing__coord {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--taupe);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.listing__address {
  color: var(--carbon);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.listing__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  gap: 2rem;
  flex-wrap: wrap;
}
.listing__price {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
}
.listing__specs {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--taupe);
}

@media (max-width: 800px) {
  .listing { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
}

/* ── SELL ── */
.sell {
  background: var(--paper-warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sell__body h2 { margin-bottom: 1.5rem; }
.sell__body p { color: var(--carbon); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 45ch; }
.sell__form {
  background: var(--paper);
  padding: 3rem;
  border: 1px solid var(--hairline);
}
.sell__form label {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--carbon);
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}
.sell__form label:first-of-type { margin-top: 0; }
.sell__form input,
.sell__form textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: none;
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s;
}
.sell__form input:focus,
.sell__form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.sell__form textarea { min-height: 100px; resize: vertical; }
.btn {
  margin-top: 2rem;
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  border: 1px solid var(--ink);
  transition: all 0.4s;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.btn--gold:hover { background: transparent; color: var(--gold); }

@media (max-width: 900px) {
  .sell { grid-template-columns: 1fr; gap: 2.5rem; }
  .sell__form { padding: 2rem 1.5rem; }
}

/* ── TEAM ── */
.team {
  background: var(--paper);
}
.team__intro {
  max-width: 720px;
  margin-bottom: 5rem;
}
.team__intro p {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--carbon);
  line-height: 1.75;
  margin-top: 1.5rem;
}
.team__intro em { color: var(--gold); font-style: italic; }

.founder {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.founder__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--carbon);
}
.founder__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.8s;
}
.founder:hover .founder__img { filter: grayscale(0%) contrast(1); }

.founder__body h3 {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.founder__name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.founder__role {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--taupe);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.founder__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

.realtors-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--carbon);
  margin-bottom: 3rem;
}

.realtors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.realtor {
  cursor: pointer;
}
.realtor__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--carbon);
  margin-bottom: 1.2rem;
}
.realtor__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.8s, transform 0.8s;
}
.realtor:hover .realtor__img { filter: grayscale(0%); transform: scale(1.03); }
.realtor__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.realtor__role {
  font-size: 0.82rem;
  color: var(--taupe);
  margin-bottom: 0.6rem;
}
.realtor__mail {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold);
}

@media (max-width: 900px) {
  .founder { grid-template-columns: 1fr; gap: 2rem; }
  .realtors { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ── STATS (typography as data) ── */
.stats {
  background: var(--ink);
  color: var(--paper);
}
.stats__header {
  margin-bottom: 5rem;
  max-width: 60ch;
}
.stats__header .section-label { color: var(--gold); }
.stats__header .section-label::before { color: var(--paper); border-color: var(--hairline-light); }
.stats__header .section-title { color: var(--paper); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline-light);
}
.stat {
  padding: 3rem 1.5rem 3rem 0;
  border-right: 1px solid var(--hairline-light);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat__num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.stat__num sup {
  font-size: 0.4em;
  color: var(--gold);
  font-style: italic;
  vertical-align: super;
  margin-left: 0.1em;
}
.stat__lbl {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--taupe);
  margin-top: 1.2rem;
  max-width: 20ch;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--hairline-light); padding-right: 1rem; }
  .stat:nth-child(2), .stat:nth-child(4) { border-right: none; }
}

/* ── CTA ── */
.cta {
  background: var(--paper);
  text-align: center;
  padding-top: clamp(6rem, 15vh, 10rem);
  padding-bottom: clamp(6rem, 15vh, 10rem);
}
.cta h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p {
  color: var(--carbon);
  max-width: 45ch;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.cta__phone {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 3rem;
}

/* ── FOOTER (notarial contract style) ── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 10vh, 7rem) var(--pad-x) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--hairline-light);
}
.footer__brand {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.footer__logo {
  height: 90px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}
.footer__tagline {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--taupe);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32ch;
}
.footer__col h4 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.footer__col p,
.footer__col a {
  color: var(--paper);
  font-size: 0.9rem;
  line-height: 1.7;
  display: block;
}
.footer__col a { opacity: 0.75; transition: opacity 0.3s; margin-bottom: 0.4rem; }
.footer__col a:hover { opacity: 1; }
.footer__hours strong { display: block; margin-top: 1rem; color: var(--paper); font-weight: 400; font-size: 0.85rem; }

.footer__legal {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__title .line span { transform: none; }
  .curtain { display: none; }
}

/* ── Focus visible ── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
