/* =============================================================
   ZATZ PARTNERS — Main Stylesheet
   ============================================================= */

/* --- Variables ------------------------------------------------ */
:root {
  --navy:       #0a1628;
  --navy-2:     #162440;
  --navy-3:     #1e3a5f;
  --gold:       #c9a96e;
  --gold-2:     #b8924f;
  --gold-3:     #e8d5b7;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --grey-1:     #f0ede6;
  --grey-2:     #e2ddd5;
  --grey-3:     #9e9a93;
  --grey-4:     #5a574f;
  --text:       #1a1814;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --t:          0.4s var(--ease);
  --t-slow:     0.7s var(--ease);

  --nav-h:    80px;
  --max-w:    1280px;
  --gutter:   clamp(1.25rem, 4vw, 3.5rem);
}

/* --- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { border: none; background: none; font: inherit; cursor: none; }
select { appearance: none; -webkit-appearance: none; border: none; background: none; font: inherit; cursor: pointer; outline: none; color: inherit; }
input, textarea { font: inherit; }

/* --- Typography ----------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
em { font-style: italic; color: var(--gold-2); }

.label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-title { line-height: 1.1; margin-bottom: 1.4rem; }
.section-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-4);
  max-width: 580px;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.section-header .section-body { margin: 0 auto; }

/* --- Layout --------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(4.5rem, 11vw, 9rem) 0; }

/* --- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.88rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background var(--t), color var(--t), border-color var(--t), transform 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold     { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-2); }

.btn--dark     { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-2); }

.btn--outline  { border: 1.5px solid var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

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

.btn--ghost    { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }

.btn--sm  { padding: 0.62rem 1.5rem; font-size: 0.72rem; }
.btn--lg  { padding: 1.05rem 2.8rem; font-size: 0.82rem; }

/* --- Custom Cursor -------------------------------------------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.2s;
  will-change: left, top;
}
.cursor-follower {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, opacity 0.2s;
  opacity: 0.6;
  will-change: left, top;
}
.cursor.is-hover { transform: translate(-50%,-50%) scale(0); }
.cursor-follower.is-hover { width: 56px; height: 56px; opacity: 1; }

/* --- Loader --------------------------------------------------- */
.loader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 2rem;
}
.loader__logo span { color: var(--gold); }
.loader__bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loader-fill 1.4s var(--ease) forwards;
}
@keyframes loader-fill {
  to { width: 100%; }
}

/* --- Navigation ----------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, box-shadow 0.5s;
}
.nav.is-scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: calc(var(--max-w) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  gap: 1rem;
}
.nav__logo-text {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
}
.nav__logo-accent { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--t);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav__has-dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 220px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  padding: 0.4rem 0;
}
.nav__has-dropdown:hover .nav__dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t), background var(--t);
}
.nav__dropdown-item:hover { color: var(--gold); background: rgba(255,255,255,0.03); }
.nav__chevron { font-size: 0.6rem; vertical-align: middle; }

.nav__actions {
  display: flex; align-items: center; gap: 1.5rem;
  flex-shrink: 0;
}
.nav__phone {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
}
.nav__phone:hover { color: var(--gold); }

.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--t);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__inner {
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem;
}
.mobile-menu__list { display: flex; flex-direction: column; }
.mobile-menu__list li a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: rgba(255,255,255,0.8);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t);
}
.mobile-menu__list li a:hover { color: var(--gold); }
.mobile-menu__phone {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2.5rem;
  transition: color var(--t);
}

/* --- Hero ----------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1920&q=85')
    center / cover no-repeat;
  transform: scale(1.06);
  transition: transform 10s ease;
  will-change: transform;
}
.hero__bg-img.is-loaded { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.65) 55%,
    rgba(10,22,40,0.4) 100%
  );
}
.hero__body {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 0;
  flex: 1;
  display: flex; align-items: center;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s var(--ease) 0.25s;
}
.hero__eyebrow.is-in { opacity: 1; transform: none; }
.hero__title {
  display: flex; flex-direction: column;
  margin-bottom: 1.8rem;
}
.hero__line {
  display: block;
  color: var(--white);
  opacity: 0; transform: translateY(55px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.hero__line.italic { font-style: italic; color: var(--gold-3); }
.hero__line.is-in  { opacity: 1; transform: none; }
.hero__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.6rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease);
}
.hero__sub.is-in { opacity: 1; transform: none; }
.hero__cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease);
}
.hero__cta-row.is-in { opacity: 1; transform: none; }

/* Search bar */
.hero__search-wrap {
  position: relative; z-index: 2;
  margin-top: auto;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 1s, transform 0.7s var(--ease) 1s;
}
.hero__search-wrap.is-in { opacity: 1; transform: none; }
.search-bar {
  display: flex;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  max-width: var(--max-w);
  margin: 0 auto;
  box-shadow: 0 -8px 60px rgba(0,0,0,0.25);
}
.search-bar__field {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 1.1rem 1.8rem;
  gap: 0.25rem;
}
.search-bar__field label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-3);
}
.search-bar__field select {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.search-bar__sep {
  width: 1px; background: var(--grey-2);
  margin: 0.8rem 0;
}
.search-bar__btn {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--navy); color: var(--white);
  padding: 0 2.2rem;
  font-family: var(--sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.search-bar__btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.search-bar__btn:hover { background: var(--navy-3); }

.hero__scroll-hint {
  position: absolute;
  right: var(--gutter); bottom: 8rem;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.38));
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* --- Marquee -------------------------------------------------- */
.marquee {
  background: var(--gold);
  overflow: hidden;
  padding: 0.8rem 0;
}
.marquee__track { display: flex; }
.marquee__row {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marqueeLTR 28s linear infinite;
}
.marquee__row span {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
}
.marquee__sep { opacity: 0.4; font-size: 0.55rem !important; }
@keyframes marqueeLTR {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Services ------------------------------------------------- */
.services { background: var(--off-white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.s-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t);
}
.s-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.s-card:hover::after { transform: scaleX(1); }
.s-card:hover { box-shadow: 0 16px 56px rgba(10,22,40,0.07); }
.s-card__num {
  position: absolute; top: 1.4rem; right: 1.8rem;
  font-family: var(--serif); font-size: 4.5rem;
  color: var(--grey-1); line-height: 1; font-weight: 300;
  pointer-events: none;
}
.s-card__icon { width: 46px; height: 46px; color: var(--gold-2); }
.s-card__title { font-size: 1.35rem; color: var(--navy); line-height: 1.15; }
.s-card__text  { font-size: 0.875rem; line-height: 1.82; color: var(--grey-4); }
.s-card__list  { display: flex; flex-direction: column; gap: 0.38rem; }
.s-card__list li {
  font-size: 0.78rem; color: var(--grey-4);
  padding-left: 1rem; position: relative;
}
.s-card__list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.7rem;
}
.s-card__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin-top: auto;
  transition: color var(--t), gap var(--t);
}
.s-card__cta:hover { color: var(--gold-2); gap: 0.75rem; }

/* --- About ---------------------------------------------------- */
.about { background: var(--white); overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about__visual { position: relative; overflow: hidden; }
.about__img {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=900&q=80')
    center / cover no-repeat;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}
.about__visual:hover .about__img { transform: scale(1.04); }
.about__badge {
  position: absolute; bottom: 2rem; right: -1px;
  background: var(--gold);
  padding: 2rem 2.5rem;
  text-align: center;
  z-index: 2;
}
.about__badge-num {
  display: block;
  font-family: var(--serif); font-size: 3.5rem;
  color: var(--navy); line-height: 1; font-weight: 300;
}
.about__badge-text {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); margin-top: 0.4rem;
}
.about__copy {
  padding: clamp(3rem, 8vw, 6rem);
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.4rem;
  background: var(--off-white);
}
.about__para { font-size: 0.95rem; line-height: 1.88; color: var(--grey-4); }
.about__pillars {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
}
.pillar { display: flex; align-items: flex-start; gap: 0.9rem; }
.pillar__icon { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.15rem; }
.pillar strong {
  display: block; font-family: var(--serif);
  font-size: 1rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.15rem;
}
.pillar p { font-size: 0.82rem; line-height: 1.65; color: var(--grey-4); }

/* --- Stats ---------------------------------------------------- */
.stats { background: var(--navy); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t);
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,0.03); }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--gold); font-weight: 300; line-height: 1;
  margin-bottom: 0.7rem;
}
.stat__label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* --- Process -------------------------------------------------- */
.process { background: var(--grey-1); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.process__step { position: relative; }
.process__num {
  font-family: var(--serif);
  font-size: 3rem; color: var(--gold);
  font-weight: 300; line-height: 1;
  margin-bottom: 1.5rem;
}
.process__connector {
  position: absolute;
  top: 1.4rem; left: 3.2rem; right: -1.2rem;
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,0.5), transparent);
}
.process__step:last-child .process__connector { display: none; }
.process__step h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.7rem; }
.process__step p  { font-size: 0.85rem; line-height: 1.82; color: var(--grey-4); }

/* --- International -------------------------------------------- */
.international {
  position: relative;
  padding: clamp(5rem, 14vw, 11rem) 0;
  overflow: hidden;
}
.international__bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80')
    center / cover no-repeat;
  transform: translateZ(0);
  will-change: transform;
}
.international__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(10,22,40,0.76));
}
.international__body { position: relative; z-index: 1; }
.international__sub {
  font-size: 1rem; line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 500px; margin-top: 0.5rem;
}
.market-tags {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 2rem;
}
.mtag {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold-3);
  transition: background var(--t), border-color var(--t), color var(--t);
  cursor: default;
}
.mtag:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* --- Split CTA ------------------------------------------------ */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; }
.split-cta__panel {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) clamp(2rem, 6vw, 5rem);
  background: var(--navy-2);
  overflow: hidden;
}
.split-cta__panel--r { background: var(--navy-3); }
.split-cta__bg {
  position: absolute; inset: 0; opacity: 0.06;
  transition: opacity var(--t-slow);
  background-size: cover; background-position: center;
}
.split-cta__bg--l { background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=800&q=40'); }
.split-cta__bg--r { background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=800&q=40'); }
.split-cta__panel:hover .split-cta__bg { opacity: 0.14; }
.split-cta__content { position: relative; z-index: 1; }
.split-cta__content .label { margin-bottom: 0.8rem; }
.split-cta__content h3 { color: var(--white); margin-bottom: 1.1rem; line-height: 1.2; }
.split-cta__content p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.82; margin-bottom: 2rem; max-width: 380px; }

/* --- Contact CTA band ----------------------------------------- */
.cta-band { background: var(--grey-1); }
.cta-band__inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-band__inner .label { margin-bottom: 0.8rem; }
.cta-band__sub { font-size: 1rem; line-height: 1.8; color: var(--grey-4); margin-bottom: 2.5rem; }
.cta-band__btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* --- Footer --------------------------------------------------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.55); }
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
}
.footer__logo {
  font-family: var(--sans); font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--white); margin-bottom: 0.8rem;
}
.footer__logo span { color: var(--gold); }
.footer__strapline {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer__about { font-size: 0.85rem; line-height: 1.8; max-width: 260px; margin-bottom: 1.4rem; }
.footer__tel { font-size: 0.88rem; color: var(--gold); transition: color var(--t); }
.footer__tel:hover { color: var(--gold-3); }
.footer__col h5 {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.4rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col li, .footer__col a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer__col a:hover { color: var(--gold); }
.footer__socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.fsocial {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--t), color var(--t);
}
.fsocial:hover { border-color: var(--gold); color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
}
.footer__legal { display: flex; gap: 2rem; }
.footer__legal a { color: rgba(255,255,255,0.38); transition: color var(--t); }
.footer__legal a:hover { color: var(--gold); }

/* --- Scroll Reveal -------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-up.is-revealed { opacity: 1; transform: none; }

/* --- Inner Pages (shared layout) ------------------------------ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--navy);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.08);
}
.page-hero__label  { color: var(--gold); margin-bottom: 1rem; }
.page-hero__title  { color: var(--white); margin-bottom: 1.2rem; }
.page-hero__sub    { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,0.65); max-width: 580px; }
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.08;
}

.content-block { padding: clamp(3.5rem, 9vw, 7rem) 0; }
.content-block--alt { background: var(--off-white); }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.two-col__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.two-col__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.two-col__img:hover img { transform: scale(1.04); }

.feature-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.9rem; line-height: 1.75; color: var(--grey-4);
}
.feature-list li::before {
  content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; margin-top: 0.4rem;
}

/* --- Responsive ----------------------------------------------- */
@media (max-width: 1100px) {
  .services__grid    { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .about__grid       { grid-template-columns: 1fr; }
  .about__visual     { min-height: 420px; }
  .about__badge      { bottom: 1.5rem; right: 1.5rem; }
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }
  .process__steps    { grid-template-columns: repeat(2, 1fr); }
  .footer__top       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 860px) {
  .nav__links, .nav__actions .btn, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .split-cta { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .search-bar { flex-direction: column; }
  .search-bar__sep { width: 100%; height: 1px; margin: 0; }
  .hero__search-wrap { position: static; margin-top: 2rem; }
  .hero { min-height: auto; padding-bottom: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 2rem 1rem; }
  .process__steps { grid-template-columns: 1fr; gap: 2rem; }
  .process__connector { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-up { opacity: 1; transform: none; }
}
