/* ============================================================
   ANTEC REALTY LTD — Design System
   Editorial luxury real-estate look · Navy + Gold
   ============================================================ */

:root {
  --navy: #071527;
  --navy-2: #0d233d;
  --ink: #030b15;
  --gold: #d7a63f;
  --gold-deep: #b3862a;
  --gold-tint: #f7efdd;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #22303f;
  --muted: #5e6b7a;
  --line: #e7e2d8;
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 14px 40px rgba(7, 21, 39, 0.1);
  --shadow-lift: 0 24px 60px rgba(7, 21, 39, 0.16);
  --radius: 6px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.9rem, 6.2vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
h3 { font-size: 1.45rem; line-height: 1.25; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.lede { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }

.btn-outline-light { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: #aebccd;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #d9e2ef; transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 13px; height: 13px; color: var(--gold); flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 39, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(3, 11, 21, 0.97); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo .logo-word {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}
.logo .logo-word span { color: var(--gold); }
.logo .logo-sub {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #8fa1b8;
  margin-top: 2px;
}
.logo-img { display: block; height: 64px; width: auto; }
.footer-logo-img { display: block; height: 70px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: #d5dfec;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.main-nav .nav-cta {
  background: var(--gold);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 3px;
  font-weight: 700;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: #e6bc5f; color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ---------- Hero slider ---------- */
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-dots {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 30px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.hero-dot.active { background: var(--gold); }
@media (max-width: 640px) {
  .hero-dots { right: 24px; bottom: 24px; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(3, 11, 21, 0.93) 22%, rgba(7, 21, 39, 0.55) 58%, rgba(7, 21, 39, 0.16));
}
.hero .container { padding: 130px 0 170px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(215, 166, 63, 0.45);
  background: rgba(215, 166, 63, 0.1);
  color: #f0d79b;
  border-radius: 3px;
  padding: 9px 18px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero h1 { color: #fff; max-width: 950px; margin-bottom: 26px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero p {
  font-size: 1.16rem;
  color: #ccd8e6;
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: #97a8bd;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
}

/* ---------- Stats strip ---------- */
.stats-strip {
  position: relative;
  z-index: 5;
  margin-top: -78px;
}
.stats-strip .stats-inner {
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lift);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 38px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section { padding: 104px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

.section-dark { background: var(--navy); color: #ccd8e6; position: relative; }
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 400px at 85% -10%, rgba(215, 166, 63, 0.07), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(13, 35, 61, 0.9), transparent 60%);
  pointer-events: none;
}
.section-dark > .container { position: relative; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-head p { color: #a9b9cc; }
.section-dark .eyebrow { color: var(--gold); }

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .about-img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.about-media::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  right: 38%;
  bottom: 38%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  right: -18px;
  bottom: 42px;
  background: var(--navy);
  color: #fff;
  padding: 26px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
}
.about-badge span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b9c7d8;
}

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pill::before { content: "— "; color: var(--gold); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
a.svc-card { display: block; }
.svc-card .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s, gap 0.2s;
}
.svc-card .svc-link svg { width: 13px; height: 13px; transition: transform 0.25s var(--ease); }
.svc-card:hover .svc-link { color: var(--gold-deep); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.section-dark .svc-card .svc-link { color: #fff; }
.svc-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .svc-num {
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: #c9c2b2;
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 3px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.svc-card p { color: var(--muted); font-size: 0.98rem; }

.section-dark .svc-card { background: rgba(255, 255, 255, 0.045); border-color: var(--line-dark); }
.section-dark .svc-card p { color: #a9b9cc; }
.section-dark .svc-card .svc-num { color: rgba(255, 255, 255, 0.25); }
.section-dark .svc-icon { background: rgba(215, 166, 63, 0.14); color: var(--gold); }

/* ---------- Project cards ---------- */
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.9;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 11, 21, 0.92) 8%, rgba(3, 11, 21, 0.35) 45%, rgba(3, 11, 21, 0.05));
  transition: background 0.4s;
}
.project-card:hover img { transform: scale(1.06); }
.project-body {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
  width: 100%;
}
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.project-body h3 { color: #fff; margin-bottom: 8px; }
.project-body p { color: #c3cfdd; font-size: 0.95rem; max-width: 40ch; }

/* ---------- Property cards + tabs ---------- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tab {
  border: 1px solid var(--line-dark);
  background: transparent;
  color: #c3cfdd;
  padding: 11px 24px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.tab:hover { border-color: var(--gold); color: var(--gold); }
.tab.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.tabs-light .tab { border-color: #d8d2c4; color: var(--muted); }
.tabs-light .tab:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.tabs-light .tab.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.property-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10.5; }
.property-media img,
.property-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.property-card:hover .property-media img,
.property-card:hover .property-media video { transform: scale(1.07); }
.property-media .badge { position: absolute; top: 18px; left: 18px; margin: 0; z-index: 2; }
.property-body { padding: 28px; }
.property-body h3 { margin-bottom: 4px; }
.price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-deep);
  margin: 6px 0 10px;
}
.property-body .small { color: var(--muted); font-size: 0.95rem; }
.property-body .prop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.property-body .prop-link:hover { color: var(--gold-deep); }

.section-dark .property-card { background: rgba(255, 255, 255, 0.05); border-color: var(--line-dark); }
.section-dark .property-body .small { color: #a9b9cc; }
.section-dark .property-body h3 { color: #fff; }
.section-dark .property-body .prop-link { color: #fff; }
.section-dark .price { color: var(--gold); }

/* ---------- Process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.step { padding: 44px 32px; border-right: 1px solid var(--line); position: relative; transition: background 0.3s; }
.step:last-child { border-right: 0; }
.step:hover { background: var(--gold-tint); }
.step .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Values ---------- */
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.value-item:last-child { border-bottom: 0; }
.value-item .v-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.15rem;
  flex: none;
  width: 34px;
}
.value-item h3 { font-size: 1.18rem; margin-bottom: 4px; }
.value-item p { color: var(--muted); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  color: #fff;
  text-align: center;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(3, 11, 21, 0.88), rgba(7, 21, 39, 0.88));
}
.cta-band h2 { color: #fff; max-width: 760px; margin: 0 auto 20px; }
.cta-band p { color: #b9c7d8; max-width: 560px; margin: 0 auto 38px; font-size: 1.1rem; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 130px 0 100px;
  background-size: cover;
  background-position: center 30%;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(3, 11, 21, 0.95) 30%, rgba(7, 21, 39, 0.72));
}
.page-hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 4.2rem); margin-bottom: 14px; }
.page-hero .crumbs {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9fb0c4;
  margin-bottom: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { color: var(--gold); }
.page-hero p { color: #c3cfdd; max-width: 620px; font-size: 1.12rem; }

/* ---------- Forms ---------- */
.quote-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  border-top: 3px solid var(--gold);
  display: grid;
  gap: 20px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field label .req { color: var(--gold-deep); }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9d3c6;
  border-radius: 3px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fcfbf8;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 166, 63, 0.18);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-status { display: none; padding: 16px 20px; border-radius: 3px; font-weight: 600; font-size: 0.95rem; }
.form-status.ok { display: block; background: #eef7ee; color: #1e5631; border: 1px solid #bfe0c5; }
.form-status.err { display: block; background: #fbeeee; color: #8a2323; border: 1px solid #ecc8c8; }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.contact-card .c-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
}
.contact-card .c-icon svg { width: 24px; height: 24px; }
.contact-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.contact-card p, .contact-card a.line { color: var(--muted); display: block; font-size: 1rem; }
.contact-card a.line:hover { color: var(--gold-deep); }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #9fb0c4;
  padding: 80px 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-grid h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-top: 10px;
}
.footer-brand .logo-word { font-size: 28px; }
.footer-brand p { margin-top: 16px; max-width: 34ch; color: #8496ab; }
.footer-grid a { display: block; margin: 10px 0; color: #9fb0c4; transition: color 0.2s, padding-left 0.2s; }
.footer-grid a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li {
  list-style: none;
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: 5px; }
.footer-contact a { display: inline; margin: 0; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #6d7f95;
}
.copyright a:hover { color: var(--gold); }

/* ---------- Floating actions ---------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(18, 140, 78, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.whatsapp-fab:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(18, 140, 78, 0.55); }
.whatsapp-fab svg { width: 20px; height: 20px; }

.to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.to-top svg { width: 16px; height: 16px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .cta-band { background-attachment: scroll; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-split { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 560px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 84vw);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 110px 36px 36px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 15px; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .main-nav .nav-cta { margin-top: 18px; text-align: center; justify-content: center; display: inline-flex; width: 100%; }
  .nav-toggle { display: flex; z-index: 1001; }
  .cta-band { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  section { padding: 72px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero .container { padding: 90px 0 130px; }
  .quote-form { padding: 30px 22px; }
  .stats-strip .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 26px 14px; }
  .stat strong { font-size: 2rem; }
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { padding: 15px; border-radius: 50%; }
  .about-badge { right: 8px; bottom: 20px; padding: 18px 22px; }
  .hero-scroll { display: none; }
}
