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

:root {
  --ivory: #f6f3ee;
  --ink: #0b1a2a;
  --ink-soft: rgba(11, 26, 42, 0.68);
  --gold-dust: #cca970;
  --champagne: #ead7b8;
  --porcelain: rgba(246, 243, 238, 0.78);
  --mist: rgba(255, 255, 255, 0.06);

  color-scheme: light;
  --font-primary: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-secondary: "Outfit", sans-serif;
  font-family: var(--font-primary);

  --ease-soft: cubic-bezier(0.25, 0.85, 0.25, 1);
  --ease-luxe: cubic-bezier(0.18, 0.82, 0.22, 1);
  --ease-fluid: cubic-bezier(0.2, 0.72, 0.18, 1);
}

/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--ivory);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

/* =========================
   KEYFRAMES
========================= */

@keyframes glassReveal {
  from {
    opacity: 0;
    transform: translate3d(-50%, -18px, 0) scale(0.992);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes editorialReveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 28px, 0);
    filter: blur(7px);
  }
  55% {
    opacity: 1;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fineRule {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes washIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translate3d(-16px, 0, 0);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translate3d(16px, 0, 0);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes slowZoomDubai {
  0% {
    transform: scale(1.08) translate3d(-6px, 3px, 0);
  }
  50% {
    transform: scale(1.16) translate3d(14px, -10px, 0);
  }
  100% {
    transform: scale(1.1) translate3d(-10px, 8px, 0);
  }
}

@keyframes heroImageBreathe {
  from {
    filter: brightness(0.72) contrast(1.08) saturate(0.9);
  }
  to {
    filter: brightness(0.8) contrast(1.12) saturate(0.98);
  }
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.page-sections {
  position: relative;
}

.snap-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(1280px, calc(100vw - 36px));
  padding: 0 26px 0 22px;
  height: 74px;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      rgba(246, 243, 238, 0.22),
      rgba(246, 243, 238, 0.08)
    ),
    rgba(11, 26, 42, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);

  border: 1px solid rgba(246, 243, 238, 0.15);

  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);

  opacity: 0;

  animation: glassReveal 1.5s var(--ease-soft) forwards;

  transition:
    top 0.75s var(--ease-luxe),
    width 0.75s var(--ease-luxe),
    height 0.75s var(--ease-luxe),
    padding 0.75s var(--ease-luxe),
    transform 0.75s var(--ease-luxe),
    background 0.75s var(--ease-luxe),
    border-color 0.75s var(--ease-luxe),
    box-shadow 0.75s var(--ease-luxe);
}

body.header-condensed .site-header {
  top: 18px;
  height: 63px;
  padding: 0 29px 0 24px;
  transform: translateX(-50%) scale(0.85);

  background:
    linear-gradient(180deg, rgba(246, 243, 238, 0.6), rgba(246, 243, 238, 0.5)),
    rgba(246, 243, 238, 0.6);

  border-color: rgba(11, 26, 42, 0.12);

  box-shadow:
    0 18px 46px rgba(11, 26, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-header.header-ready {
  opacity: 1;
  animation: none;
  transform: translateX(-50%);
}

body.header-condensed .site-header.header-ready {
  transform: translateX(-50%) scale(0.85);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 0;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(11, 26, 42, 0.1),
    rgba(204, 169, 112, 0.35),
    transparent
  );
}

/* =========================
   LOGO
========================= */

.logo {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 6px 8px;

  opacity: 0;
  animation: fadeRight 1s var(--ease-soft) forwards;
  animation-delay: 0.7s;

  transition:
    transform 0.75s var(--ease-luxe),
    opacity 0.6s var(--ease-soft),
    filter 0.6s var(--ease-soft);
}

.logo img {
  grid-area: 1 / 1;
  display: block;
  width: clamp(211px, 13.2vw, 252px);
  height: auto;
  max-height: 132px;
  object-fit: contain;
  transition:
    width 0.75s var(--ease-luxe),
    max-height 0.75s var(--ease-luxe),
    filter 0.6s var(--ease-soft),
    opacity 0.55s var(--ease-soft),
    transform 0.75s var(--ease-luxe);
}

.logo__mark--default {
  opacity: 1;
}

.logo__mark--dark {
  opacity: 0;
}

body.header-condensed .logo__mark--default {
  opacity: 0;
}

body.header-condensed .logo__mark--dark {
  opacity: 1;
}

.logo:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.logo:hover img {
  transform: scale(1.06);
  filter: brightness(1.06) contrast(1.04);
}

body.header-condensed .logo img {
  width: clamp(130px, 10.6vw, 170px);
  max-height: 56px;
}

/* =========================
   NAV
========================= */

.nav {
  display: flex;
  gap: 30px;

  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav a {
  position: relative;

  color: var(--ivory);
  opacity: 0;

  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);

  transition:
    transform 0.5s var(--ease-soft),
    color 0.5s var(--ease-soft),
    text-shadow 0.5s var(--ease-soft),
    opacity 0.5s var(--ease-soft);
}

/* staggered reveal */
.nav a:nth-child(1) {
  animation: fadeUp 0.9s var(--ease-soft) forwards 0.8s;
}
.nav a:nth-child(2) {
  animation: fadeUp 0.9s var(--ease-soft) forwards 0.9s;
}
.nav a:nth-child(3) {
  animation: fadeUp 0.9s var(--ease-soft) forwards 1s;
}
.nav a:nth-child(4) {
  animation: fadeUp 0.9s var(--ease-soft) forwards 1.1s;
}
.nav a:nth-child(5) {
  animation: fadeUp 0.9s var(--ease-soft) forwards 1.2s;
}
.nav a:nth-child(6) {
  animation: fadeUp 0.9s var(--ease-soft) forwards 1.3s;
}

.nav a:hover {
  color: var(--gold-dust);
  transform: translateY(-2px);
  text-shadow: 0 0 24px rgba(204, 169, 112, 0.35);
}

.nav a.is-active {
  color: var(--gold-dust);
  text-shadow: 0 0 22px rgba(204, 169, 112, 0.34);
}

body.header-condensed .nav a {
  color: var(--ink);
  text-shadow: none;
}

body.header-condensed .nav a:hover {
  color: var(--gold-dust);
  text-shadow: 0 0 18px rgba(204, 169, 112, 0.25);
}

body.header-condensed .nav a.is-active {
  color: var(--gold-dust);
  text-shadow: 0 0 16px rgba(204, 169, 112, 0.22);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;

  background: var(--gold-dust);

  transform: scaleX(0);
  transform-origin: center;

  opacity: 0;

  transition:
    transform 0.6s var(--ease-soft),
    opacity 0.6s var(--ease-soft);
}

.nav a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 24;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(234, 215, 184, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(
      180deg,
      rgba(246, 243, 238, 0.11),
      rgba(246, 243, 238, 0.04)
    ),
    rgba(11, 26, 42, 0.08);
  color: var(--champagne);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.08);
  transition:
    border-color 0.32s var(--ease-soft),
    background 0.32s var(--ease-soft),
    color 0.32s var(--ease-soft),
    box-shadow 0.32s var(--ease-soft);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition:
    transform 0.32s var(--ease-soft),
    opacity 0.24s var(--ease-soft),
    top 0.32s var(--ease-soft);
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

body.header-condensed .menu-toggle {
  border-color: rgba(204, 169, 112, 0.28);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.7),
      rgba(246, 243, 238, 0.42)
    ),
    rgba(246, 243, 238, 0.52);
  color: var(--gold-dust);
}

.menu-toggle:hover {
  border-color: rgba(204, 169, 112, 0.48);
  color: var(--gold-dust);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(204, 169, 112, 0.12);
}

body.menu-open .menu-toggle {
  border-color: rgba(204, 169, 112, 0.52);
  background: linear-gradient(
    145deg,
    rgba(234, 215, 184, 0.98),
    rgba(204, 169, 112, 0.92)
  );
  color: var(--ink);
}

body.menu-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================
   CTA BUTTON
========================= */

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 12px 18px;

  border-radius: 999px;
  border: 1px solid rgba(204, 169, 112, 0.5);

  font-family: var(--font-secondary);
  font-size: 0.858rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;

  background: linear-gradient(
    145deg,
    rgba(11, 26, 42, 0.98),
    rgba(19, 35, 53, 0.95)
  );
  color: var(--ivory);

  opacity: 0;
  animation: fadeLeft 1s var(--ease-soft) forwards 1.1s;

  cursor: pointer;

  transition:
    transform 0.5s var(--ease-soft),
    background 0.5s var(--ease-soft),
    box-shadow 0.5s var(--ease-soft);
}

.header-cta:hover {
  background: linear-gradient(145deg, #d7b67f, #b88f54);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(204, 169, 112, 0.28);
}

/* =========================
   VIDEO BACKGROUND
========================= */

.city-reel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.city-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.city-panel::before,
.city-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.city-panel::before {
  background:
    radial-gradient(
      circle at center,
      transparent 34%,
      rgba(3, 10, 18, 0.56) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 10, 18, 0.24),
      transparent 34%,
      rgba(3, 10, 18, 0.3)
    );
  mix-blend-mode: multiply;
}

.city-panel::after {
  opacity: 0.28;
  background:
    radial-gradient(
      circle at 58% 34%,
      rgba(234, 215, 184, 0.24),
      transparent 30%
    ),
    linear-gradient(120deg, rgba(204, 169, 112, 0.14), transparent 48%);
  mix-blend-mode: soft-light;
}

.city-panel picture {
  display: block;
  width: 100%;
  height: 100%;
}

.city-panel img,
.city-panel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;

  filter: brightness(0.74) contrast(1.08) saturate(0.86);

  will-change: transform;
  transform-origin: center right;

  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 34s;
}

.city-panel img {
  animation-name: slowZoomDubai, heroImageBreathe;
  animation-duration: 34s, 8s;
}

/* =========================
   OVERLAYS
========================= */

.cinema-wash {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;

  opacity: 0;
  animation: washIn 1.8s ease-out forwards 0.2s;

  background:
    linear-gradient(
      90deg,
      rgba(11, 26, 42, 0.48),
      rgba(11, 26, 42, 0.08) 42%,
      rgba(11, 26, 42, 0.34)
    ),
    radial-gradient(
      circle at 28% 68%,
      rgba(234, 215, 184, 0.12),
      transparent 34%
    ),
    radial-gradient(circle at center, transparent 18%, rgba(11, 26, 42, 0.34));
}

.grain {
  position: absolute;
  inset: -10%;
  z-index: 6;
  pointer-events: none;

  opacity: 0.02;
  mix-blend-mode: multiply;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");

  background-size: 200px 200px;
}

/* =========================
   HERO COPY
========================= */

.hero-copy {
  position: absolute;
  left: clamp(22px, 4.5vw, 72px);
  bottom: clamp(48px, 8vh, 86px);
  z-index: 10;

  width: min(560px, calc(100vw - 44px));
  color: var(--ivory);
}

.hero-copy::before {
  content: "";
  display: block;
  width: min(216px, 42vw);
  height: 1px;
  margin-bottom: 16px;
  transform-origin: left;
  opacity: 0;

  background: linear-gradient(90deg, var(--champagne), rgba(246, 243, 238, 0));
  animation: fineRule 1.35s var(--ease-luxe) forwards 1.36s;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;

  margin: 0 0 10px;

  font-family: var(--font-secondary);
  font-size: 0.809rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;

  opacity: 0;
  animation: fadeUp 1.1s var(--ease-luxe) forwards 1.46s;

  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.eyebrow span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dust);
  box-shadow: 0 0 16px rgba(204, 169, 112, 0.48);
}

.hero-title {
  margin: 0;

  font-weight: 300;
  line-height: 0.98;

  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.title-line {
  display: block;
  width: auto;
  max-width: 100%;

  font-size: 2.85rem;
  letter-spacing: 0;

  opacity: 0;
  animation: editorialReveal 1.35s var(--ease-luxe) forwards;
}

.title-line:nth-child(1) {
  animation-delay: 1.72s;
}

.title-line:nth-child(2) {
  animation-delay: 1.9s;
}

.title-line:nth-child(3) {
  animation-delay: 2.08s;
}

.title-line--primary {
  font-size: 3.25rem;
  font-weight: 500;
}

.title-line--accent {
  margin-top: 6px;
  color: var(--champagne);
  font-style: italic;
  font-weight: 400;
}

.hero-subcopy {
  width: min(430px, 100%);
  margin: 14px 0 0;
  font-family: var(--font-secondary);
  font-size: 0.956rem;
  line-height: 1.5;
  color: rgba(246, 243, 238, 0.82);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);

  opacity: 0;
  animation: fadeUp 1.15s var(--ease-luxe) forwards 2.22s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;

  opacity: 0;
  animation: fadeUp 1.1s var(--ease-luxe) forwards 2.38s;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid rgba(234, 215, 184, 0.48);
  border-radius: 999px;
  background: rgba(246, 243, 238, 0.08);
  color: var(--ivory);

  font-family: var(--font-secondary);
  font-size: 0.809rem;
  font-weight: 700;
  text-transform: uppercase;

  transition:
    transform 0.5s var(--ease-soft),
    background 0.5s var(--ease-soft),
    color 0.5s var(--ease-soft);
}

.hero-button:hover {
  transform: translateY(-2px);
  background: var(--champagne);
  color: var(--ink);
}

.hero-button--primary {
  background: var(--ink);
  color: var(--champagne);
}

/* =========================
   CONTENT SECTIONS
========================= */

.section-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 46px;
  width: min(1180px, calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  padding-top: 108px;
  padding-bottom: 54px;
}

.section-heading {
  max-width: 760px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;

  font-family: var(--font-secondary);
  font-size: 0.956rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dust), transparent);
}

.section-heading h2 {
  margin: 0;
  font-size: 4.45rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-deck {
  width: min(620px, 100%);
  margin: 20px 0 0;
  font-family: var(--font-secondary);
  font-size: 1.201rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.markets-section .section-deck,
.about-section .section-deck,
.contact-section .section-deck {
  color: var(--porcelain);
}

.services-section,
.opportunities-section,
.insights-section {
  background: linear-gradient(
    180deg,
    rgba(246, 243, 238, 0.98),
    rgba(236, 229, 216, 0.96)
  );
  color: var(--ink);
}

.markets-section::before,
.services-section::before,
.about-section::before,
.insights-section::before,
.contact-section::before,
.opportunities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.markets-section::before,
.services-section::before,
.opportunities-section::before,
.insights-section::before {
  background:
    linear-gradient(90deg, rgba(11, 26, 42, 0.08), transparent 36%),
    radial-gradient(
      circle at 78% 22%,
      rgba(204, 169, 112, 0.15),
      transparent 26%
    );
}

.flipbox-face,
.opportunity-grid article,
.insight-carousel,
.contact-options,
.map-visual {
  border-radius: 8px;
}

.market-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  perspective: 1400px;
}

.market-flip .flipbox-face {
  min-height: 350px;
}

.market-flagline {
  display: flex;
  align-items: center;
  gap: 13px;
}

.market-flagline img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(11, 26, 42, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(11, 26, 42, 0.12);
}

.market-flagline span {
  font-family: var(--font-secondary);
  font-size: 1.054rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-dust);
}

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

.market-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(11, 26, 42, 0.12);
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 0.833rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(11, 26, 42, 0.58);
}

.flipbox-back p {
  margin: 16px 0 0;
  font-family: var(--font-secondary);
  font-size: 1.102rem;
  line-height: 1.5;
  color: var(--porcelain);
}

.opportunity-grid span {
  display: block;
  margin-top: 28px;
  font-family: var(--font-secondary);
  font-size: 0.956rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-dust);
}

.opportunity-grid p {
  margin: 18px 0 0;
  font-family: var(--font-secondary);
  font-size: 1.152rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.flipbox {
  min-height: 330px;
  outline: none;
}

.flipbox-inner {
  position: relative;
  height: 100%;
  min-height: 330px;
  transform-style: preserve-3d;
  transition: transform 900ms var(--ease-luxe);
}

.flipbox:hover .flipbox-inner,
.flipbox:focus .flipbox-inner,
.flipbox:focus-within .flipbox-inner {
  transform: rotateY(180deg);
}

.flipbox-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;

  border: 1px solid rgba(11, 26, 42, 0.12);
  backface-visibility: hidden;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.7),
      rgba(246, 243, 238, 0.32)
    ),
    rgba(246, 243, 238, 0.68);
  box-shadow:
    0 28px 70px rgba(11, 26, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.flipbox-face::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  height: 1px;
  opacity: 0.55;
  background: linear-gradient(90deg, var(--gold-dust), transparent);
}

.flipbox-back {
  transform: rotateY(180deg);
  background: linear-gradient(
    160deg,
    rgba(11, 26, 42, 0.97),
    rgba(17, 37, 55, 0.93)
  );
  color: var(--ivory);
}

.flipbox h3 {
  margin: 0;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.flipbox-back h3 {
  color: var(--champagne);
}

.flipbox-back ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-secondary);
  font-size: 1.139rem;
  line-height: 1.48;
}

.flipbox-back li {
  position: relative;
  padding-left: 18px;
}

.flipbox-back li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--gold-dust);
}

.markets-section,
.about-section {
  background:
    linear-gradient(135deg, rgba(11, 26, 42, 0.97), rgba(17, 37, 55, 0.92)),
    var(--ink);
  color: var(--ivory);
}

.markets-section::before,
.about-section::before {
  background:
    linear-gradient(90deg, rgba(234, 215, 184, 0.08), transparent 38%),
    radial-gradient(
      circle at 18% 72%,
      rgba(204, 169, 112, 0.15),
      transparent 24%
    );
}

.services-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(11, 26, 42, 0.16);
}

.services-list article {
  display: grid;
  grid-template-columns: 44px minmax(150px, 0.48fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 26, 42, 0.16);
}

.services-list span {
  font-family: var(--font-secondary);
  font-size: 0.907rem;
  font-weight: 700;
  color: var(--gold-dust);
}

.services-list h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.services-list p {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1.127rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.services-shell {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.services-shell .section-heading {
  max-width: none;
}

.services-shell .section-heading .section-kicker,
.services-shell .section-heading h2,
.services-shell .section-heading .section-deck {
  grid-column: 1;
}

.services-static-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  width: 100%;
  padding: 10px 0 18px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 438px;
  overflow: hidden;
  align-content: end;
  padding: 20px;
  border: 1px solid rgba(11, 26, 42, 0.1);
  border-radius: 8px;
  background: var(--service-image) center / cover;
  color: var(--ivory);
  isolation: isolate;
  box-shadow:
    0 28px 70px rgba(11, 26, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.7s var(--ease-luxe),
    border-color 0.5s var(--ease-soft),
    box-shadow 0.5s var(--ease-soft);
}

.service-card::before,
.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.service-card::before {
  z-index: -2;
  background: inherit;
  filter: brightness(0.72) contrast(1.08) saturate(0.86);
  transform: scale(1.05);
  transition:
    transform 0.9s var(--ease-luxe),
    filter 0.7s var(--ease-soft);
}

.service-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.06), rgba(5, 13, 22, 0.88)),
    linear-gradient(90deg, rgba(11, 26, 42, 0.76), rgba(11, 26, 42, 0.18));
  transition: background 0.55s var(--ease-soft);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(204, 169, 112, 0.5);
  transform: translateY(-6px);
  box-shadow:
    0 36px 86px rgba(11, 26, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  filter: brightness(0.78) contrast(1.14) saturate(0.98);
  transform: scale(1.13);
}

.service-card__body {
  display: grid;
  gap: 10px;
  transform: translateY(54px);
  transition: transform 0.68s var(--ease-luxe);
}

.service-card:hover .service-card__body,
.service-card:focus-visible .service-card__body,
.service-card:focus-within .service-card__body {
  transform: translateY(0);
}

.service-card__body p {
  margin: 0;
  color: var(--champagne);
  font-family: var(--font-secondary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.service-card__summary,
.service-card__reveal {
  display: block;
  font-family: var(--font-secondary);
  line-height: 1.48;
}

.service-card__summary {
  color: rgba(246, 243, 238, 0.82);
  font-size: 0.88rem;
}

.service-card__reveal {
  max-height: 0;
  overflow: hidden;
  color: rgba(246, 243, 238, 0.78);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.72s var(--ease-luxe),
    opacity 0.52s var(--ease-soft),
    transform 0.52s var(--ease-soft);
}

.service-card:hover .service-card__reveal,
.service-card:focus-visible .service-card__reveal,
.service-card:focus-within .service-card__reveal {
  max-height: 132px;
  opacity: 1;
  transform: translateY(0);
}

.service-card__button {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-top: 2px;
  padding: 8px 12px;
  border: 1px solid rgba(234, 215, 184, 0.3);
  border-radius: 999px;
  background: rgba(246, 243, 238, 0.08);
  color: var(--champagne);
  font-family: var(--font-secondary);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.52s var(--ease-soft),
    transform 0.52s var(--ease-soft),
    background 0.42s var(--ease-soft),
    color 0.42s var(--ease-soft);
}

.service-card:hover .service-card__button,
.service-card:focus-visible .service-card__button,
.service-card:focus-within .service-card__button {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card__button,
.service-card:focus-visible .service-card__button {
  background: var(--champagne);
  color: var(--ink);
}

.market-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.market-card {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  border: 1px solid rgba(234, 215, 184, 0.14);
  border-radius: 8px;
  background: rgba(246, 243, 238, 0.04);
  color: var(--ivory);
  isolation: isolate;
  outline: none;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.65s var(--ease-luxe),
    border-color 0.55s var(--ease-soft),
    box-shadow 0.55s var(--ease-soft);
}

.market-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--market-image) center / cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.72);
  transform: scale(1.04);
  transition:
    transform 0.9s var(--ease-luxe),
    filter 0.7s var(--ease-soft);
}

.market-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.16), rgba(5, 13, 22, 0.91)),
    linear-gradient(90deg, rgba(11, 26, 42, 0.76), rgba(11, 26, 42, 0.12));
}

.market-card:hover,
.market-card:focus-within,
.market-card:focus-visible {
  border-color: rgba(204, 169, 112, 0.48);
  transform: translateY(-6px);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.market-card:hover .market-card__media,
.market-card:focus-within .market-card__media,
.market-card:focus-visible .market-card__media {
  filter: saturate(0.96) contrast(1.14) brightness(0.82);
  transform: scale(1.12);
}

.market-card__content {
  display: grid;
  height: 100%;
  align-content: end;
  gap: 14px;
  padding: 24px;
  transform: translateY(54px);
  transition: transform 0.68s var(--ease-luxe);
}

.market-card:hover .market-card__content,
.market-card:focus-within .market-card__content,
.market-card:focus-visible .market-card__content {
  transform: translateY(0);
}

.market-card__heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234, 215, 184, 0.28);
}

.market-card__heading img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(234, 215, 184, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.market-card__heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-family: var(--font-secondary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.market-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.market-card p {
  min-height: 64px;
  margin: 0;
  color: rgba(246, 243, 238, 0.74);
  font-family: var(--font-secondary);
  font-size: 0.86rem;
  line-height: 1.48;
}

.market-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    max-height 0.72s var(--ease-luxe),
    opacity 0.55s var(--ease-soft),
    transform 0.55s var(--ease-soft);
}

.market-card:hover .market-card__services,
.market-card:focus-within .market-card__services,
.market-card:focus-visible .market-card__services {
  max-height: 116px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.market-card__services a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(234, 215, 184, 0.2);
  border-radius: 999px;
  background: rgba(246, 243, 238, 0.08);
  color: var(--porcelain);
  font-family: var(--font-secondary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.48s var(--ease-soft),
    transform 0.48s var(--ease-soft),
    background 0.42s var(--ease-soft),
    border-color 0.42s var(--ease-soft),
    color 0.42s var(--ease-soft);
}

.market-card:hover .market-card__services a,
.market-card:focus-within .market-card__services a,
.market-card:focus-visible .market-card__services a {
  opacity: 1;
  transform: translateY(0);
}

.market-card__services a:nth-child(2) {
  transition-delay: 0.03s;
}
.market-card__services a:nth-child(3) {
  transition-delay: 0.06s;
}
.market-card__services a:nth-child(4) {
  transition-delay: 0.09s;
}

.market-card__services a:hover,
.market-card__services a:focus-visible {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--ink);
}

.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.08) saturate(0.82);
  transform: scale(1.06);
}

.about-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.about-experience {
  display: grid;
  gap: 18px;
}

.about-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-media-grid article {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(11, 26, 42, 0.12);
  border-radius: 8px;
  background: var(--ink);
}

.about-media-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition:
    transform 0.85s var(--ease-luxe),
    filter 0.85s var(--ease-luxe);
}

.about-media-grid article:hover video {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1);
}

.about-media-grid span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: var(--ivory);
  font-family: var(--font-secondary);
  font-size: 0.882rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.about-accordion {
  border-top: 1px solid rgba(234, 215, 184, 0.18);
}

.about-accordion details {
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 215, 184, 0.18);
}

.about-accordion summary {
  cursor: pointer;
  padding: 16px 0;
  list-style: none;
  font-family: var(--font-secondary);
  font-size: 1.004rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ivory);
}

.about-accordion summary::-webkit-details-marker {
  display: none;
}

.about-accordion summary::after {
  content: "+";
  float: right;
  color: var(--gold-dust);
}

.about-accordion details[open] summary::after {
  content: "-";
}

.about-accordion p {
  margin: 0 0 16px;
  font-family: var(--font-secondary);
  font-size: 1.078rem;
  line-height: 1.55;
  color: var(--porcelain);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.42s var(--ease-soft),
    transform 0.42s var(--ease-soft);
}

.about-accordion details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.opportunity-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(11, 26, 42, 0.12);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.opportunity-grid span {
  margin-top: 0;
}

.insight-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 26, 42, 0.12);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.78),
      rgba(246, 243, 238, 0.5)
    ),
    rgba(246, 243, 238, 0.72);
  box-shadow:
    0 28px 70px rgba(11, 26, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.insight-track {
  display: flex;
  transition: transform 0.85s var(--ease-luxe);
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  min-width: 100%;
  padding: 28px;
  opacity: 0.58;
  transition: opacity 0.65s var(--ease-soft);
}

.insight-card.is-current {
  opacity: 1;
}

.insight-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.82) contrast(1.05) saturate(0.9);
}

.insight-card span {
  font-family: var(--font-secondary);
  font-size: 0.931rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-dust);
}

.insight-card h3 {
  margin: 18px 0 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.insight-card p {
  margin: 22px 0 0;
  font-family: var(--font-secondary);
  font-size: 1.201rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11, 26, 42, 0.16);
  border-radius: 50%;
  background: rgba(11, 26, 42, 0.9);
  color: var(--champagne);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(11, 26, 42, 0.16);
}

.carousel-button--prev {
  left: 16px;
}

.carousel-button--next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(11, 26, 42, 0.22);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--gold-dust);
}

.insights-section .section-heading h2 {
  color: var(--ink);
}

.insights-section .section-deck {
  color: var(--ink-soft);
}

.contact-section {
  background: var(--ink);
  color: var(--ivory);
}

.contact-section::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 26, 42, 0.08), rgba(11, 26, 42, 0.88)),
    radial-gradient(
      circle at 18% 72%,
      rgba(234, 215, 184, 0.1),
      transparent 28%
    );
}

.contact-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.contact-intro {
  margin: 24px 0 0;
  font-family: var(--font-secondary);
  font-size: 1.225rem;
  color: var(--porcelain);
}

.contact-note {
  width: min(420px, 100%);
  margin-top: 34px;
}

.contact-note {
  padding: 22px;
  border: 1px solid rgba(234, 215, 184, 0.18);
  border-radius: 8px;
  background: rgba(246, 243, 238, 0.08);
}

.contact-note span,
.form-head span {
  font-family: var(--font-secondary);
  font-size: 0.882rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-dust);
}

.contact-note strong {
  display: block;
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ivory);
}

.contact-options {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(234, 215, 184, 0.18);
  background: rgba(246, 243, 238, 0.08);
  backdrop-filter: blur(12px);
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(234, 215, 184, 0.16);
}

.contact-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(234, 215, 184, 0.14);
  transition:
    color 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(204, 169, 112, 0.34);
  border-radius: 50%;
  color: var(--champagne);
  background: rgba(246, 243, 238, 0.06);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-option-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-option:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-option-copy span {
  font-family: var(--font-secondary);
  font-size: 0.882rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-dust);
}

.contact-option-copy strong {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.08;
  color: var(--ivory);
}

a.contact-option:hover {
  transform: translateX(6px);
}

.contact-option:hover .contact-icon {
  color: var(--ink);
  background: var(--champagne);
  border-color: var(--champagne);
}

.contact-option--whatsapp strong {
  color: var(--champagne);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 26, 42, 0.98), rgba(5, 13, 22, 0.98)),
    var(--ink);
  color: var(--ivory);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(204, 169, 112, 0.16), transparent 34%),
    radial-gradient(
      circle at 82% 18%,
      rgba(234, 215, 184, 0.12),
      transparent 24%
    );
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(260px, 1.15fr)
    minmax(180px, 0.72fr)
    repeat(3, minmax(138px, 0.78fr));
  gap: 18px;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 72px 0 46px;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  transition:
    transform 0.75s var(--ease-luxe),
    filter 0.6s var(--ease-soft);
}

.footer-logo img {
  display: block;
  width: clamp(226px, 18.4vw, 310px);
  height: auto;
  max-height: 250px;
  object-fit: contain;
  transition:
    transform 0.75s var(--ease-luxe),
    filter 0.6s var(--ease-soft);
}

.footer-logo:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
}

.footer-logo:hover img {
  transform: scale(1.1);
  filter: brightness(1.08) contrast(1.04);
}

.footer-brand p {
  width: min(430px, 100%);
  margin: 0 auto;
  font-family: var(--font-secondary);
  font-size: 1.201rem;
  line-height: 1.65;
  text-align: center;
  color: var(--porcelain);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(234, 215, 184, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(246, 243, 238, 0.06),
      rgba(246, 243, 238, 0.025)
    ),
    rgba(246, 243, 238, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 48px rgba(0, 0, 0, 0.08);
  transition:
    border-color 0.45s var(--ease-soft),
    background 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft),
    box-shadow 0.45s var(--ease-soft);
}

.footer-links:hover,
.footer-market[open] {
  border-color: rgba(204, 169, 112, 0.28);
  background:
    linear-gradient(
      180deg,
      rgba(234, 215, 184, 0.1),
      rgba(246, 243, 238, 0.035)
    ),
    rgba(246, 243, 238, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 54px rgba(0, 0, 0, 0.12);
}

.footer-links h2,
.footer-market summary {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 0.907rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold-dust);
}

.footer-market summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.footer-market summary::-webkit-details-marker {
  display: none;
}

.footer-market summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(204, 169, 112, 0.28);
  border-radius: 50%;
  content: "+";
  color: var(--champagne);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition:
    transform 0.45s var(--ease-soft),
    background 0.45s var(--ease-soft),
    color 0.45s var(--ease-soft);
}

.footer-market[open] summary::after {
  background: var(--champagne);
  color: var(--ink);
  transform: rotate(45deg);
}

.footer-market small {
  grid-column: 1;
  color: rgba(246, 243, 238, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: none;
}

.footer-link-list {
  display: grid;
  gap: 9px;
}

.footer-market[open] .footer-link-list {
  animation: footerAccordionReveal 0.48s var(--ease-soft) both;
}

@keyframes footerAccordionReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-links a {
  position: relative;
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 4px 0 4px 16px;
  font-family: var(--font-secondary);
  font-size: 1.102rem;
  color: var(--porcelain);
  transition:
    color 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.footer-links a::before {
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: rgba(204, 169, 112, 0.42);
  transform: scale(0.7);
  transition:
    background 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.footer-links a:hover {
  color: var(--champagne);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  background: var(--champagne);
  transform: scale(1.1);
}

.footer-map {
  display: grid;
  gap: 18px;
}

.map-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(234, 215, 184, 0.18);
  background: rgba(246, 243, 238, 0.08);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.map-visual iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) saturate(0.88);
}

.map-copy {
  display: grid;
  gap: 7px;
  justify-items: center;
  text-align: center;
}

.map-copy strong {
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(234, 215, 184, 0.16);
  font-family: var(--font-secondary);
  font-size: 0.956rem;
  color: rgba(246, 243, 238, 0.64);
}

.markets-section .flipbox-face {
  border-color: rgba(234, 215, 184, 0.18);
  background:
    linear-gradient(
      160deg,
      rgba(246, 243, 238, 0.1),
      rgba(246, 243, 238, 0.035)
    ),
    rgba(246, 243, 238, 0.045);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.markets-section .flipbox-back {
  background: linear-gradient(
    160deg,
    rgba(246, 243, 238, 0.94),
    rgba(234, 215, 184, 0.88)
  );
  color: var(--ink);
}

.markets-section .flipbox-back h3 {
  color: var(--ink);
}

.markets-section .flipbox-back p,
.markets-section .flipbox-back ul {
  color: var(--ink-soft);
}

.markets-section .market-flip .flipbox-front h3 {
  color: var(--ivory);
}

.markets-section .market-tags span {
  border-color: rgba(234, 215, 184, 0.2);
  color: var(--porcelain);
}

/* =========================
   RESPONSIVE
========================= */

.opportunity-grid small {
  display: block;
  margin-top: 16px;
  font-family: var(--font-secondary);
  font-size: 0.956rem;
  line-height: 1.42;
  color: rgba(11, 26, 42, 0.5);
}

@media (min-width: 901px) {
  .hero,
  .snap-section {
    height: 100vh;
    min-height: 100vh;
  }

  .site-header {
    top: 16px;
    width: min(1088px, calc(100vw - 56px));
    height: 60px;
    padding: 0 20px 0 18px;
  }

  body.header-condensed .site-header {
    top: 14px;
    height: 54px;
    padding: 0 22px 0 20px;
    transform: translateX(-50%) scale(0.9);
  }

  body.header-condensed .site-header.header-ready {
    transform: translateX(-50%) scale(0.9);
  }

  .logo img {
    width: clamp(180px, 11.3vw, 216px);
    max-height: 65px;
  }

  body.header-condensed .logo img {
    width: clamp(144px, 8.9vw, 175px);
    max-height: 50px;
  }

  .nav {
    gap: 20px;
    font-size: 15px;
  }

  .header-cta {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 0.62rem;
  }

  .hero-copy {
    left: clamp(28px, 4vw, 70px);
    bottom: clamp(46px, 7.2vh, 76px);
    width: min(520px, calc(100vw - 56px));
  }

  .title-line {
    font-size: 2.58rem;
  }

  .title-line--primary {
    font-size: 2.95rem;
  }

  .hero-subcopy {
    width: min(400px, 100%);
    font-size: 0.74rem;
  }

  .section-shell {
    width: min(1040px, calc(100% - 84px));
    gap: 32px;
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .section-heading {
    max-width: 660px;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .section-kicker::before {
    width: 44px;
  }

  .section-heading h2 {
    font-size: 3.62rem;
    line-height: 1;
  }

  .section-deck {
    width: min(540px, 100%);
    margin-top: 16px;
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .services-shell,
  .about-shell,
  .contact-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .services-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-static-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card {
    min-height: 338px;
    padding: 18px;
  }

  .service-card__body {
    transform: translateY(48px);
  }

  .service-card h3 {
    font-size: 2rem;
  }

  .service-card__summary {
    font-size: 0.76rem;
  }

  .service-card__reveal {
    font-size: 0.7rem;
    line-height: 1.38;
  }

  .market-card-grid {
    gap: 12px;
  }

  .market-card {
    min-height: 300px;
  }

  .market-card__content {
    gap: 10px;
    padding: 18px;
    transform: translateY(48px);
  }

  .market-card__heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 10px;
  }

  .market-card__heading img {
    width: 40px;
    height: 40px;
  }

  .market-card h3 {
    font-size: 1.58rem;
  }

  .market-card p {
    min-height: 56px;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .market-card__services a {
    min-height: 27px;
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .services-list article {
    grid-template-columns: 38px minmax(132px, 0.44fr) minmax(210px, 1fr);
    gap: 18px;
    padding: 15px 0;
  }

  .services-list h3 {
    font-size: 1.46rem;
  }

  .services-list p {
    font-size: 0.8rem;
    line-height: 1.46;
  }

  .market-flip-grid,
  .opportunity-grid,
  .about-media-grid {
    gap: 12px;
  }

  .flipbox,
  .flipbox-inner,
  .market-flip .flipbox-face {
    min-height: 270px;
  }

  .flipbox-face {
    padding: 22px;
  }

  .flipbox-face::after {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .flipbox h3 {
    font-size: 1.78rem;
  }

  .market-flagline img {
    width: 42px;
    height: 42px;
  }

  .market-flagline span,
  .market-tags span,
  .opportunity-grid span {
    font-size: 0.68rem;
  }

  .flipbox-back p,
  .opportunity-grid p {
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .flipbox-back ul {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .opportunity-grid article {
    min-height: 206px;
    padding: 22px;
  }

  .opportunity-grid small {
    margin-top: 12px;
    font-size: 0.7rem;
    line-height: 1.36;
  }

  .about-media-grid article {
    min-height: 142px;
  }

  .about-media-grid span,
  .about-accordion summary {
    font-size: 0.68rem;
  }

  .about-accordion summary {
    padding: 12px 0;
  }

  .about-accordion p {
    margin-bottom: 12px;
    font-size: 0.78rem;
    line-height: 1.46;
  }

  .insight-card {
    gap: 22px;
    padding: 22px;
  }

  .insight-card video {
    height: 250px;
  }

  .insight-card h3 {
    margin-top: 14px;
    font-size: 2.34rem;
  }

  .insight-card p {
    margin-top: 16px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .carousel-button {
    width: 36px;
    height: 36px;
  }

  .contact-intro {
    margin-top: 18px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .contact-note {
    width: min(360px, 100%);
    margin-top: 24px;
    padding: 18px;
  }

  .contact-note strong {
    font-size: 1.45rem;
  }

  .form-head {
    padding-bottom: 12px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
  }

  body.header-condensed .site-header,
  body.header-condensed .site-header.header-ready {
    transform: translateX(-50%);
  }

  .logo img {
    width: clamp(178px, 38.4vw, 228px);
    max-height: 67px;
  }

  .nav {
    gap: 9px;
    font-size: 15px;
  }

  .title-line {
    font-size: 2.55rem;
  }

  .title-line--primary {
    font-size: 2.9rem;
  }

  .section-shell {
    gap: 32px;
  }

  .section-heading h2 {
    font-size: 3.35rem;
  }

  .section-deck {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .market-flip-grid,
  .opportunity-grid {
    gap: 12px;
  }

  .opportunity-grid article {
    min-height: 250px;
    padding: 20px;
  }

  .flipbox,
  .flipbox-inner {
    min-height: 300px;
  }

  .flipbox-face {
    padding: 22px;
  }

  .flipbox h3 {
    font-size: 1.95rem;
  }

  .services-shell,
  .about-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .services-static-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    min-height: 380px;
  }

  .market-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .market-card {
    min-height: 318px;
  }

  .about-media-grid article {
    min-height: 140px;
  }

  .insight-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .insight-card video {
    height: 260px;
  }

  .insight-card h3 {
    font-size: 2.25rem;
  }

  .services-list article {
    grid-template-columns: 38px minmax(130px, 0.42fr) minmax(220px, 1fr);
    padding: 15px 0;
  }

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

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 18;
    background: rgba(5, 13, 22, 0.48);
    backdrop-filter: blur(4px);
  }

  .site-header,
  body.header-condensed .site-header {
    top: 14px;
    width: calc(100% - 28px);
    height: 64px;
    min-width: auto;
    padding: 0 12px 0 16px;
    border-radius: 32px;
  }

  .site-header.header-ready,
  body.header-condensed .site-header.header-ready {
    transform: translateX(-50%);
  }

  .site-header::after {
    left: 24px;
    right: 24px;
  }

  .logo {
    z-index: 24;
  }

  .logo img,
  body.header-condensed .logo img {
    width: clamp(166px, 50.4vw, 214px);
    max-height: 60px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    z-index: 23;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(234, 215, 184, 0.18);
    border-radius: 8px;
    background:
      linear-gradient(
        180deg,
        rgba(246, 243, 238, 0.96),
        rgba(236, 229, 216, 0.94)
      ),
      var(--ivory);
    box-shadow: 0 24px 60px rgba(5, 13, 22, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.32s var(--ease-soft),
      transform 0.32s var(--ease-soft);
  }

  body.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a,
  body.header-condensed .nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(11, 26, 42, 0.1);
    color: var(--ink);
    opacity: 1;
    text-shadow: none;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    height: 100svh;
    min-height: 640px;
  }

  .snap-section:not(.hero) {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .section-shell {
    align-content: start;
    height: auto;
    min-height: 0;
    width: min(100% - 32px, 560px);
    padding-block: 88px;
  }

  .title-line {
    font-size: 2.35rem;
  }

  .title-line--primary {
    font-size: 2.65rem;
  }

  .section-heading h2 {
    font-size: 2.75rem;
    line-height: 1.02;
  }

  .section-deck {
    margin-top: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero-copy {
    left: 18px;
    right: 18px;
    bottom: 44px;
    width: auto;
  }

  .city-panel img,
  .city-panel video {
    animation: none;
    object-position: 64% center;
    transform: none;
  }

  .cinema-wash {
    background:
      linear-gradient(
        180deg,
        rgba(11, 26, 42, 0.18),
        rgba(11, 26, 42, 0.08) 34%,
        rgba(11, 26, 42, 0.68)
      ),
      linear-gradient(
        90deg,
        rgba(11, 26, 42, 0.46),
        rgba(11, 26, 42, 0.04) 62%
      ),
      radial-gradient(
        circle at 70% 36%,
        rgba(234, 215, 184, 0.12),
        transparent 32%
      );
  }

  .hero-actions {
    width: 100%;
  }

  .hero-button {
    flex: 1 1 152px;
    min-width: 0;
    padding-inline: 12px;
    text-align: center;
  }

  .market-flip-grid,
  .opportunity-grid,
  .about-media-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 0;
  }

  .service-card {
    min-height: 340px;
  }

  .service-card__body {
    transform: translateY(0);
  }

  .service-card__reveal,
  .service-card__button,
  .market-card__services,
  .market-card__services a {
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .market-card__content {
    transform: none;
  }

  .flipbox,
  .flipbox-inner,
  .market-flip .flipbox-face {
    min-height: 220px;
  }

  .flipbox-face {
    padding: 18px;
  }

  .flipbox-face::after {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .flipbox h3 {
    font-size: 1.62rem;
  }

  .flipbox-back ul {
    gap: 7px;
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .market-tags span {
    padding: 6px 8px;
  }

  .services-list article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
    padding: 12px 0;
  }

  .services-list h3,
  .services-list p {
    min-width: 0;
  }

  .services-list p {
    grid-column: 2;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .opportunity-grid article {
    min-height: auto;
    padding: 18px;
  }

  .opportunity-grid p {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .opportunity-grid small {
    margin-top: 8px;
    font-size: 0.72rem;
  }

  .contact-options {
    padding: 18px;
    gap: 8px;
  }

  .contact-option {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-option-copy,
  .contact-option-copy strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-option-copy strong {
    font-size: 1.16rem;
  }

  .about-media-grid article {
    min-height: 82px;
  }

  .about-accordion summary {
    padding: 11px 0;
    font-size: 0.74rem;
  }

  .about-accordion p {
    font-size: 0.76rem;
    line-height: 1.36;
  }

  .insight-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .insight-card video {
    height: 150px;
  }

  .insight-card h3 {
    margin-top: 10px;
    font-size: 1.65rem;
  }

  .insight-card p {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .carousel-button {
    width: 34px;
    height: 34px;
  }

  .carousel-dots {
    right: 18px;
    bottom: 14px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    width: calc(100% - 40px);
    gap: 30px;
    padding: 58px 0 36px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-map {
    width: 100%;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-links {
    justify-items: stretch;
    text-align: left;
  }

  .footer-logo,
  .footer-brand p {
    margin-inline: auto;
  }

  .footer-links a {
    width: 100%;
    text-align: left;
  }

  .footer-links a:hover {
    transform: translateX(5px);
  }

  .footer-map {
    min-width: 0;
  }

  .map-visual {
    width: min(100%, 420px);
    min-height: 210px;
  }

  .map-visual iframe {
    height: 210px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 40px);
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header,
  body.header-condensed .site-header {
    width: calc(100% - 20px);
    height: 60px;
    padding-left: 12px;
  }

  .site-header {
    padding-right: 18px;
  }

  body.header-condensed .site-header {
    padding-right: 12px;
  }

  .logo img,
  body.header-condensed .logo img {
    width: clamp(154px, 57.6vw, 190px);
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    bottom: 34px;
  }

  .eyebrow {
    flex-wrap: wrap;
    font-size: 0.62rem;
  }

  .hero-title {
    line-height: 1.02;
  }

  .title-line,
  .title-line--primary {
    font-size: 1.72rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-button {
    flex-basis: 100%;
  }

  .hero-subcopy {
    font-size: 0.72rem;
  }

  .section-shell {
    width: calc(100% - 28px);
    gap: 24px;
    padding-block: 82px;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .section-kicker::before {
    width: 34px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-deck {
    font-size: 0.74rem;
  }

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

  .service-card {
    min-height: 322px;
    padding: 18px;
  }

  .service-card h3 {
    font-size: 1.72rem;
  }

  .market-card {
    min-height: 340px;
  }

  .market-card__content {
    padding: 18px;
  }

  .market-card h3 {
    font-size: 1.46rem;
  }

  .flipbox,
  .flipbox-inner,
  .market-flip .flipbox-face {
    min-height: 236px;
  }

  .flipbox h3 {
    font-size: 1.38rem;
  }

  .flipbox-back ul {
    font-size: 0.72rem;
  }

  .services-list h3 {
    font-size: 1.25rem;
  }

  .services-list p {
    font-size: 0.76rem;
  }

  .about-media-grid article {
    min-height: 118px;
  }

  .insight-carousel {
    margin-inline: -4px;
  }

  .form-head {
    align-items: start;
    flex-direction: column;
  }

  .contact-note {
    padding: 16px;
  }

  .contact-options {
    padding: 16px;
  }

  .contact-option {
    align-items: start;
  }

  .contact-option-copy strong {
    font-size: 1.02rem;
  }

  .contact-note strong {
    font-size: 1.35rem;
  }

  .footer-shell {
    width: calc(100% - 32px);
    padding-top: 48px;
  }

  .footer-logo img {
    width: 220px;
  }

  .footer-brand p {
    font-size: 0.86rem;
  }

  .map-visual {
    min-height: 185px;
  }

  .map-visual iframe {
    height: 185px;
  }

  .footer-bottom {
    width: calc(100% - 32px);
    font-size: 0.72rem;
  }
}
/* =========================
   CITIES
========================= */

.cities-section {
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  background:
    linear-gradient(115deg, rgba(11, 26, 42, 0.94), rgba(11, 26, 42, 0.76)),
    url("public/hero_image.avif") center / cover;
  color: var(--ivory);
}

.cities-shell {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
}

.cities-section .section-deck {
  color: rgba(246, 243, 238, 0.72);
}

.city-directory {
  display: grid;
  grid-template-columns: 0.72fr 1.35fr 1fr;
  gap: 18px;
}

.city-directory article {
  min-height: 320px;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(246, 243, 238, 0.16);
  border-radius: 8px;
  background: rgba(246, 243, 238, 0.08);
  backdrop-filter: blur(14px);
}

.city-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.city-link-grid a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(246, 243, 238, 0.18);
  color: rgba(246, 243, 238, 0.84);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1;
  transition:
    color 0.3s var(--ease-soft),
    border-color 0.3s var(--ease-soft),
    transform 0.3s var(--ease-soft);
}

.city-link-grid a::after {
  content: ">";
  color: var(--champagne);
  font-family: var(--font-secondary);
  font-size: 15.925px;
}

.city-link-grid a:hover {
  border-color: rgba(204, 169, 112, 0.78);
  color: var(--champagne);
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .city-directory {
    grid-template-columns: 1fr;
  }

  .city-directory article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .city-link-grid {
    grid-template-columns: 1fr;
  }
}

/* Shared header and footer enhancements */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-social,
.footer-social {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
  transition:
    transform 0.45s var(--ease-soft),
    background 0.45s var(--ease-soft),
    color 0.45s var(--ease-soft),
    border-color 0.45s var(--ease-soft),
    box-shadow 0.45s var(--ease-soft);
}

.header-social {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(204, 169, 112, 0.42);
  background: rgba(11, 26, 42, 0.42);
  color: var(--champagne);
  font-size: 1rem;
}

.header-social:hover,
.footer-social:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(204, 169, 112, 0.2);
}

body.header-condensed .header-social {
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
}

.footer-topbar {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 58px 0 32px;
  border-bottom: 1px solid rgba(234, 215, 184, 0.12);
}

.footer-toplinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  width: 100%;
}

.footer-toplinks a {
  position: relative;
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.82rem, 1.3vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    color 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.footer-toplinks a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-dust);
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.footer-toplinks a:hover {
  color: var(--champagne);
  transform: translateY(-2px);
}

.footer-toplinks a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(234, 215, 184, 0.18);
  color: rgba(246, 243, 238, 0.62);
  font-size: 1.08rem;
}

.footer-shell {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.8fr);
  gap: 36px;
  padding-top: 44px;
}

.footer-countries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.footer-country-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(234, 215, 184, 0.14);
  border-radius: 8px;
  background: rgba(246, 243, 238, 0.04);
  isolation: isolate;
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.65s var(--ease-luxe),
    border-color 0.55s var(--ease-soft),
    box-shadow 0.55s var(--ease-soft);
}

.footer-country-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--country-image) center / cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.74);
  transform: scale(1.04);
  transition:
    transform 0.9s var(--ease-luxe),
    filter 0.7s var(--ease-soft);
}

.footer-country-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.2), rgba(5, 13, 22, 0.9)),
    linear-gradient(90deg, rgba(11, 26, 42, 0.72), rgba(11, 26, 42, 0.16));
}

.footer-country-card:hover {
  border-color: rgba(204, 169, 112, 0.46);
  transform: translateY(-5px);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-country-card:hover .footer-country-card__media {
  filter: saturate(0.92) contrast(1.14) brightness(0.82);
  transform: scale(1.11);
}

.footer-country-card__content {
  display: grid;
  height: 100%;
  align-content: end;
  gap: 18px;
  padding: 22px;
}

.footer-country-card__heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234, 215, 184, 0.28);
}

.footer-country-card h2 {
  margin: 0;
  color: var(--champagne);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-country-card__heading span {
  color: rgba(246, 243, 238, 0.68);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-country-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-country-links a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(234, 215, 184, 0.18);
  border-radius: 999px;
  background: rgba(246, 243, 238, 0.08);
  color: var(--porcelain);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  transition:
    transform 0.42s var(--ease-soft),
    background 0.42s var(--ease-soft),
    border-color 0.42s var(--ease-soft),
    color 0.42s var(--ease-soft);
}

.footer-country-links a:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .footer-countries {
    grid-template-columns: 1fr;
  }

  .footer-country-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .header-actions {
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .footer-topbar {
    width: calc(100% - 32px);
    padding-top: 44px;
  }

  .footer-toplinks {
    gap: 18px 24px;
  }
}

@media (max-width: 560px) {
  .header-social {
    width: 38px;
    height: 38px;
  }

  .footer-toplinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    text-align: center;
  }

  .footer-country-card {
    min-height: 320px;
  }
}

/* Footer city reveal + LinkedIn placement */
.footer-country-card__heading {
  justify-content: flex-start;
}

.footer-country-links {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 0.55s var(--ease-soft),
    transform 0.55s var(--ease-soft);
}

.footer-country-links a {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.48s var(--ease-soft),
    transform 0.48s var(--ease-soft),
    background 0.42s var(--ease-soft),
    border-color 0.42s var(--ease-soft),
    color 0.42s var(--ease-soft);
}

.footer-country-card:hover .footer-country-links,
.footer-country-card:focus-within .footer-country-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-country-card:hover .footer-country-links a,
.footer-country-card:focus-within .footer-country-links a {
  opacity: 1;
  transform: translateY(0);
}

.footer-country-links a:nth-child(2) {
  transition-delay: 0.03s;
}
.footer-country-links a:nth-child(3) {
  transition-delay: 0.06s;
}
.footer-country-links a:nth-child(4) {
  transition-delay: 0.09s;
}
.footer-country-links a:nth-child(5) {
  transition-delay: 0.12s;
}
.footer-country-links a:nth-child(6) {
  transition-delay: 0.15s;
}
.footer-country-links a:nth-child(7) {
  transition-delay: 0.18s;
}
.footer-country-links a:nth-child(8) {
  transition-delay: 0.21s;
}
.footer-country-links a:nth-child(9) {
  transition-delay: 0.24s;
}
.footer-country-links a:nth-child(10) {
  transition-delay: 0.27s;
}
.footer-country-links a:nth-child(11) {
  transition-delay: 0.3s;
}

.footer-bottom .footer-social {
  flex: 0 0 auto;
  margin-left: auto;
}

.header-social:hover,
.footer-social:hover {
  border-color: #0a66c2;
  background: #0a66c2;
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.24);
}

@media (max-width: 768px) {
  .footer-country-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .footer-country-links a {
    opacity: 1;
    transform: none;
  }

  .footer-bottom .footer-social {
    margin-left: 0;
  }
}

/* Country card summary and space-making reveal */
.footer-country-card {
  min-height: 360px;
}

.footer-country-card__content {
  align-content: end;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.62s var(--ease-luxe);
}

.footer-country-card:hover .footer-country-card__content,
.footer-country-card:focus-within .footer-country-card__content {
  transform: translateY(-6px);
}

.footer-country-card__heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234, 215, 184, 0.28);
}

.footer-country-summary {
  min-height: 78px;
  margin: 0;
  color: rgba(246, 243, 238, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  text-wrap: pretty;
  transition:
    color 0.45s var(--ease-soft),
    transform 0.62s var(--ease-luxe);
}

.footer-country-card:hover .footer-country-summary,
.footer-country-card:focus-within .footer-country-summary {
  color: rgba(246, 243, 238, 0.9);
}

.footer-country-links {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    max-height 0.7s var(--ease-luxe),
    opacity 0.55s var(--ease-soft),
    transform 0.55s var(--ease-soft);
}

.footer-country-card:hover .footer-country-links,
.footer-country-card:focus-within .footer-country-links {
  max-height: 190px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .footer-country-summary {
    min-height: 0;
  }

  .footer-country-links {
    max-height: none;
    overflow: visible;
  }
}

/* =========================
   MOTION REFINEMENTS
========================= */

/* No hover-reveal states: details are visible by default, hover only adds motion and emphasis. */
.service-card__body,
.service-card:hover .service-card__body,
.service-card:focus-visible .service-card__body,
.service-card:focus-within .service-card__body,
.market-card__content,
.market-card:hover .market-card__content,
.market-card:focus-within .market-card__content,
.market-card:focus-visible .market-card__content,
.footer-country-card__content,
.footer-country-card:hover .footer-country-card__content,
.footer-country-card:focus-within .footer-country-card__content {
  transform: none;
}

.service-card__reveal,
.service-card:hover .service-card__reveal,
.service-card:focus-visible .service-card__reveal,
.service-card:focus-within .service-card__reveal,
.service-card__button,
.service-card:hover .service-card__button,
.service-card:focus-visible .service-card__button,
.service-card:focus-within .service-card__button,
.market-card__services,
.market-card:hover .market-card__services,
.market-card:focus-within .market-card__services,
.market-card:focus-visible .market-card__services,
.market-card__services a,
.market-card:hover .market-card__services a,
.market-card:focus-within .market-card__services a,
.market-card:focus-visible .market-card__services a,
.footer-country-links,
.footer-country-card:hover .footer-country-links,
.footer-country-card:focus-within .footer-country-links,
.footer-country-links a,
.footer-country-card:hover .footer-country-links a,
.footer-country-card:focus-within .footer-country-links a {
  max-height: none;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.market-card {
  min-height: 330px;
}

.market-card:hover,
.market-card:focus-within,
.market-card:focus-visible {
  transform: translate3d(0, -4px, 0) scale(1.018);
  box-shadow:
    0 42px 96px rgba(0, 0, 0, 0.31),
    0 0 34px rgba(204, 169, 112, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.market-card__content {
  align-content: center;
  gap: 20px;
}

.market-card__heading {
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  padding-bottom: 16px;
}

.market-card__heading img {
  width: 54px;
  height: 54px;
}

.market-card__heading span {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 500;
  line-height: 0.96;
  text-transform: none;
}

.market-card h3,
.market-card p {
  display: none;
}

.market-card__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.market-card__services a {
  justify-content: center;
  text-align: center;
}

.contact-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
}

.contact-intro {
  width: min(620px, 100%);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(246, 243, 238, 0.72);
}

.contact-options {
  gap: 0;
  padding: 22px;
  border-color: rgba(234, 215, 184, 0.13);
  background: rgba(5, 13, 22, 0.32);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.form-head {
  padding-bottom: 12px;
}

.contact-option {
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
}

.contact-icon {
  width: 30px;
  height: 30px;
  color: rgba(234, 215, 184, 0.76);
  background: transparent;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
}

.contact-option-copy {
  gap: 4px;
}

.contact-option-copy span {
  font-size: 0.68rem;
  color: rgba(234, 215, 184, 0.68);
}

.contact-option-copy strong {
  color: rgba(246, 243, 238, 0.84);
  font-family: var(--font-secondary);
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  font-weight: 600;
  line-height: 1.28;
}

a.contact-option:hover {
  color: var(--ivory);
  transform: translateX(4px);
}

.site-footer {
  padding-top: 58px;
}

.footer-shell {
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.7fr);
  align-items: start;
  padding-top: 0;
}

.footer-countries {
  gap: 14px;
}

.footer-country-card {
  min-height: auto;
}

.footer-country-card:hover,
.footer-country-card:focus-within {
  transform: translate3d(0, -4px, 0) scale(1.01);
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(204, 169, 112, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-country-card__content {
  min-height: 100%;
  align-content: start;
  gap: 16px;
  padding: 20px;
}

.footer-country-card__heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234, 215, 184, 0.28);
}

.footer-country-summary {
  display: none;
}

.footer-country-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-country-links a {
  justify-content: center;
  min-height: 32px;
  padding: 7px 8px;
  text-align: center;
}

@media (max-width: 1100px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .market-card-grid,
  .footer-countries {
    grid-template-columns: 1fr;
  }

  .market-card {
    min-height: 270px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 44px;
  }
}

@media (max-width: 560px) {
  .market-card__services,
  .footer-country-links {
    grid-template-columns: 1fr;
  }
}

.site-header,
.logo,
.logo img,
.nav a,
.header-cta,
.hero-button,
.service-card,
.service-card::before,
.service-card__body,
.service-card__reveal,
.service-card__button,
.market-card,
.market-card__media,
.market-card__content,
.market-card__services,
.market-card__services a,
.about-media-grid article,
.about-media-grid video,
.insight-track,
.insight-card,
.carousel-button,
.contact-option,
.footer-logo,
.footer-logo img,
.footer-country-card,
.footer-country-card__media,
.footer-country-card__content,
.footer-country-links,
.footer-country-links a {
  transition-timing-function: var(--ease-fluid);
}

.service-card,
.market-card,
.footer-country-card,
.about-media-grid article,
.insight-card {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.service-card::before,
.market-card__media,
.footer-country-card__media,
.about-media-grid video,
.insight-card video {
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.04);
  backface-visibility: hidden;
}

.service-card:hover,
.service-card:focus-visible,
.market-card:hover,
.market-card:focus-within,
.market-card:focus-visible,
.footer-country-card:hover,
.footer-country-card:focus-within {
  transform: translate3d(0, -4px, 0);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  transform: translate3d(0, 0, 0) scale(1.09);
}

.market-card:hover .market-card__media,
.market-card:focus-within .market-card__media,
.market-card:focus-visible .market-card__media {
  transform: translate3d(0, 0, 0) scale(1.09);
}

.footer-country-card:hover .footer-country-card__media,
.footer-country-card:focus-within .footer-country-card__media {
  transform: translate3d(0, 0, 0) scale(1.08);
}

.service-card__body,
.market-card__content,
.footer-country-card__content {
  will-change: transform;
}

.insight-track {
  transition-duration: 1s;
}

/* Final interaction guard: visible content stays visible; hover adds polish only. */
.service-card__body,
.service-card:hover .service-card__body,
.service-card:focus-visible .service-card__body,
.service-card:focus-within .service-card__body,
.market-card__content,
.market-card:hover .market-card__content,
.market-card:focus-within .market-card__content,
.market-card:focus-visible .market-card__content,
.footer-country-card__content,
.footer-country-card:hover .footer-country-card__content,
.footer-country-card:focus-within .footer-country-card__content {
  transform: none;
}

.service-card__reveal,
.service-card:hover .service-card__reveal,
.service-card:focus-visible .service-card__reveal,
.service-card:focus-within .service-card__reveal,
.service-card__button,
.service-card:hover .service-card__button,
.service-card:focus-visible .service-card__button,
.service-card:focus-within .service-card__button,
.market-card__services,
.market-card:hover .market-card__services,
.market-card:focus-within .market-card__services,
.market-card:focus-visible .market-card__services,
.market-card__services a,
.market-card:hover .market-card__services a,
.market-card:focus-within .market-card__services a,
.market-card:focus-visible .market-card__services a,
.footer-country-links,
.footer-country-card:hover .footer-country-links,
.footer-country-card:focus-within .footer-country-links,
.footer-country-links a,
.footer-country-card:hover .footer-country-links a,
.footer-country-card:focus-within .footer-country-links a {
  max-height: none;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.market-card:hover,
.market-card:focus-within,
.market-card:focus-visible {
  transform: translate3d(0, -4px, 0) scale(1.018);
  box-shadow:
    0 42px 96px rgba(0, 0, 0, 0.31),
    0 0 34px rgba(204, 169, 112, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.footer-country-card:hover,
.footer-country-card:focus-within {
  transform: translate3d(0, -4px, 0) scale(1.01);
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(204, 169, 112, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Footer city image index */
.footer-countries {
  grid-template-columns: 1fr;
  gap: 18px;
}

.footer-country-card {
  overflow: visible;
  border-color: rgba(234, 215, 184, 0.16);
  background: rgba(246, 243, 238, 0.045);
}

.footer-country-card__media {
  display: none;
}

.footer-country-card::after {
  display: none;
}

.footer-country-card__content {
  min-height: 0;
  gap: 18px;
  padding: clamp(18px, 2vw, 24px);
}

.footer-country-card__heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234, 215, 184, 0.28);
}

.footer-country-flag {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(234, 215, 184, 0.34);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-country-card h2 {
  color: var(--ivory);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
}

.footer-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.footer-city-card {
  position: relative;
  display: grid;
  min-height: 96px;
  overflow: hidden;
  align-items: end;
  padding: 12px;
  border: 1px solid rgba(234, 215, 184, 0.16);
  border-radius: 8px;
  color: var(--ivory);
  isolation: isolate;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s var(--ease-fluid),
    border-color 0.45s var(--ease-fluid),
    box-shadow 0.45s var(--ease-fluid);
}

.footer-city-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--city-image) center / cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.72);
  transform: scale(1.04);
  transition:
    transform 0.7s var(--ease-fluid),
    filter 0.55s var(--ease-fluid);
}

.footer-city-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.08), rgba(5, 13, 22, 0.84)),
    linear-gradient(90deg, rgba(11, 26, 42, 0.48), rgba(11, 26, 42, 0.12));
}

.footer-city-card__label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-city-card:hover,
.footer-city-card:focus-visible {
  border-color: rgba(204, 169, 112, 0.54);
  transform: translate3d(0, -3px, 0) scale(1.018);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(204, 169, 112, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-city-card:hover .footer-city-card__media,
.footer-city-card:focus-visible .footer-city-card__media {
  filter: saturate(0.94) contrast(1.14) brightness(0.82);
  transform: scale(1.1);
}

@media (max-width: 560px) {
  .footer-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-city-card {
    min-height: 88px;
  }
}

/* Footer four-column layout */
.footer-shell {
  grid-template-columns: minmax(230px, 0.78fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.footer-brand {
  align-self: start;
}

.footer-countries {
  grid-column: span 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-country-card {
  min-width: 0;
}

.footer-city-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-countries {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .footer-countries {
    grid-template-columns: 1fr;
  }
}

/* =========================
   READABILITY PASS
========================= */

:root {
  --ink-soft: rgba(11, 26, 42, 0.78);
  --ink-muted: rgba(11, 26, 42, 0.66);
  --porcelain: rgba(246, 243, 238, 0.9);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.nav,
.header-cta,
.hero-button,
.section-kicker,
.eyebrow,
.market-tags span,
.service-card__body p,
.service-card__button,
.market-card__heading span,
.market-card__services a,
.opportunity-grid span,
.about-media-grid span,
.about-accordion summary,
.footer-links h2,
.footer-market summary,
.footer-toplinks a,
.footer-country-card h2,
.footer-country-card__heading span,
.footer-country-links a {
  font-weight: 400;
}

.nav {
  font-size: clamp(15px, 0.82vw, 16px);
}

.header-cta,
.hero-button {
  font-size: clamp(0.88rem, 0.82rem + 0.16vw, 0.98rem);
  line-height: 1.15;
}

.eyebrow,
.section-kicker,
.service-card__body p,
.market-card__heading span,
.opportunity-grid span,
.about-media-grid span,
.about-accordion summary,
.footer-links h2,
.footer-market summary,
.footer-country-card__heading span {
  font-size: clamp(0.88rem, 0.82rem + 0.18vw, 1rem);
  line-height: 1.35;
}

.hero-subcopy,
.section-deck,
.service-card__summary,
.service-card__reveal,
.market-card p,
.opportunity-grid p,
.opportunity-grid small,
.about-accordion p,
.insight-card p,
.contact-intro,
.footer-bottom,
.footer-market small,
.footer-country-links a {
  font-size: clamp(0.98rem, 0.92rem + 0.18vw, 1.1rem);
  line-height: 1.58;
}

.service-card__button,
.market-card__services a {
  min-height: 36px;
  font-size: clamp(0.84rem, 0.8rem + 0.12vw, 0.94rem);
  line-height: 1.15;
}

.hero-subcopy,
.markets-section .section-deck,
.about-section .section-deck,
.contact-section .section-deck,
.service-card__summary,
.service-card__reveal,
.market-card p,
.footer-brand p,
.footer-bottom,
.cities-section .section-deck {
  color: rgba(246, 243, 238, 0.9);
}

.footer-market small,
.footer-country-card__heading span,
.footer-social {
  color: rgba(246, 243, 238, 0.76);
}

.market-tags span,
.opportunity-grid small {
  color: rgba(11, 26, 42, 0.66);
}

.market-card::after,
.service-card::after,
.footer-country-card::after {
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.22), rgba(5, 13, 22, 0.88)),
    linear-gradient(90deg, rgba(11, 26, 42, 0.68), rgba(11, 26, 42, 0.14));
}

.footer-country-links a {
  min-height: 42px;
  color: rgba(246, 243, 238, 0.92);
}

@media (max-width: 768px) {
  .hero-subcopy,
  .section-deck,
  .service-card__summary,
  .service-card__reveal,
  .market-card p,
  .opportunity-grid p,
  .opportunity-grid small,
  .about-accordion p,
  .insight-card p,
  .contact-intro {
    font-size: 1rem;
    line-height: 1.56;
  }

  .eyebrow,
  .section-kicker,
  .service-card__body p,
  .market-card__heading span,
  .opportunity-grid span,
  .about-media-grid span,
  .about-accordion summary {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .title-line,
  .title-line--primary {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .hero-button {
    min-height: 44px;
  }
}

/* =========================
   SERVICES REFINEMENT
========================= */

.services-section {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  scroll-margin-top: 92px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(204, 169, 112, 0.13),
      transparent 28%
    ),
    radial-gradient(circle at 14% 86%, rgba(11, 26, 42, 0.07), transparent 30%),
    linear-gradient(
      180deg,
      rgba(250, 248, 243, 0.96),
      rgba(236, 229, 216, 0.96)
    );
}

.services-section::before {
  background:
    linear-gradient(90deg, rgba(11, 26, 42, 0.055), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 42%),
    radial-gradient(
      circle at 78% 22%,
      rgba(204, 169, 112, 0.12),
      transparent 26%
    );
}

.services-shell {
  gap: clamp(24px, 4vh, 42px);
  height: auto;
  min-height: 100vh;
  align-content: start;
}

.services-shell .section-heading {
  max-width: 880px;
}

.services-shell .section-heading h2 {
  max-width: 820px;
  font-size: clamp(3rem, 4.8vw, 4.1rem);
  line-height: 1.02;
}

.services-shell .section-deck {
  width: min(610px, 100%);
}

.services-static-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(188px, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
  padding: 0 0 8px;
}

.service-card {
  min-height: auto;
  align-content: stretch;
  padding: clamp(18px, 2.1vw, 28px);
  border-color: rgba(11, 26, 42, 0.12);
  box-shadow:
    0 26px 64px rgba(11, 26, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.service-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.service-card:nth-child(n + 2) {
  grid-column: span 2;
}

.service-card::before {
  filter: brightness(0.78) contrast(1.04) saturate(0.78);
}

.service-card::after {
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.08), rgba(5, 13, 22, 0.88)),
    linear-gradient(90deg, rgba(11, 26, 42, 0.72), rgba(11, 26, 42, 0.16)),
    radial-gradient(
      circle at 18% 100%,
      rgba(204, 169, 112, 0.2),
      transparent 34%
    );
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(204, 169, 112, 0.42);
  transform: translateY(-4px);
  box-shadow:
    0 34px 76px rgba(11, 26, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card__body {
  height: 100%;
  align-content: end;
  gap: 10px;
  transform: none;
}

.service-card:hover .service-card__body,
.service-card:focus-visible .service-card__body,
.service-card:focus-within .service-card__body {
  transform: none;
}

.service-card__body p {
  color: rgba(234, 215, 184, 0.92);
  font-size: clamp(0.82rem, 0.78rem + 0.12vw, 0.92rem);
  font-weight: 400;
  line-height: 1.25;
}

.service-card h3 {
  max-width: 11ch;
  font-size: clamp(2.05rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.service-card:nth-child(n + 2) h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.service-card__summary {
  max-width: 28ch;
  color: rgba(246, 243, 238, 0.88);
  font-size: clamp(0.95rem, 0.9rem + 0.14vw, 1.04rem);
  line-height: 1.48;
}

.service-card:nth-child(n + 2) .service-card__summary {
  max-width: 25ch;
}

.service-card__summary {
  max-height: none;
  overflow: visible;
  opacity: 1;
  transform: none;
  transition: none;
}

.service-card__button {
  min-height: 38px;
  margin-top: 6px;
  padding: 9px 14px;
  border-color: rgba(234, 215, 184, 0.46);
  background: rgba(5, 13, 22, 0.22);
  color: rgba(234, 215, 184, 0.94);
  font-size: 0.88rem;
  font-weight: 400;
  opacity: 1;
  transform: none;
  backdrop-filter: blur(12px);
  transition:
    background 0.35s var(--ease-soft),
    border-color 0.35s var(--ease-soft),
    color 0.35s var(--ease-soft);
}

.service-card:hover .service-card__button,
.service-card:focus-visible .service-card__button,
.service-card:focus-within .service-card__button {
  opacity: 1;
  transform: none;
}

.service-card:hover,
.service-card:focus-visible,
.service-card:focus-within {
  transform: translate3d(0, -2px, 0);
}

.service-card:hover::before,
.service-card:focus-visible::before,
.service-card:focus-within::before {
  transform: translate3d(0, 0, 0) scale(1.06);
}

@media (min-width: 901px) {
  .services-shell {
    padding-top: clamp(118px, 12vh, 142px);
    padding-bottom: clamp(72px, 8vh, 104px);
  }

  .services-static-grid {
    min-height: min(48vh, 394px);
  }
}

@media (max-width: 900px) {
  .services-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(240px, auto);
  }

  .service-card:nth-child(1),
  .service-card:nth-child(n + 2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .services-static-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(268px, auto);
  }

  .service-card:first-child,
  .service-card:nth-child(n + 2) {
    grid-column: 1;
  }

  .service-card h3,
  .service-card:nth-child(n + 2) h3 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
}

/* Full-width footer with Portugal given room for a 3x4 city grid. */
.footer-shell {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  grid-template-columns:
    minmax(220px, 0.72fr)
    minmax(170px, 0.68fr)
    minmax(420px, 1.55fr)
    minmax(220px, 0.85fr);
  padding-right: clamp(20px, 3vw, 52px);
  padding-left: clamp(20px, 3vw, 52px);
}

.footer-countries {
  grid-column: 2 / -1;
  grid-template-columns:
    minmax(170px, 0.68fr)
    minmax(420px, 1.55fr)
    minmax(220px, 0.85fr);
  align-items: start;
}

.footer-country-card--portugal .footer-city-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-country-card--portugal .footer-city-card {
  min-height: 86px;
}

@media (max-width: 1280px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-countries {
    grid-column: auto;
    grid-template-columns:
      minmax(170px, 0.68fr)
      minmax(420px, 1.55fr)
      minmax(220px, 0.85fr);
  }
}

@media (max-width: 980px) {
  .footer-countries {
    grid-template-columns: 1fr;
  }

  .footer-country-card--portugal .footer-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Final footer layout override: full-width brand + three country columns. */
.footer-shell {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  grid-template-columns:
    minmax(220px, 0.72fr)
    minmax(170px, 0.68fr)
    minmax(420px, 1.55fr)
    minmax(220px, 0.85fr);
  padding-right: clamp(20px, 3vw, 52px);
  padding-left: clamp(20px, 3vw, 52px);
}

.footer-countries {
  grid-column: 2 / -1;
  grid-template-columns:
    minmax(170px, 0.68fr)
    minmax(420px, 1.55fr)
    minmax(220px, 0.85fr);
  align-items: start;
}

.footer-country-card--portugal .footer-city-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1280px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-countries {
    grid-column: auto;
    grid-template-columns:
      minmax(170px, 0.68fr)
      minmax(420px, 1.55fr)
      minmax(220px, 0.85fr);
  }
}

@media (max-width: 980px) {
  .footer-countries {
    grid-template-columns: 1fr;
  }

  .footer-country-card--portugal .footer-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Absolute final footer grid fix: equal country heights, UAE vertical, Portugal 3x4, Poland 3x3. */
.footer-shell {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  grid-template-columns:
    minmax(220px, 0.62fr)
    minmax(180px, 0.52fr)
    minmax(390px, 1.18fr)
    minmax(390px, 1.18fr);
  align-items: stretch;
  padding-right: clamp(20px, 3vw, 52px);
  padding-left: clamp(20px, 3vw, 52px);
}

.footer-countries {
  grid-column: 2 / -1;
  grid-template-columns:
    minmax(180px, 0.52fr)
    minmax(390px, 1.18fr)
    minmax(390px, 1.18fr);
  align-items: stretch;
}

.footer-country-card,
.footer-country-card__content {
  height: 100%;
}

.footer-country-card__content {
  grid-template-rows: auto 1fr;
}

.footer-country-card--uae .footer-city-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(132px, 1fr);
}

.footer-country-card--portugal .footer-city-grid,
.footer-country-card--poland .footer-city-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(86px, 1fr);
}

@media (max-width: 1280px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-countries {
    grid-column: auto;
    grid-template-columns:
      minmax(180px, 0.52fr)
      minmax(390px, 1.18fr)
      minmax(390px, 1.18fr);
  }
}

@media (max-width: 980px) {
  .footer-countries,
  .footer-country-card--portugal .footer-city-grid,
  .footer-country-card--poland .footer-city-grid {
    grid-template-columns: 1fr;
  }

  .footer-country-card,
  .footer-country-card__content {
    height: auto;
  }
}

/* Restore footer city buttons inside country boxes. */
.footer-shell {
  box-sizing: border-box;
  width: min(1320px, calc(100% - 56px));
  max-width: none;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.8fr);
  align-items: start;
  gap: 36px;
  padding: 58px 0 46px;
}

.footer-countries {
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.footer-country-card {
  min-height: 360px;
  overflow: hidden;
  height: auto;
  border-color: rgba(234, 215, 184, 0.14);
  background: rgba(246, 243, 238, 0.04);
}

.footer-country-card__media {
  display: block;
  filter: saturate(0.88) contrast(1.05) brightness(0.92);
}

.footer-country-card--uae .footer-country-card__media {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  background: none;
  background-image: none;
}

.footer-country-card__media-panel {
  min-height: 0;
  background-position: center;
  background-size: cover;
}

.footer-country-card__media-panel--dubai {
  background-image: var(--uae-dubai-image);
}

.footer-country-card__media-panel--abu-dhabi {
  background-image: var(--uae-abu-dhabi-image);
  border-top: 1px solid rgba(234, 215, 184, 0.24);
}

.footer-country-card::after {
  display: block;
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.2), rgba(5, 13, 22, 0.38)),
    linear-gradient(90deg, rgba(11, 26, 42, 0.32), rgba(11, 26, 42, 0.08));
}

.footer-country-card__content {
  height: 100%;
  min-height: 360px;
  align-content: start;
  align-items: start;
  grid-template-rows: none;
  gap: 18px;
  padding: 22px;
}

.footer-country-card__heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-self: start;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(234, 215, 184, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-country-card h2 {
  color: var(--ivory);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(5, 13, 22, 0.32);
}

.footer-country-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  width: 100%;
  gap: 10px;
  max-height: none;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.footer-country-links a {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(234, 215, 184, 0.3);
  border-radius: 999px;
  background: rgba(5, 13, 22, 0.56);
  color: var(--porcelain);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 12px 26px rgba(5, 13, 22, 0.18);
  backdrop-filter: blur(12px);
  opacity: 1;
  transform: none;
}

.footer-country-card--uae .footer-country-links {
  flex: 1 1 auto;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 218px;
}

.footer-country-card--uae .footer-country-links a {
  align-self: start;
  justify-self: start;
  width: min(132px, 86%);
}

.footer-country-card--uae .footer-country-links a + a {
  margin-top: 20px;
}

.footer-city-grid,
.footer-city-card,
.footer-city-card__media {
  display: none;
}

@media (max-width: 1100px) {
  .footer-shell {
    width: min(1180px, calc(100% - 40px));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .footer-countries {
    grid-template-columns: 1fr;
  }
}

/* Final readability reinforcement after footer layout overrides. */
.footer-country-links a {
  min-height: 42px;
  color: rgba(246, 243, 238, 0.92);
  font-size: clamp(0.9rem, 0.84rem + 0.16vw, 1rem);
  font-weight: 400;
  line-height: 1.15;
}

.footer-country-card__heading span,
.footer-social {
  color: rgba(246, 243, 238, 0.76);
}
