/* ═══════════════════════════════════════════════════════════════
   MERIDIAN REALTY — style.css
   Palette: #0F1923 slate | #F7F5F0 warm white | #C8924A copper
            #8A8F99 mid-gray | #1A2A3A deep blue-gray
   Type:    Cormorant Garant (display) + Inter (body)
═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --slate: #0F1923;
  --slate-2: #1A2A3A;
  --cream: #F7F5F0;
  --cream-2: #EEEbE4;
  --gray: #8A8F99;
  --gray-2: #C4C7CE;
  --copper: #C8924A;
  --copper-lt: #D4A574;
  --white: #FFFFFF;
  --font-disp: 'Cormorant Garant', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --section-gap: 120px;
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.nav-close,
.nav-mobile-cta {
  display: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-disp);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  color: var(--copper);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: block;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section defaults ───────────────────────────────────────── */
.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn-primary:hover {
  background: var(--copper-lt);
  border-color: var(--copper-lt);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}

.btn-outline:hover {
  background: var(--slate);
  color: var(--cream);
}

.btn-nav {
  background: var(--slate);
  color: var(--cream);
  border-color: var(--slate);
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn-nav:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.72rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-accent {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn-accent:hover {
  background: var(--copper-lt);
}

.btn-full {
  width: 100%;
}

/* ── Animation states ───────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-anim="fade-right"] {
  transform: translateX(-28px);
}

[data-anim="fade-left"] {
  transform: translateX(28px);
}

[data-anim].anim-in {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════════════════════════════ NAV */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav-wrap.scrolled {
  background: rgba(15, 25, 35, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 146, 74, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 40px;
  transition: padding var(--transition);
}

.nav-wrap.scrolled .nav-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--copper);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.logo-text em {
  font-style: normal;
  color: var(--gray-2);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 12px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  transition: border-color var(--transition);
}

.nav-toggle:hover {
  border-color: rgba(200, 146, 74, 0.6);
}

.bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.25s ease,
    width 0.3s ease;
  transform-origin: center;
}

.bar-bot {
  width: 14px;
}

.nav-toggle[aria-expanded="true"] .bar-top {
  transform: translateY(4.25px) rotate(45deg);
  width: 20px;
}

.nav-toggle[aria-expanded="true"] .bar-bot {
  transform: translateY(-4.25px) rotate(-45deg);
  width: 20px;
}

/* ═══════════════════════════════════════════ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--slate);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200, 146, 74, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 0% 100%, rgba(26, 42, 58, 0.8) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 146, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 146, 74, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 40px 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  padding-right: 0;
  margin-left: max(40px, calc((100vw - var(--max-w)) / 2));
}

.hero-headline {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline .line-1 {
  display: block;
}

.hero-headline .line-2 {
  display: block;
}

.hero-headline .line-3 {
  display: block;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stat-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 146, 74, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.h-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}

.h-stat strong {
  font-family: var(--font-disp);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.h-stat span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.h-divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 146, 74, 0.25);
  flex-shrink: 0;
}

.hero-image-frame {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none;
}

.hero-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-building {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-caption {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: max(40px, calc((100vw - var(--max-w)) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200, 146, 74, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* ═══════════════════════════════════════════ SERVICES */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-2);
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--transition);
}

.service-card:hover {
  background: var(--white);
}

.svc-icon {
  width: 44px;
  height: 44px;
  color: var(--copper);
}

.svc-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  font-weight: 500;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.svc-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--copper);
  border-bottom: 1px solid rgba(200, 146, 74, 0.3);
  padding-bottom: 2px;
  display: inline-block;
  width: fit-content;
  transition: border-color var(--transition);
}

.svc-link:hover {
  border-color: var(--copper);
}

/* ═══════════════════════════════════════════ CREDIBILITY */
.credibility {
  background: var(--slate);
  padding-bottom: 0;
}

.cred-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: var(--section-gap);
}

.cred-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cred-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(200, 146, 74, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-num {
  font-family: var(--font-disp);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials-wrap {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(200, 146, 74, 0.12);
  padding: 80px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--transition), background var(--transition);
}

.testi-card:hover {
  border-color: rgba(200, 146, 74, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.testi-card.featured {
  border-color: rgba(200, 146, 74, 0.25);
  background: rgba(200, 146, 74, 0.04);
}

.testi-quote {
  font-family: var(--font-disp);
  font-size: 4rem;
  color: var(--copper);
  line-height: 0.6;
  font-style: italic;
  opacity: 0.6;
}

.testi-card>p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
  font-family: var(--font-disp);
  font-size: 1.05rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 146, 74, 0.15);
  border: 2px solid rgba(200, 146, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--copper);
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
}

.testi-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 3px;
}

.testi-author span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Press logos */
.logos-bar {
  border-top: 1px solid rgba(200, 146, 74, 0.12);
  padding: 48px 0;
}

.logos-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.press-logo {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  cursor: default;
}

.press-logo:hover {
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════ LISTINGS */
.listings {
  background: var(--cream);
}

.listing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-2);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.listing-card:hover {
  box-shadow: 0 16px 48px rgba(15, 25, 35, 0.12);
  transform: translateY(-4px);
}

.listing-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--slate);
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.listing-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(15, 25, 35, 0.7);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}

.listing-badge.exclusive {
  background: var(--copper);
  color: var(--white);
}

.listing-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.listing-hood {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-name {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
}

.listing-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.listing-specs {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  padding: 14px 0;
  border-top: 1px solid var(--cream-2);
  flex-wrap: wrap;
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  flex-wrap: nowrap;
}

.listing-price {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  flex-shrink: 0;
}

.listing-card.featured-listing {
  border-color: rgba(200, 146, 74, 0.3);
  box-shadow: 0 8px 32px rgba(200, 146, 74, 0.08);
}

.listings-cta {
  text-align: center;
  padding: 56px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-2);
}

.listings-cta p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════ CONTACT */
.contact-section {
  background: var(--cream-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

.contact-left>p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cd-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--slate);
}

.cd-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--copper);
  margin-top: 2px;
}

.cd-row a:hover {
  color: var(--copper);
}

.contact-right {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--cream-2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--cream);
  border: 1.5px solid var(--cream-2);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-2);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%238A8F99' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-note {
  font-size: 0.72rem;
  color: var(--gray);
  text-align: center;
  margin-top: -4px;
}

/* ═══════════════════════════════════════════ FOOTER */
.footer {
  background: var(--slate);
  padding: 80px 0 0;
}

.footer-top {
  display: flex;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  flex: 0 0 280px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 20px 0 28px;
}

.footer .logo-text {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition), border-color var(--transition);
}

.social-links a:hover {
  color: var(--copper);
  border-color: var(--copper);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-nav {
  display: flex;
  gap: 64px;
  flex: 1;
  justify-content: flex-end;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-nav-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  :root {
    --section-gap: 88px;
  }

  .hero-image-frame {
    width: 40%;
  }

  .hero-content {
    max-width: 580px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .cred-left {
    text-align: center;
  }

  .cred-left .btn {
    margin: 0 auto;
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid .testi-card:last-child {
    display: none;
  }

  .listing-cards {
    grid-template-columns: 1fr 1fr;
  }

  .listing-cards> :last-child {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand {
    flex: none;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 72px;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    padding: 20px 24px;
  }

  /* Full-screen overlay */
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--slate);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 48px;
    gap: 0;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-links.open {
    display: flex;
    visibility: visible;
    opacity: 1;
  }

  /* Close button inside overlay */
  .nav-close {
    display: flex;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
  }

  .nav-close:hover {
    border-color: var(--copper);
    color: var(--copper);
  }

  /* Staggered nav links */
  .nav-links a:not(.nav-mobile-cta) {
    font-family: var(--font-disp);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.01em;
    text-transform: none;
    line-height: 1;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    display: block;
    transition: color var(--transition), padding-left var(--transition);
  }

  .nav-links a:not(.nav-mobile-cta):hover {
    color: var(--copper);
    padding-left: 8px;
  }

  .nav-links a:last-of-type:not(.nav-mobile-cta) {
    border-bottom: none;
  }

  .nav-mobile-cta {
    margin-top: 40px;
    display: inline-flex !important;
    align-self: flex-start;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-content {
    padding: 120px 24px 72px;
    margin-left: 0;
    max-width: 100%;
    padding-right: 24px;
  }

  .hero-image-frame {
    display: none;
  }

  .hero-headline {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-stat-bar {
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
  }

  .h-divider {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 28px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid .testi-card:last-child {
    display: flex;
  }

  .listing-cards {
    grid-template-columns: 1fr;
  }

  .listing-cards> :last-child {
    display: flex;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-right {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .logos-row {
    gap: 28px;
  }

  .press-logo {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .listings-cta {
    padding: 36px 24px;
  }

  .footer-nav {
    flex-direction: column;
  }
}

/* ── Reduce motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-anim] {
    opacity: 1;
    transform: none;
  }
}