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

:root {
  --black: #151515;
  --cream: #E9E2D5;
  --cream-dark: #DDD5C5;
  --bronze: #A66F43;
  --terracotta: #C4614A;
  --terracotta-light: #F0DDD8;
  --terracotta-mid: #D4856A;
  --grey: #544D44;
  --grey-light: #8A8278;
  --white: #ffffff;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --nav-h: 76px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

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

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey);
  max-width: 520px;
  margin-top: 16px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 1px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: #b0543e;
  border-color: #b0543e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 97, 74, 0.3);
}

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

.btn--full { width: 100%; justify-content: center; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}

.nav.scrolled {
  background: rgba(21, 21, 21, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Logo */
.nav__logo { display: flex; align-items: center; }
.nav__logo-svg { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  color: var(--terracotta) !important;
  border: 1px solid var(--terracotta);
  padding: 8px 20px;
  font-weight: 600 !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav__cta:hover { background: var(--terracotta); color: var(--white) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #1a1614;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(21,21,21,0.25) 0%,
    rgba(21,21,21,0.05) 30%,
    rgba(21,21,21,0.55) 65%,
    rgba(21,21,21,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 80px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(196, 97, 74, 0.75);
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--terracotta-mid);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Ticker */
.hero__ticker {
  position: relative;
  z-index: 2;
  background: var(--terracotta);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
}

.ticker__inner {
  display: inline-flex;
  gap: 28px;
  animation: ticker 28s linear infinite;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 28px;
}

.sep { opacity: 0.4; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Stats ─── */
.stats {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.stats__item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 44px 24px;
  color: var(--white);
}

.stats__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--terracotta-mid);
  margin-bottom: 8px;
  line-height: 1.1;
}

.stats__item span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.stats__divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ─── Services ─── */
.services {
  padding: 120px 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-3px); }
.service-card:hover::before { width: 100%; }

.service-card--accent { background: var(--terracotta-light); }
.service-card--accent::before { background: var(--terracotta); }
.service-card--dark { background: var(--black); color: var(--white); }
.service-card--dark::before { background: var(--bronze); }

.service-card__icon {
  color: var(--bronze);
  margin-bottom: 8px;
}
.service-card--dark .service-card__icon { color: var(--terracotta-mid); }

.service-card__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--grey-light);
  margin-bottom: 2px;
}
.service-card--dark .service-card__num { color: rgba(255,255,255,0.3); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.service-card > p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--grey);
}
.service-card--dark > p { color: rgba(255,255,255,0.55); }

.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.service-card__list li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(166,111,67,0.1);
  color: var(--bronze);
  padding: 4px 10px;
  border-radius: 20px;
}

.service-card--dark .service-card__list li {
  background: rgba(212,133,106,0.15);
  color: var(--terracotta-mid);
}

.service-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 12px;
  transition: letter-spacing 0.2s;
}
.service-card--dark .service-card__link { color: var(--terracotta-mid); }
.service-card__link:hover { letter-spacing: 0.14em; }

.services__scope {
  background: var(--black);
  padding: 32px 44px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
}
.services__scope strong { color: var(--terracotta-mid); }

/* ─── Listings ─── */
.listings {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
}

.listings .section-label { color: var(--bronze); }
.listings h2 { color: var(--white); }
.listings .section-sub { color: rgba(255,255,255,0.5); }
.listings .section-header { margin-bottom: 56px; }

.listing {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Media */
.listing__media { display: flex; flex-direction: column; gap: 12px; }

.listing__video-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #1a1614;
}

.listing__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
}

.listing__unit-tag {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(21,21,21,0.85);
  backdrop-filter: blur(8px);
  color: var(--terracotta-mid);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 2px;
  border: 1px solid rgba(212,133,106,0.3);
}

.listing__thumbs {
  display: flex;
  gap: 10px;
}

.listing__thumb {
  flex: 1;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}
.listing__thumb:hover, .listing__thumb.active {
  opacity: 1;
  border-color: var(--terracotta);
}

.listing__thumb--video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.listing__thumb--video:hover { opacity: 1; border-color: var(--terracotta); }

/* Details */
.listing__grade {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}

.listing__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.listing__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.listing__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

/* Specs grid */
.listing__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 28px;
}

.spec-item {
  background: rgba(255,255,255,0.04);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.spec-item--accent {
  background: rgba(196,97,74,0.1);
  border-color: rgba(196,97,74,0.2);
}

.spec-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.spec-item--accent strong { color: var(--terracotta-mid); }

.spec-item strong small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
}

.spec-item span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Highlights */
.listing__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.listing__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

.listing__highlights li svg { flex-shrink: 0; margin-top: 1px; }

/* Ideal for */
.listing__ideal { margin-bottom: 28px; }

.listing__ideal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.listing__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listing__tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(166,111,67,0.12);
  border: 1px solid rgba(166,111,67,0.2);
  color: var(--bronze);
}

/* CTAs */
.listing__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn--dark {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-color: transparent;
}
.btn--dark:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 1024px) {
  .listing { grid-template-columns: 1fr; gap: 40px; }
  .listing__specs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .listing__specs { grid-template-columns: repeat(2, 1fr); }
  .listing__ctas { flex-direction: column; }
  .listing__ctas .btn { justify-content: center; }
}

/* ─── Listings Preview (homepage) ─── */
.listings-preview {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
}

.listings-preview .section-label { color: var(--bronze); }
.listings-preview h2 { color: var(--white); }
.listings-preview .section-sub { color: rgba(255,255,255,0.5); }
.listings-preview .section-header { margin-bottom: 48px; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 40px;
}

.preview-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s var(--ease), border-color 0.3s;
  overflow: hidden;
}

.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,97,74,0.4);
}

.preview-card--wide {
  grid-column: span 2;
}

.preview-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1614;
  display: flex;
  gap: 6px;
}

.preview-card--wide .preview-card__img-wrap {
  aspect-ratio: 16/8;
}

.preview-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.preview-card:hover .preview-card__img-wrap img { transform: scale(1.04); }

.preview-badge {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 1px;
  color: var(--white);
}

.preview-badge--sale { top: 12px; left: 12px; background: var(--terracotta); }
.preview-badge--lease { top: 12px; left: 12px; background: var(--terracotta); }
.preview-badge--type { top: 12px; left: 86px; background: rgba(21,21,21,0.75); backdrop-filter: blur(4px); }

.preview-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-card__dev {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.preview-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.preview-card__loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.preview-card__price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta-mid);
  margin-top: 4px;
}

.preview-cta { text-align: center; }

@media (max-width: 900px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-card--wide { grid-column: span 2; }
}

@media (max-width: 540px) {
  .preview-grid { grid-template-columns: 1fr; gap: 2px; }
  .preview-card--wide { grid-column: span 1; }
  /* Mobile-first: Hive hero card gets a taller image so it dominates the feed */
  .preview-card--wide .preview-card__img-wrap { aspect-ratio: 4/3; }
  .preview-card__img-wrap { aspect-ratio: 16/9; }
  /* Larger tap-friendly body padding */
  .preview-card__body { padding: 16px 16px 20px; }
  .preview-card h3 { font-size: 1rem; }
}

/* ─── About ─── */
.about {
  background: var(--black);
  padding: 120px 0;
  color: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__slab {
  width: 100%;
  max-width: 400px;
  opacity: 0.88;
}

.about__text .section-label { color: var(--bronze); }
.about__text h2 { margin-bottom: 24px; }

.about__body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.about__body em { color: var(--terracotta-mid); font-style: normal; font-weight: 500; }
.about__text .btn--primary { margin-top: 16px; }

/* ─── Process ─── */
.process {
  padding: 120px 0;
  background: var(--cream-dark);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--terracotta-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process__step p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--grey);
}

/* ─── Contact ─── */
.contact {
  background: var(--black);
  padding: 120px 0;
  color: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact__left .section-label { color: var(--bronze); }
.contact__left h2 { margin-bottom: 20px; }

.contact__left > p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.contact__details a {
  font-size: 1rem;
  color: var(--terracotta-mid);
  font-weight: 500;
  transition: opacity 0.2s;
}
.contact__details a:hover { opacity: 0.75; }

.contact__note {
  border-left: 2px solid var(--terracotta);
  padding-left: 16px;
}
.contact__note p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

input, select, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }

input:focus, select:focus, textarea:focus {
  border-color: var(--terracotta);
  background: rgba(196, 97, 74, 0.04);
}

select option { background: #1e1a18; color: var(--white); }
textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.form-success {
  background: rgba(166,111,67,0.12);
  border: 1px solid rgba(166,111,67,0.35);
  border-radius: 1px;
  padding: 16px;
  text-align: center;
  color: var(--terracotta-mid);
  font-size: 14px;
}

.form-error {
  background: rgba(196,97,74,0.1);
  border: 1px solid rgba(196,97,74,0.3);
  border-radius: 1px;
  padding: 16px;
  text-align: center;
  color: #e07060;
  font-size: 13px;
}

/* ─── Footer ─── */
.footer {
  background: #0d0b0a;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo { display: flex; align-items: center; }

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}
.footer__copy a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__copy a:hover { color: var(--white); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__logo-wrap { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(21,21,21,0.98);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99;
  }
  .nav__links.open a {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .nav__toggle { display: flex; }

  .stats { flex-wrap: wrap; }
  .stats__item { min-width: 50%; }
  .stats__divider { display: none; }

  .process__steps { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .hero__content { padding: 100px 24px 60px; }
  .hero__actions { flex-direction: column; }
  .services { padding: 80px 0; }
  .about, .process, .contact { padding: 80px 0; }
  .service-card { padding: 40px 28px; }
  .services__scope { padding: 24px 28px; }
}
