﻿/* ══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — SPLIT CORPORATE HERO  (.ach-*)
   Panel 28% left (navy) · Image 72% right · Sectors bar bottom
   ══════════════════════════════════════════════════════════════════════════ */

/* ── About page: header fixed → hero can use 100vh cleanly ─────────────── */
body.about-page .site-header {
  position: fixed !important;
  width: 100%;
  left: 0; right: 0;
  top: 0;
}

/* ── Hero shell — full viewport, header overlays the top ───────────────── */
.ach-hero {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 520px;
  isolation: isolate;
  background: #000e1c !important;
  position: relative;
  z-index: 0;
  margin: 0 !important;
  padding: 0 !important;
  /* overflow only on .ach-split — strip must NOT be clipped */
  overflow: visible;
}

/* Exit veil: fades in as user starts scrolling (JS controls opacity) */
.ach-exit-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, #000e1c 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.15s linear;
}

/* ── Split row — takes all hero height minus the sector strip ───────────── */
.ach-split {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden; /* clips image & panel within the split only */
  background: linear-gradient(160deg, #00111f 0%, #001e38 55%, #001529 100%) !important;
}

/* ── Content panel: left 28% — top padding clears the fixed header ──────── */
.ach-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 28%;
  display: flex;
  align-items: center;
  /* top padding = header height + breathing room */
  padding: calc(var(--header-height, 76px) + 1.5rem) clamp(2rem, 3vw, 3.5rem) clamp(2.5rem, 4vw, 4rem);
  z-index: 2;
  background: transparent !important;
}

/* Subtle gold hairline on top edge */
.ach-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 1.5px;
  background: linear-gradient(to right, rgba(197,160,89,0.7), transparent);
  z-index: 4;
}

/* Right-side blend — wide, very soft, dissolves the hard edge into image */
.ach-panel::after {
  content: '';
  position: absolute;
  top: 0; right: -140px; bottom: 0;
  width: 180px;
  background: linear-gradient(
    to right,
    rgba(0, 20, 38, 0.72) 0%,
    rgba(0, 20, 38, 0.22) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* RTL content flow */
.ach-panel-inner {
  width: 100%;
  direction: rtl;
}

/* ── Image panel: right 72% — more space, cinematic crop ────────────────── */
.ach-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 72%;
  overflow: hidden;
  z-index: 1;
}
.ach-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 42%;
  display: block;
  animation: achKenBurns 16s ease-out both;
}
/* Left-edge blend on image side — complements the panel's right bleed */
.ach-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 17, 31, 0.65) 0%,
    rgba(0, 17, 31, 0.15) 14%,
    transparent 30%
  );
  z-index: 1;
  pointer-events: none;
}
/* Gentle top vignette only — no bottom darkening */
.ach-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,8,18,0.15) 0%, transparent 14%);
  z-index: 1;
  pointer-events: none;
}

/* ── Eyebrow label ──────────────────────────────────────────────────────── */
.ach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(197,160,89,0.85);
  margin-bottom: 1.1rem;
  animation: achFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) both 0.1s;
}
.ach-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: rgba(197,160,89,0.7);
  flex-shrink: 0;
}

/* ── Heading — refined size ─────────────────────────────────────────────── */
.ach-heading {
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
  animation: achFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.2s;
}

/* ── Body text ──────────────────────────────────────────────────────────── */
.ach-body {
  font-size: clamp(0.85rem, 1.1vw, 0.97rem);
  line-height: 2;
  color: rgba(210, 195, 168, 0.78);
  margin: 0 0 1.8rem;
  animation: achFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.32s;
}

/* ── CTA button ─────────────────────────────────────────────────────────── */
.ach-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: rgba(197,160,89,0.08);
  border: 1px solid rgba(197,160,89,0.45);
  color: rgba(197,160,89,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  margin-bottom: 2rem;
  animation: achFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.44s;
}
.ach-cta:hover {
  background: rgba(197,160,89,0.16);
  border-color: rgba(197,160,89,0.7);
}

/* ── Stats row ──────────────────────────────────────────────────────────── */
.ach-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(197,160,89,0.12);
  padding-top: 1.3rem;
  animation: achFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.56s;
}
.ach-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.ach-stat:not(:first-child) {
  padding-inline-start: 0.9rem;
  border-inline-start: 1px solid rgba(197,160,89,0.1);
}
.ach-stat-num {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 600;
  color: rgba(197,160,89,0.82);
  line-height: 1;
  letter-spacing: -0.01em;
}
.ach-stat-label {
  font-size: 0.63rem;
  color: rgba(185,165,120,0.45);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ── Sector strip — clear, readable, fused at bottom of hero ────────────── */
.ach-sectors-bar {
  background: #000e1c;
  border-top: 1px solid rgba(197,160,89,0.12);
  flex-shrink: 0;
}
.ach-sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}
.ach-sector-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 0.75rem;
  border-inline-end: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  direction: rtl;
}
.ach-sector-item:last-child { border-inline-end: none; }
.ach-sector-item:hover { background: rgba(197,160,89,0.06); }
.ach-sector-icon {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
  color: rgba(197,160,89,0.75);
}
.ach-sector-icon svg { width: 14px; height: 14px; }
.ach-sector-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ── Keyframes ──────────────────────────────────────────────────────────── */
@keyframes achKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
@keyframes achFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Tablet ≤ 960px ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ach-split {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }
  .ach-panel {
    position: relative;
    top: auto; left: auto; bottom: auto;
    width: 100%;
    padding: 2.8rem 2rem 2.2rem;
    background: linear-gradient(160deg, #00111f, #001e38, #001529) !important;
  }
  .ach-panel::after { display: none; }
  .ach-media {
    position: relative;
    top: auto; right: auto; bottom: auto;
    width: 100%;
    height: 50vw;
  }
  .ach-heading { font-size: clamp(1.9rem, 5.5vw, 2.8rem); }
  .ach-sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .ach-sector-item:nth-child(3) { border-inline-end: none; }
  .ach-sector-item:nth-child(1),
  .ach-sector-item:nth-child(2),
  .ach-sector-item:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

/* ── Mobile ≤ 520px ─────────────────────────────────────────────────────── */
@media (max-width: 520px) {
  .ach-media { height: 58vw; }
  .ach-panel { padding: 2.2rem 1.4rem 1.8rem; }
  .ach-heading { font-size: 1.9rem; }
  .ach-body { font-size: 0.88rem; }
  .ach-sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .ach-sector-item:nth-child(2n) { border-inline-end: none; }
  .ach-sector-item:nth-child(1),
  .ach-sector-item:nth-child(2),
  .ach-sector-item:nth-child(3),
  .ach-sector-item:nth-child(4) {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ach-media img,
  .ach-eyebrow, .ach-heading, .ach-body,
  .ach-cta, .ach-stats { animation: none; }
}

:root {
  --gold-main: #C5A059;
  --gold-light: #D9B56D;
  --gold-dark: #8A743F;
  --navy-dark: #001E3C;
  --navy-main: #002347;
  --navy-soft: #1B4A6E;
  --white: #FFFFFF;
  --off-white: #F6F2E8;
  --light-grey: #F3F1EC;
  --border-grey: #D9C9AA;
  --text-grey: #64748B;
  --heading-dark: #0B203A;
  --bg: #F7F4ED;
  --surface: rgba(255, 255, 255, 0.95);
  --text: #0D243E;
  --text-muted: #5B6B84;
  --brand: #002347;
  --brand-dark: #001E3C;
  --gold: #C5A059;
  --gold-deep: #8A743F;
  --line: rgba(0, 35, 71, 0.08);
  --shadow: 0 18px 42px rgba(0, 35, 71, 0.08);
  --shadow-soft: 0 10px 26px rgba(0, 35, 71, 0.05);
  --shadow-float: 0 22px 48px rgba(0, 35, 71, 0.1);
  --radius: 22px;
  --header-height: 76px;
  --font-ar: "IBM Plex Sans Arabic", "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
}

/* ── Dark Mode Tokens ──────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   Dark Mode — "Warm Luxury Dark"
   Core rule: DARK BACKGROUND + LIGHT CLEAR TEXT.
   Readability is the top priority. Not a soft dim mode.
   ═══════════════════════════════════════════════════════════ */
[data-theme="dark"] {
  /* ── Backgrounds ──────────────────────────────── */
  --bg:           #121820;   /* Deep warm charcoal */
  --surface:      #1E2A3A;   /* Cards — clearly elevated */
  --surface-hi:   #253345;   /* Elevated surfaces */
  --light-grey:   #1A2332;   /* Section alt background */
  --off-white:    #161E2B;

  /* ── Text ─────────────────────────────────────── */
  --text:         #F5F1EA;   /* High-contrast warm cream */
  --text-muted:   #C4AD8A;   /* Warm sand — visible, not invisible */
  --heading-dark: #F2EDE5;   /* Crisp cream for headings */

  /* ── CRITICAL: Remap navy/brand variables ─────── */
  /* These are used directly in 87+ color: rules.   */
  /* Without remapping, dark navy text → invisible. */
  --navy-dark:    #E8E3D8;   /* Was #001E3C — now warm cream */
  --navy-main:    #E8E3D8;   /* Was #002347 — now warm cream */
  --navy-soft:    #C9B99A;   /* Was #1B4A6E — now sand */
  --brand:        #D4A76A;   /* Was #002347 — now warm gold */
  --brand-dark:   #E8E3D8;   /* Was #001E3C — now warm cream */
  --text-grey:    #B0A08A;   /* Was #64748B — warmer, more visible */

  /* ── Borders ──────────────────────────────────── */
  --border-grey:  rgba(197, 160, 89, 0.35);
  --line:         rgba(212, 174, 92, 0.16);

  /* ── Shadows ──────────────────────────────────── */
  --shadow:       0 18px 42px rgba(0, 0, 0, 0.52);
  --shadow-soft:  0 10px 26px rgba(0, 0, 0, 0.38);
  --shadow-float: 0 24px 52px rgba(0, 0, 0, 0.58);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ar);
  background:
    radial-gradient(circle at 82% 10%, rgba(197, 160, 89, 0.06), transparent 18%),
    radial-gradient(circle at 16% 82%, rgba(0, 35, 71, 0.04), transparent 18%),
    linear-gradient(180deg, #f8f4ec 0%, #f6f1e8 54%, #f3ede2 100%);
  color: var(--text);
  line-height: 1.8;
}

button,
input,
textarea,
select {
  font-family: var(--font-ar);
}

html {
  scrollbar-gutter: stable;
}

.bc-intro {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.92s ease, visibility 0s linear 0.92s;
  background: transparent;
}

html.bc-intro-pending .bc-intro {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.bc-intro.is-active,
.bc-intro.is-phase-2 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.bc-intro.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-duration: 0.68s, 0s;
}

.bc-intro.is-exiting .bc-intro__backdrop {
  filter: saturate(1) brightness(0.9);
  transform: scale(1);
}

.bc-intro.is-exiting .bc-intro__veil {
  opacity: 1;
}

.bc-intro.is-exiting .bc-intro__glow {
  opacity: 0.78;
}

.bc-intro.is-exiting .bc-intro__copy--phase2 {
  opacity: 1;
  filter: blur(0);
}

.bc-intro__backdrop,
.bc-intro__veil,
.bc-intro__glow {
  position: absolute;
  inset: 0;
}

.bc-intro__backdrop {
  background:
    radial-gradient(circle at 50% 42%, rgba(197, 160, 89, 0.16), transparent 32%),
    linear-gradient(145deg, #03101d 0%, #08253f 52%, #03111f 100%);
  transform: scale(1);
  transform-origin: center center;
  filter: none;
  transition: filter 0.88s ease;
}

.bc-intro.is-active .bc-intro__backdrop,
.bc-intro.is-phase-2 .bc-intro__backdrop {
  filter: none;
}

.bc-intro__veil {
  background:
    radial-gradient(circle at 50% 38%, rgba(197, 160, 89, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(10, 25, 41, 0.08), rgba(10, 25, 41, 0.18));
  backdrop-filter: blur(4px);
  transition: opacity 0.72s ease;
}

.bc-intro.is-active .bc-intro__veil {
  background:
    radial-gradient(circle at 50% 38%, rgba(197, 160, 89, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(4, 14, 24, 0.46), rgba(4, 14, 24, 0.72));
}

.bc-intro.is-phase-2 .bc-intro__veil {
  background:
    radial-gradient(circle at 50% 38%, rgba(197, 160, 89, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(4, 14, 24, 0.46), rgba(4, 14, 24, 0.72));
}

.bc-intro__glow {
  inset: 23% 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 96, 0.26), transparent 70%);
  filter: blur(42px);
  opacity: 0.78;
  transition: opacity 0.72s ease;
}

.bc-intro.is-active .bc-intro__glow {
  opacity: 0.18;
}

.bc-intro.is-phase-2 .bc-intro__glow {
  opacity: 0.18;
}

.bc-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  width: min(92vw, 820px);
  padding: 2.2rem 1.5rem;
  text-align: center;
}

.bc-intro__logo {
  position: relative;
  z-index: 3;
  width: clamp(172px, 18.5vw, 244px);
  height: auto;
  opacity: 0;
  transform: translateY(-48px) scale(0.92);
  filter:
    drop-shadow(0 0 8px rgba(213, 178, 95, 0.12))
    drop-shadow(0 14px 32px rgba(3, 12, 22, 0.34));
  transition: transform 0.9s ease, filter 0.9s ease;
}

.bc-intro.is-active .bc-intro__logo {
  animation: bcIntroLogoEnter 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards,
    bcIntroLogoGlow 2.8s ease-in-out 0.95s infinite alternate;
}

.bc-intro__copy {
  max-width: min(100%, 700px);
}

.bc-intro__copy--phase2 {
  transition:
    opacity 0.82s ease;
}

.bc-intro__copy--phase2 {
  position: absolute;
  inset: 50% 1.5rem auto;
  opacity: 0;
  width: min(100%, 760px);
  margin-inline: auto;
  transform: translateY(-50%);
  filter: none;
}

.bc-intro.is-phase-2 .bc-intro__copy--phase2 {
  opacity: 1;
  transform: translateY(-50%);
  filter: none;
}

.bc-intro.is-phase-2 .bc-intro__logo {
  opacity: 0;
  animation: none;
  transform: translateY(0) scale(1);
  filter:
    drop-shadow(0 0 0 rgba(213, 178, 95, 0))
    drop-shadow(0 8px 18px rgba(3, 12, 22, 0.18));
  transition-duration: 0.82s;
}

.bc-intro__title,
.bc-intro__subtitle {
  margin: 0;
}

.bc-intro__title {
  color: #fffaf2;
  font-size: clamp(2.25rem, 5.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 24px rgba(6, 18, 31, 0.2);
}

.bc-intro__copy--phase1 .bc-intro__title {
  text-shadow: 0 8px 18px rgba(6, 18, 31, 0.16);
}

.bc-intro__subtitle {
  margin-top: 0.46rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.68vw, 1.34rem);
  font-weight: 500;
  line-height: 1.88;
}

.bc-intro__subtitle--latin {
  position: relative;
  display: block;
  width: max-content;
  margin-inline: auto;
  color: rgba(246, 223, 167, 0.98);
  letter-spacing: 0.46em;
  padding-inline-start: 0.46em;
  text-align: center;
  direction: ltr;
  font-size: clamp(0.86rem, 1.08vw, 0.98rem);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
}

.bc-intro__subtitle--latin::after {
  content: "";
  position: absolute;
  inset: -24% auto -24% -26%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 214, 0.8), transparent);
  opacity: 0;
  transform: skewX(-24deg) translateX(0);
}

.bc-intro__subtitle--statement {
  display: grid;
  gap: 0.18rem;
  max-width: 24ch;
  margin-inline: auto;
  color: #fffaf0;
  font-size: clamp(1.65rem, 3.1vw, 2.7rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.02em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.28);
}

.bc-intro__subtitle--statement span {
  display: block;
}

.bc-intro__copy--phase2 .bc-intro__title,
.bc-intro__copy--phase2 .bc-intro__subtitle--statement,
.bc-intro__copy--phase2 .bc-intro__subtitle--phase2-latin {
  opacity: 0;
  transform: none;
  filter: none;
  transition: opacity 0.62s ease;
}

.bc-intro__copy--phase2 .bc-intro__title {
  margin-bottom: 1.6rem;
  font-size: clamp(2.45rem, 5.8vw, 4.75rem);
  text-align: center;
}

.bc-intro__subtitle--statement {
  text-align: center;
}

.bc-intro.is-phase-2 .bc-intro__copy--phase2 .bc-intro__title {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0s;
}

.bc-intro.is-phase-2 .bc-intro__copy--phase2 .bc-intro__subtitle--statement {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0.12s;
}

.bc-intro__copy--phase2 .bc-intro__subtitle--phase2-latin {
  margin-top: 0.58rem;
}

.bc-intro.is-phase-2 .bc-intro__copy--phase2 .bc-intro__subtitle--phase2-latin {
  opacity: 1;
  transition-delay: 0.34s;
}

.bc-intro.is-phase-2 .bc-intro__copy--phase2 .bc-intro__subtitle--phase2-latin::after {
  animation: bcIntroLightSweep 1.45s ease 0.58s 1 forwards;
}

@keyframes bcIntroBackgroundZoom {
  from { transform: scale(1.065); }
  to { transform: scale(1); }
}

@keyframes bcIntroLogoEnter {
  from {
    opacity: 0;
    transform: scale(0.955);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bcIntroEnglishReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes bcIntroArabicReveal {
  from {
    opacity: 0;
    transform: scale(0.84);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes bcIntroLogoGlow {
  from {
    filter:
      drop-shadow(0 0 0 rgba(213, 178, 95, 0))
      drop-shadow(0 14px 32px rgba(3, 12, 22, 0.32));
  }
  to {
    filter:
      drop-shadow(0 0 14px rgba(213, 178, 95, 0.16))
      drop-shadow(0 16px 34px rgba(3, 12, 22, 0.34));
  }
}

@keyframes bcIntroLightSweep {
  0% {
    opacity: 0;
    transform: skewX(-24deg) translateX(0);
  }
  16% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: skewX(-24deg) translateX(540%);
  }
}


@media (prefers-reduced-motion: reduce) {
  .bc-intro,
  .bc-intro * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 720px) {
  .bc-intro__inner {
    width: min(92vw, 620px);
    padding: 1.9rem 1.1rem;
  }

  .bc-intro__copy--phase2 {
    inset-inline: 1.1rem;
    top: 50%;
    width: auto;
    transform: translateY(0);
  }

  .bc-intro__subtitle--latin {
    letter-spacing: 0.26em;
  }

  .bc-intro__title {
    font-size: clamp(2rem, 8.4vw, 3rem);
  }

  .bc-intro__subtitle {
    font-size: clamp(0.98rem, 3.5vw, 1.12rem);
  }

  .bc-intro.is-phase-2 .bc-intro__logo {
    opacity: 0;
    transform: translateY(-150px) scale(0.92);
  }

  .bc-intro__copy--phase2 .bc-intro__title {
    margin-bottom: 1.15rem;
    font-size: clamp(2.15rem, 8.8vw, 3.2rem);
  }

  .bc-intro__subtitle--statement {
    max-width: 18ch;
  }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(860px, 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(10, 26, 41, 0.88), rgba(10, 26, 41, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 24px rgba(8, 22, 36, 0.10);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Scrolled state: Deep Navy Glass — more depth over light sections */
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(6, 18, 30, 0.985), rgba(8, 20, 34, 0.97));
  border-bottom-color: rgba(197, 160, 89, 0.18);
  box-shadow: 0 8px 32px rgba(4, 12, 24, 0.38), 0 1px 0 rgba(197, 160, 89, 0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 2rem;
  padding-block: 0.65rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.2rem 0;
  min-height: 56px;
}
.brand-lockup {
  flex-shrink: 0;
}
.brand-stacked {
  flex-shrink: 0;
}
.brand > img {
  width: clamp(148px, 15vw, 190px);
  height: auto;
}
.brand-stacked img {
  width: auto;
  height: clamp(56px, 5vw, 72px);
  max-width: 120px;
  filter: drop-shadow(0 10px 18px rgba(5, 16, 27, 0.16));
}
.brand-symbol {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(197, 160, 89, 0.18);
  box-shadow: 0 10px 24px rgba(5, 16, 27, 0.2);
}
.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}
.brand-copy strong {
  color: #f4f7fa;
  font-size: 1.1rem;
  font-weight: 800;
}
.brand-copy small {
  color: rgba(197, 160, 89, 0.95);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-top: 0.16rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-weight: 700;
}
.site-nav a {
  position: relative;
  padding: 0.55rem 0.1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.015em;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0.15rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(230, 200, 120, 0.95), transparent);
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-main);
  background: transparent;
}
.site-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.32);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.header-cta:hover {
  transform: translateY(-1px);
  background: rgba(197, 160, 89, 0.16);
  border-color: rgba(230, 200, 120, 0.48);
  color: #fff3d2;
  box-shadow: 0 10px 22px rgba(197, 160, 89, 0.12);
  filter: none;
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy-main);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.3rem;
}

.hero, .page-hero, .real-estate-hero { padding: 5rem 0 4rem; }
.services-page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 248, 242, 0.92)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 28%);
}
.services-page-modern {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 242, 0.96)),
    radial-gradient(circle at top center, rgba(197, 160, 89, 0.06), transparent 26%);
}
.services-cinematic-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}
.services-cinematic-media,
.services-cinematic-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.services-cinematic-media img {
  object-fit: cover;
  object-position: center;
}
.services-cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.2), rgba(10, 31, 51, 0.74)),
    linear-gradient(90deg, rgba(10, 31, 51, 0.12), rgba(10, 31, 51, 0.5));
  z-index: 1;
}
.services-cinematic-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5.8rem 0 4.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.services-cinematic-copy {
  width: 100%;
  max-width: 500px;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  padding-inline-end: 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.services-cinematic-copy h1 {
  max-width: 500px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 0 16px 30px rgba(10, 31, 51, 0.26);
  text-wrap: balance;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.services-cinematic-copy p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 420px;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  font-size: 15px;
}
.services-cinematic-copy .eyebrow,
.services-cinematic-copy .button {
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-left: auto;
  margin-right: 0;
}
.services-cinematic-copy .eyebrow {
  margin-bottom: 0;
}
.services-cinematic-copy .button {
  padding: 0.78rem 1.35rem;
  font-size: 0.92rem;
  margin-top: 20px;
}
.service-band {
  position: relative;
  z-index: 1;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 68px 0;
  background: transparent;
}
#services-start {
  scroll-margin-top: 120px;
}
.service-band + .service-band {
  margin-top: 4px;
  z-index: 1;
}
.service-band.reversed {
  flex-direction: row-reverse;
}
.service-band.featured {
  background: transparent;
}
.service-band-media {
  position: relative;
  flex: 0 0 52%;
  width: 52%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(10, 31, 51, 0.12);
  z-index: 2;
  order: 2;
}
.service-band.reversed .service-band-media {
  order: 1;
}
.service-band-media::before,
.service-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-band-media::before {
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.04), rgba(10, 31, 51, 0.12)),
    linear-gradient(90deg, rgba(10, 31, 51, 0.04), rgba(10, 31, 51, 0));
}
.service-band-media::after {
  background: linear-gradient(
    to left,
    rgba(255,255,255,0.62) 10%,
    rgba(255,255,255,0.08) 24%,
    transparent 100%
  );
}
.service-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  filter: contrast(1.05) brightness(0.95) saturate(1.05);
}
.service-band.reversed .service-band-media::after {
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.62) 10%,
    rgba(255,255,255,0.08) 24%,
    transparent 100%
  );
}
.service-band-panel {
  position: relative;
  flex: 0 0 40%;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin-right: -22px;
  background: transparent;
  z-index: 3;
  min-height: 360px;
  order: 1;
}
.service-band.reversed .service-band-panel {
  justify-content: flex-end;
  order: 2;
  margin-right: 0;
  margin-left: -22px;
}
.service-band-offset-soft .service-band-panel {
  margin-right: -12px;
}
.service-band.reversed.service-band-offset-soft .service-band-panel {
  margin-left: -12px;
  margin-right: 0;
}
.service-band-offset-strong .service-band-panel {
  margin-right: -28px;
}
.service-band.reversed.service-band-offset-strong .service-band-panel {
  margin-left: -28px;
  margin-right: 0;
}
.service-band.featured .service-band-panel {
  background: transparent;
}
.service-band-panel::before {
  display: none;
}
.service-band.reversed .service-band-panel::before {
  display: none;
}
.service-band.featured .service-band-panel::before {
  display: none;
}
.service-band-light .service-band-panel::before {
  display: none;
}
.service-band-index,
.service-band-copy {
  position: relative;
  z-index: 1;
}
.service-band-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.14);
  color: rgba(15, 42, 68, 0.62);
  font-weight: 800;
  font-size: 1rem;
}
.service-band-copy {
  max-width: 390px;
  width: 100%;
  text-align: right;
  margin: 0;
  padding: 4rem 1.55rem 1.15rem 1.65rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98));
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(10, 31, 51, 0.08);
}
.service-band-copy h2 {
  margin-bottom: 0.5rem;
  font-size: 32px;
  line-height: 1.3;
  color: var(--heading-dark);
  text-align: right;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-band-copy p {
  margin-bottom: 0;
  color: #666;
  line-height: 1.6;
  text-align: right;
  font-size: 13px;
  max-width: 280px;
}
.service-band-dark .service-band-copy {
  background: linear-gradient(135deg, rgba(10, 31, 51, 0.9), rgba(18, 43, 67, 0.94));
  box-shadow: 0 18px 46px rgba(10, 31, 51, 0.16);
}
.service-band-dark .service-band-copy h2,
.service-band-dark .service-band-copy p,
.service-band-dark .service-band-copy .check-list li {
  color: #fff;
}
.service-band-dark .service-band-copy p {
  color: rgba(255, 255, 255, 0.82);
}
.service-band-dark .service-band-copy .check-list li::before {
  background: var(--gold-light);
}
.service-band-dark .service-band-index {
  background: rgba(230, 200, 120, 0.16);
  color: rgba(255, 255, 255, 0.88);
}
.service-band-dark .service-band-cta {
  background: var(--gold-main);
  color: var(--navy-dark);
}
.service-band-copy .check-list {
  margin-top: 0.7rem;
  padding-right: 0;
  text-align: right;
}
.service-band-copy .check-list li {
  margin-bottom: 8px;
  color: var(--heading-dark);
  text-align: right;
  font-size: 12px;
  line-height: 1.6;
}
.service-band-cta {
  margin-top: 18px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  padding: 8px 16px;
  font-size: 0.78rem;
  border-radius: 25px;
  box-shadow: 0 12px 24px rgba(197, 160, 89, 0.18);
}
.service-band-warm .service-band-media::before {
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.03), rgba(10, 31, 51, 0.12)),
    linear-gradient(90deg, rgba(197, 160, 89, 0.08), rgba(10, 31, 51, 0));
}
.service-band:hover .service-band-media img {
  transform: scale(1.03);
}
.service-band-industrial .service-band-media::before {
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.08), rgba(10, 31, 51, 0.22)),
    linear-gradient(90deg, rgba(28, 63, 94, 0.08), rgba(10, 31, 51, 0));
}
.service-band-cta-light {
  color: var(--navy-dark);
}
#service-construction .service-band-media img {
  object-position: center center;
}
#service-infrastructure .service-band-media img {
  object-position: center 42%;
}
#service-maintenance .service-band-media img {
  object-position: center 32%;
}
#service-steel .service-band-media img {
  object-position: center 40%;
}
#service-estate .service-band-media img {
  object-position: center center;
}
.services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    radial-gradient(circle at left center, rgba(15, 42, 68, 0.04), transparent 30%);
  pointer-events: none;
}
.services-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: center;
  gap: 2.25rem;
}
.services-hero-points span {
  background: rgba(15, 42, 68, 0.06);
  border-color: rgba(15, 42, 68, 0.08);
  color: var(--navy-main);
  box-shadow: none;
}
.services-hero-visual {
  display: flex;
  justify-content: end;
}
.services-hero-frame {
  position: relative;
  width: min(100%, 500px);
  padding: 0.7rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 248, 242, 0.92)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 36%);
  border: 1px solid rgba(231, 225, 214, 1);
  box-shadow: 0 28px 56px rgba(10, 31, 51, 0.1);
}
.services-hero-frame img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.services-hero-overlay {
  position: absolute;
  inset: auto 1.35rem 1.35rem 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(15, 42, 68, 0.94), rgba(10, 31, 51, 0.92));
  color: #fff;
  box-shadow: 0 20px 36px rgba(10, 31, 51, 0.18);
}
.services-hero-overlay strong {
  display: block;
  font-size: 1.05rem;
}
.services-hero-overlay span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}
.premium-hero {
  position: relative;
  overflow: hidden;
}
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(8, 54, 70, 0.92), rgba(13, 86, 108, 0.82));
  z-index: -2;
}
.premium-hero::after {
  content: none;
}
.homepage-hero.premium-hero::before,
.homepage-hero.premium-hero::after {
  display: block;
}
.homepage-hero.premium-hero::before {
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.1), rgba(10, 31, 51, 0.38)),
    linear-gradient(90deg, rgba(10, 31, 51, 0.1), rgba(10, 31, 51, 0.18) 48%, rgba(10, 31, 51, 0.32)),
    url("../images/hero-clean.webp") 56% center/cover no-repeat;
  filter: saturate(1.12) contrast(1.09) brightness(1.06);
}
.homepage-hero.premium-hero::after {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(circle at 60% 45%, rgba(230, 200, 120, 0.16), transparent 20%),
    radial-gradient(circle at 58% 46%, rgba(255, 255, 255, 0.08), transparent 14%),
    radial-gradient(circle at 50% 50%, rgba(10, 31, 51, 0), rgba(10, 31, 51, 0.1) 58%, rgba(10, 31, 51, 0.28) 100%);
}
.homepage-hero::after,
.homepage-hero::before {
  animation: none;
}
.homepage-hero {
  height: calc(100dvh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}
.homepage-hero .hero-grid {
  height: 100%;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  align-content: center;
  padding: 2rem 0 0.8rem;
}
.homepage-hero-clean {
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}
.hero-grid-home {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  justify-content: space-between;
  gap: 2.5rem;
}
.hero-grid-home-final {
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 560px);
  align-items: center;
  gap: 2rem;
}
.homepage-hero .hero-copy {
  max-width: 720px;
  transform: translateY(6vh);
  opacity: 0;
  animation: heroRevealText 0.8s ease forwards;
}
.hero-copy-final {
  padding: 0.9rem 0.2rem 0.9rem 0;
  position: relative;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-copy-final::before {
  content: "";
  position: absolute;
  right: auto;
  left: -0.75rem;
  top: 1rem;
  width: 4px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0), rgba(197, 160, 89, 0.95), rgba(197, 160, 89, 0));
  box-shadow: 0 0 18px rgba(197, 160, 89, 0.22);
}
.homepage-hero .hero-copy h1 {
  font-size: clamp(3.15rem, 5vw, 5.45rem);
  max-width: 8.5ch;
  margin-bottom: 0.7rem;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 16px 30px rgba(10, 31, 51, 0.34);
  position: relative;
}
.homepage-hero .hero-copy h1::after {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 0.6rem;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0), rgba(197, 160, 89, 0.9), rgba(197, 160, 89, 0));
}
.homepage-hero .hero-copy h1 span {
  color: var(--gold-light);
  text-shadow: 0 6px 14px rgba(197, 160, 89, 0.14);
  position: relative;
}
.homepage-hero .hero-copy h1 span::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0.2rem;
  height: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.03), rgba(197, 160, 89, 0.18), rgba(197, 160, 89, 0.03));
  z-index: -1;
}
.homepage-hero .hero-copy .lead {
  max-width: 50ch;
  font-size: 1rem;
  line-height: 1.86;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 10px 20px rgba(10, 31, 51, 0.22);
}
.hero-note {
  margin: 0 0 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.7;
  position: relative;
  padding-right: 1rem;
}
.hero-note::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.28);
}
.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
  max-width: none;
}
.hero-trust-strip article {
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 22px rgba(10, 31, 51, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.hero-trust-strip strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.hero-trust-strip span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.5;
}
.hero-trust-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 200, 120, 0.18);
}
.premium-hero .hero-copy h1,
.premium-hero .hero-copy .lead,
.premium-hero .eyebrow,
.premium-hero .hero-stats span {
  color: #fff;
}
.hero-visual-home {
  display: flex;
  justify-content: center;
}
.hero-visual-home-final {
  position: relative;
  justify-content: end;
  width: 100%;
  opacity: 0;
  animation: heroRevealMedia 0.95s ease 0.08s forwards;
}
.showreel-frame {
  width: min(100%, 560px);
  padding: 0.45rem;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(197, 160, 89, 0.06), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(10, 31, 51, 0.14);
  position: relative;
  isolation: isolate;
  animation: none;
  transform: none;
}
.showreel-frame::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.14), transparent 68%);
  z-index: -1;
  pointer-events: none;
}
.showreel-frame::after {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 63, 94, 0.16), transparent 68%);
  z-index: -1;
  pointer-events: none;
}
.showreel-topbar,
.showreel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.showreel-topbar {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.showreel-screen {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: clamp(430px, 58dvh, 640px);
  background: #061f29;
}
.showreel-badges {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.showreel-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 31, 51, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(10, 31, 51, 0.12);
}
.showreel-stat-chip {
  position: absolute;
  z-index: 2;
  min-width: 132px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(10, 31, 51, 0.18);
}
.showreel-stat-chip strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}
.showreel-stat-chip span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}
.showreel-stat-chip-primary {
  left: 1rem;
  bottom: 7.2rem;
}
.showreel-stat-chip-secondary {
  left: 1rem;
  top: 4rem;
}
.showreel-slides,
.showreel-slide {
  position: absolute;
  inset: 0;
}
.showreel-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.showreel-slide.active {
  opacity: 1;
}
.showreel-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showreel-slide img {
  transform: scale(1.01);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.showreel-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.04), rgba(10, 31, 51, 0.62)),
    linear-gradient(90deg, rgba(10, 31, 51, 0.22), rgba(10, 31, 51, 0.02) 42%, rgba(10, 31, 51, 0.2));
}
.showreel-overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(10, 31, 51, 0.42), rgba(10, 31, 51, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.showreel-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0));
  pointer-events: none;
}
.play-badge {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  animation: pulseRing 2.4s ease-out infinite;
}
.play-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-main);
  color: #FFFFFF;
  font-size: 1.1rem;
  box-shadow: 0 14px 28px rgba(138, 116, 63, 0.28);
}
.showreel-copy {
  color: #fff;
}
.showreel-copy strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 30ch;
}
.showreel-copy span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  max-width: 40ch;
}
.showreel-footer {
  margin-top: 0.9rem;
}
.showreel-footer article {
  flex: 1;
  padding: 0.78rem 0.84rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.showreel-footer strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.showreel-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  margin-top: 0.1rem;
}
.showreel-footer article:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 200, 120, 0.16);
}
.animated-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.45rem;
  position: relative;
  z-index: 2;
}
.animated-stat-card {
  padding: 2.4rem 1.9rem 1.95rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 248, 242, 0.98)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 38%);
  border: 1px solid rgba(231, 225, 214, 1);
  box-shadow: 0 22px 44px rgba(10, 31, 51, 0.08);
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.animated-stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 108px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-main), rgba(197, 160, 89, 0));
  transition: width 0.28s ease, background 0.28s ease;
}
.animated-stat-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.animated-stat-card strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 0.12em;
  direction: ltr;
  unicode-bidi: bidi-override;
  color: var(--navy-main);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(3.7rem, 5.6vw, 5.2rem);
  line-height: 0.92;
  margin-bottom: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: color 0.28s ease;
}
.animated-stat-card .count-up {
  display: inline-block;
  min-width: 1.9ch;
  line-height: 1;
  font: inherit;
}
.animated-stat-card span {
  display: block;
  color: var(--text-grey);
  margin-top: 0.28rem;
  line-height: 1.65;
  font-size: 1.28rem;
  font-weight: 700;
  transition: color 0.28s ease;
}
.animated-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(10, 31, 51, 0.1);
}
.animated-stat-card:hover,
.animated-stat-card:active {
  background:
    linear-gradient(160deg, rgba(15, 42, 68, 0.98), rgba(10, 31, 51, 0.98)),
    radial-gradient(circle at top left, rgba(230, 200, 120, 0.14), transparent 40%);
  border-color: rgba(230, 200, 120, 0.28);
  box-shadow: 0 28px 54px rgba(10, 31, 51, 0.16);
}
.animated-stat-card:hover::before,
.animated-stat-card:active::before {
  width: 160px;
  background: linear-gradient(90deg, rgba(230, 200, 120, 1), rgba(230, 200, 120, 0));
}
.animated-stat-card:hover strong,
.animated-stat-card:active strong,
.animated-stat-card:hover span,
.animated-stat-card:active span {
  color: #fff;
}
.hero-summary-card {
  padding: 1.6rem;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(2, 18, 24, 0.26);
  color: #fff;
}
.hero-summary-card > span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-summary-card h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
  line-height: 1.6;
  color: #fff;
}
.hero-summary-metrics {
  display: grid;
  gap: 0.8rem;
}
.hero-summary-metrics article {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-summary-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}
.hero-summary-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.15rem;
}
.skyline-frame {
  position: relative;
  width: min(100%, 500px);
  padding: 1rem;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(2, 18, 24, 0.35);
}
.skyline-frame-final {
  width: min(100%, 480px);
  padding: 1rem;
}
.skyline-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.skyline-caption {
  position: absolute;
  right: 2rem;
  left: 2rem;
  bottom: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(7, 38, 50, 0.84);
  color: #fff;
}
.skyline-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.skyline-caption strong {
  display: block;
  font-size: 1.1rem;
}
.skyline-caption-final strong {
  font-size: 1rem;
  line-height: 1.7;
}
.premium-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
}
.premium-hero .hero-stats article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}
.premium-hero .hero-stats strong { color: #fff; }
.hero-grid, .split-section, .contact-grid, .real-estate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}
.hero-copy h1, .page-hero h1 { font-size: clamp(2.3rem, 4vw, 4.6rem); line-height: 1.15; margin-bottom: 1rem; }
.hero-copy .lead, .page-hero .lead { font-size: 1.1rem; color: var(--text-muted); max-width: 55ch; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(216, 181, 100, 0.18);
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-actions, .cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

.hero-scroll-cue {
  margin-top: 1.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  text-decoration: none;
  color: rgba(255, 245, 217, 0.92);
  min-width: 110px;
}

.hero-scroll-cue .explore-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 0.25s ease;
}

.hero-scroll-cue .explore-line {
  width: 66px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 174, 92, 0.95), transparent);
  opacity: 0.88;
}

.hero-scroll-cue .explore-arrow-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, rgba(212, 174, 92, 0.95), transparent);
  transform-origin: top center;
  animation: heroExplorePulse 1.8s ease-in-out infinite;
}

.hero-scroll-cue:hover .explore-text {
  color: rgba(244, 228, 188, 0.98);
}

.hero-scroll-cue:hover .explore-arrow-line {
  animation-duration: 1.2s;
}

@keyframes heroExplorePulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(7px); opacity: 1; }
}

.hero-scroll-cue--bottom {
  position: absolute;
  left: 50%;
  bottom: clamp(0.95rem, 2.2vh, 1.5rem);
  transform: translateX(-50%);
  z-index: 6;
  margin-top: 0;
}

.about-page .hero-scroll-cue--bottom {
  bottom: clamp(0.35rem, 1.75vh, 1.55rem);
  z-index: 8;
}

@media (max-width: 900px) {
  .about-page .hero-scroll-cue--bottom {
    bottom: clamp(1.55rem, 6.2vh, 4.75rem);
  }
}

@media (max-width: 520px) {
  .about-page .hero-scroll-cue--bottom {
    bottom: clamp(2.45rem, 8.6vh, 6.25rem);
  }
}

.estate-studio-hero--about-page .about-hero-open-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(8, 22, 36, 0.26), rgba(4, 12, 22, 0.74) 70%),
    rgba(4, 12, 22, 0.6);
  opacity: 1;
}

.estate-studio-hero--about-page .about-hero-open-veil.is-fading {
  opacity: 0;
  transition: opacity 16s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.estate-studio-hero--about-page .about-hero-gold-particles--subtle {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.estate-studio-hero--about-page .about-hero-gold-particles--subtle span {
  position: absolute;
  bottom: clamp(8%, 14vh, 22%);
  left: var(--x, 50%);
  width: var(--size, 3px);
  height: var(--size, 3px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 236, 190, 0.92),
    rgba(220, 175, 88, 0.45) 52%,
    rgba(200, 150, 70, 0)
  );
  opacity: 0.12;
  filter: blur(0.2px);
  animation: aboutHeroGoldRiseSubtle var(--dur, 11.5s) linear infinite;
  animation-delay: var(--delay, 0s);
  box-shadow:
    0 0 10px rgba(255, 215, 140, 0.55),
    0 0 22px rgba(229, 190, 105, 0.28);
}

@keyframes aboutHeroGoldRiseSubtle {
  0% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.18;
  }
  8% {
    opacity: 0.78;
  }
  42% {
    opacity: 0.62;
  }
  78% {
    opacity: 0.28;
  }
  100% {
    transform: translate3d(0, -58vh, 0) scale(1.08);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .estate-studio-hero--about-page .about-hero-open-veil,
  .estate-studio-hero--about-page .about-hero-open-veil.is-fading {
    opacity: 0 !important;
    transition: none !important;
  }

  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span {
    animation: none !important;
    bottom: auto !important;
    transform: none !important;
    opacity: 0.48 !important;
    visibility: visible !important;
    box-shadow: 0 0 12px rgba(255, 215, 140, 0.4);
  }

  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(1) {
    top: 16%;
    left: 10%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(2) {
    top: 28%;
    left: 26%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(3) {
    top: 44%;
    left: 42%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(4) {
    top: 62%;
    left: 54%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(5) {
    top: 34%;
    left: 72%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(6) {
    top: 52%;
    left: 86%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(7) {
    top: 22%;
    left: 58%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(8) {
    top: 70%;
    left: 18%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(9) {
    top: 38%;
    left: 92%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(10) {
    top: 58%;
    left: 34%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(11) {
    top: 12%;
    left: 38%;
  }
  .estate-studio-hero--about-page .about-hero-gold-particles--subtle span:nth-child(12) {
    top: 76%;
    left: 66%;
  }
}

.about-hero-stage--minimal {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  margin-inline: auto !important;
  padding: 0 0.6rem !important;
  align-items: center !important;
  text-align: center !important;
  gap: 0.9rem !important;
}

.about-hero-stage--minimal .eyebrow {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: rgba(235, 214, 165, 0.92) !important;
}

.about-hero-stage--minimal .about-hero-stage__brand-ar {
  margin: 0 !important;
  transform: none !important;
  color: #f4e6c8 !important;
  -webkit-text-fill-color: #f4e6c8 !important;
  font-size: clamp(2.7rem, 5vw, 4.2rem) !important;
  line-height: 1.06 !important;
}

.about-hero-stage--minimal .about-hero-stage__subtitle {
  margin: 0 !important;
  transform: none !important;
  max-width: 38ch;
  color: rgba(248, 251, 255, 0.96) !important;
  font-size: clamp(1.06rem, 1.45vw, 1.28rem) !important;
  line-height: 1.9 !important;
}

.about-hero-stage__mini--simple {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.9rem !important;
  margin-top: 0.15rem !important;
}

.about-hero-stage__mini--simple .about-hero-stage__mini-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 96px;
  padding: 0.34rem 0.82rem !important;
  border-radius: 999px !important;
  color: rgba(244, 228, 188, 0.95) !important;
  background: rgba(9, 24, 40, 0.34) !important;
  border: 1px solid rgba(225, 194, 126, 0.24) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
}

.hero-scroll-cue__mouse {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(212, 174, 92, 0.95);
  border-radius: 18px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(14, 30, 47, 0.35) inset;
}

.hero-scroll-cue__mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: rgba(212, 174, 92, 0.95);
  transform: translateX(-50%);
  animation: heroScrollDot 1.65s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.hero-points span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(4, 26, 34, 0.22);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: linear-gradient(135deg, var(--gold-main), #ac8f44);
  color: var(--navy-dark);
  box-shadow: 0 18px 35px rgba(0, 35, 71, 0.16);
}
.button-primary:hover {
  background: var(--gold-main);
}
.button-secondary {
  border-color: rgba(197, 160, 89, 0.7);
  background: transparent;
  color: var(--gold-main);
}
.button-secondary:hover {
  background: rgba(197, 160, 89, 0.18);
}
.button.light.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}
.button.light.button-primary {
  color: var(--brand-dark);
  background: linear-gradient(135deg, #efcf7d, var(--gold-dark));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stats article,
.feature-card,
.service-panel,
.info-card,
.service-detail,
.journey-card,
.contact-card,
.contact-form,
.dark-panel,
.quote-card,
.hero-card,
.estate-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-stats article { padding: 1rem 1.1rem; }
.hero-stats strong { display: block; font-size: 1.5rem; color: var(--brand-dark); }
.hero-card { padding: 1.2rem; background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(245, 240, 230, 0.72)); }
.hero-logo { width: min(320px, 80%); margin-inline: auto; }
.hero-badge { margin-top: 1rem; text-align: center; color: var(--gold-deep); font-weight: 800; }
.mockup { margin-top: 1.2rem; border-radius: 34px; border: 1px solid rgba(18, 63, 86, 0.08); box-shadow: var(--shadow); }
.headline-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.9rem;
  position: relative;
}
.headline-band h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading-dark);
}
.headline-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0), rgba(197, 160, 89, 0.9), rgba(197, 160, 89, 0));
}
.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.preview-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 232, 0.92));
  box-shadow: var(--shadow);
}
.preview-card h3 { margin: 0.8rem 0 0.4rem; }
.preview-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--brand-dark);
}
.headline-band-centered {
  justify-content: center;
  text-align: center;
}
.section-lead {
  max-width: 70ch;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.95;
}
.executive-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stats-strip article {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(18, 63, 86, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}
.stats-strip strong {
  display: block;
  font-size: 1.25rem;
  color: var(--brand-dark);
}
.stats-strip span {
  display: block;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.executive-card,
.service-showcase-card,
.company-presence-panel article {
  border-radius: 16px;
  border: 1px solid rgba(231, 225, 214, 1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 248, 242, 0.96)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.06), transparent 40%);
  box-shadow: 0 18px 38px rgba(10, 31, 51, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.executive-card::before,
.service-showcase-card::before,
.company-presence-panel article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0), rgba(197, 160, 89, 0.9), rgba(197, 160, 89, 0));
}
.executive-card {
  padding: 1.8rem 1.6rem;
}
.executive-card span {
  display: inline-flex;
  color: var(--gold-deep);
  font-weight: 800;
  margin-bottom: 0.72rem;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}
.executive-card h3,
.service-showcase-card h3,
.company-presence-panel strong,
.client-sector-card h3 {
  margin-bottom: 0.55rem;
  line-height: 1.28;
  color: var(--heading-dark);
}
.executive-card p,
.service-showcase-card p,
.client-sector-card p {
  line-height: 1.9;
}
.executive-card p,
.service-showcase-card p,
.company-presence-panel span,
.client-sector-card p,
.cta-block p {
  color: var(--text-muted);
}
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
}
.service-showcase-card {
  padding: 1.65rem 1.45rem;
  min-height: 248px;
}
.executive-card:hover,
.service-showcase-card:hover,
.company-presence-panel article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(10, 31, 51, 0.09);
  border-color: rgba(197, 160, 89, 0.3);
}
.service-showcase-card h3 {
  margin-bottom: 0.75rem;
}
.accent-card {
  background: linear-gradient(160deg, var(--navy-main), var(--navy-dark) 96%);
  color: #fff;
  grid-column: span 2;
}
.accent-card::before {
  background: linear-gradient(90deg, rgba(230, 200, 120, 0), rgba(230, 200, 120, 0.95), rgba(230, 200, 120, 0));
}
.accent-card p,
.accent-card h3 {
  color: #fff;
}
.accent-card h3 {
  color: #fff;
}
.light-link {
  color: rgba(255, 255, 255, 0.92);
}
.split-section-balanced {
  align-items: stretch;
}
.company-presence-panel {
  display: grid;
  gap: 1rem;
}
.company-presence-panel article {
  padding: 1.5rem 1.55rem;
}
.company-presence-panel strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.42rem;
}
.company-presence-panel span {
  display: block;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.8;
}
.client-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}
.client-sector-card {
  padding: 1.95rem 1.85rem;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(15, 42, 68, 0.98), rgba(10, 31, 51, 0.98) 96%),
    radial-gradient(circle at top right, rgba(230, 200, 120, 0.08), transparent 34%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(10, 31, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(230, 200, 120, 0.08);
}
.client-sector-card.private {
  background:
    linear-gradient(160deg, rgba(197, 160, 89, 0.12), rgba(255, 255, 255, 1)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 42%);
  color: var(--text);
  border: 1px solid rgba(231, 225, 214, 1);
  box-shadow: 0 10px 24px rgba(10, 31, 51, 0.05);
}
.client-sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(10, 31, 51, 0.09);
}
.client-sector-card span {
  display: inline-flex;
  margin-bottom: 0.95rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}
.client-sector-card.private span {
  background: rgba(15, 42, 68, 0.08);
  color: var(--brand-dark);
}
.client-sector-card h3,
.client-sector-card p,
.client-sector-card .check-list li {
  color: inherit;
}
.client-sector-card .check-list {
  margin-top: 1.15rem;
}
.client-sector-card .check-list li {
  margin-bottom: 0.72rem;
}
.client-sector-card .check-list li::before {
  background: currentColor;
  opacity: 0.7;
}
.value-stack {
  display: grid;
  gap: 1rem;
}
.value-stack article {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.value-stack span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--gold-deep);
  font-weight: 800;
}

.section { padding: 100px 0; }
.section-compact { padding: 0 0 2.3rem; margin-top: -2.8rem; }
.section-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 248, 242, 0.9)),
    radial-gradient(circle at top center, rgba(197, 160, 89, 0.06), transparent 34%);
}
.section-soft-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(15, 42, 68, 0.04));
}
.section-tinted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(216, 181, 100, 0.07)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.06), transparent 28%);
}
.section-dark {
  background: linear-gradient(180deg, #082645 0%, #082746 58%, #072340 100%);
  color: #f8f7f3;
}
.section-heading { margin-bottom: 2rem; }
.section-heading h2, .split-section h2 { font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.2; margin-bottom: 0.9rem; }
.section-heading p { color: var(--text-muted); max-width: 70ch; }

.feature-grid, .services-overview, .two-column-grid, .journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.two-column-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card, .service-panel, .info-card, .journey-card, .dark-panel { padding: 1.6rem; }
.feature-card span, .journey-card strong { color: var(--gold-deep); font-size: 1.2rem; font-weight: 800; }
.service-panel.accent, .featured-detail {
  background: linear-gradient(160deg, rgba(15, 102, 127, 0.94), rgba(10, 75, 96, 0.96));
  color: #fff;
}
.service-panel.accent p, .featured-detail p, .featured-detail li, .section-dark p, .section-dark .eyebrow { color: rgba(255, 255, 255, 0.88); }
.featured-detail .text-link, .section-dark .button-secondary { color: #fff; }
.section-action { margin-top: 2rem; }

.check-list { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.check-list li { position: relative; padding-right: 1.5rem; margin-bottom: 0.65rem; }
.check-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-card, .logo-frame { padding: 2rem; }
.quote-card p { font-size: 1.25rem; line-height: 1.9; }
.quote-card span { color: var(--gold-deep); font-weight: 800; }
.quote-card.gold { background: linear-gradient(160deg, rgba(216, 181, 100, 0.2), rgba(255, 255, 255, 0.84)); }
.quote-card-home {
  background:
    linear-gradient(160deg, var(--navy-main), var(--navy-dark) 96%),
    radial-gradient(circle at top left, rgba(230, 200, 120, 0.1), transparent 32%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 46px rgba(10, 31, 51, 0.14);
}
.quote-card-home p,
.quote-card-home span {
  color: #fff;
}
.quote-card-home p {
  font-size: 1.32rem;
  line-height: 2;
}
.quote-card-home span {
  opacity: 0.8;
  color: rgba(230, 200, 120, 0.92);
}
.logo-frame { background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(242, 237, 226, 0.86)); }
.logo-frame img { width: min(340px, 100%); margin-inline: auto; }

.service-stack { display: grid; gap: 1.2rem; }
.services-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.services-intro-card {
  padding: 1.55rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(231, 225, 214, 1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 248, 242, 0.96)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.06), transparent 40%);
  box-shadow: 0 18px 38px rgba(10, 31, 51, 0.06);
}
.services-intro-card strong {
  display: block;
  color: var(--gold-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.services-intro-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}
.service-stack { display: grid; gap: 1.35rem; }
.service-detail {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1.15rem;
  padding: 1.85rem;
  border-radius: 20px;
  border: 1px solid rgba(231, 225, 214, 1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 248, 242, 0.97)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.06), transparent 36%);
  box-shadow: 0 22px 42px rgba(10, 31, 51, 0.08);
  align-items: start;
}
.service-detail .eyebrow {
  margin-bottom: 0.75rem;
}
.service-detail h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.2;
}
.service-detail p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.95;
}
.service-detail .check-list {
  margin-top: 0;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(15, 42, 68, 0.04);
  border: 1px solid rgba(15, 42, 68, 0.06);
}
.service-detail .check-list li {
  margin-bottom: 0.7rem;
  color: var(--heading-dark);
}
.service-detail .check-list li:last-child {
  margin-bottom: 0;
}
.featured-detail {
  background:
    linear-gradient(160deg, rgba(15, 42, 68, 0.98), rgba(10, 31, 51, 0.98)),
    radial-gradient(circle at top left, rgba(230, 200, 120, 0.12), transparent 34%);
  border-color: rgba(230, 200, 120, 0.2);
  box-shadow: 0 28px 52px rgba(10, 31, 51, 0.14);
}
.featured-detail h2,
.featured-detail p,
.featured-detail .eyebrow,
.featured-detail .text-link {
  color: #fff;
}
.featured-detail .text-link {
  color: rgba(255, 255, 255, 0.92);
}
.featured-detail .text-link:hover {
  color: var(--gold-light);
}
.featured-detail .check-list {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.featured-detail .check-list li {
  color: rgba(255, 255, 255, 0.92);
}
.project-types { display: grid; gap: 1rem; }
.project-types article {
  padding: 1.3rem 1.4rem;
  border-right: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.journey-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.journey-card { min-height: 220px; }
.estate-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}
.estate-metrics article {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.estate-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}
.estate-metrics span { color: rgba(255, 255, 255, 0.82); }
.floating-card { margin-bottom: -2.5rem; position: relative; z-index: 1; }
.card-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(216, 181, 100, 0.18);
  color: var(--gold-deep);
  font-weight: 800;
}
.estate-visual-stack { position: relative; }
.estate-mini-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: rgba(9, 59, 77, 0.88);
  color: #fff;
  box-shadow: var(--shadow);
}
.estate-mini-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.estate-mini-card strong { display: block; margin-top: 0.2rem; }

.project-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(15, 102, 127, 0.04));
}
.inventory-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.inventory-overview article {
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 226, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.inventory-overview strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.4rem;
}
.inventory-overview span { color: var(--text-muted); }
.project-card {
  padding: 1.8rem;
  margin-bottom: 1.4rem;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}
.project-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}
.project-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.status,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}
.status-live { background: rgba(15, 102, 127, 0.12); color: var(--brand-dark); }
.status-soon { background: rgba(216, 181, 100, 0.18); color: #8f6b22; }
.status-location { background: rgba(18, 63, 86, 0.08); color: var(--text); }
.project-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 320px;
}
.project-summary div {
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 245, 239, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--line);
  text-align: center;
}
.project-summary strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.1rem;
}
.project-summary span {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 1rem;
}
.project-visual {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}
.project-visual-one {
  background:
    linear-gradient(160deg, rgba(8, 54, 70, 0.22), rgba(8, 54, 70, 0.42)),
    linear-gradient(135deg, #caa65a 0%, #f2dfb3 35%, #0f667f 100%);
}
.project-visual-two {
  background:
    linear-gradient(160deg, rgba(8, 54, 70, 0.3), rgba(8, 54, 70, 0.5)),
    linear-gradient(135deg, #103c51 0%, #42788b 45%, #ddbf79 100%);
}
.project-visual-three {
  background:
    linear-gradient(160deg, rgba(8, 54, 70, 0.28), rgba(8, 54, 70, 0.48)),
    linear-gradient(135deg, #d8b564 0%, #f6edd7 32%, #0f667f 100%);
}
.project-visual::before {
  content: "";
  position: absolute;
  inset: 12% 12% auto auto;
  width: 66%;
  height: 66%;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}
.visual-overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: rgba(7, 44, 57, 0.82);
  color: #fff;
}
.visual-overlay span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.4rem;
}
.units-panel {
  padding: 1.2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 245, 239, 1), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--line);
}
.units-table {
  display: grid;
  gap: 0.55rem;
}
.unit-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.unit-notes span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 102, 127, 0.08);
  color: var(--brand-dark);
  font-weight: 700;
}
.unit-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 0.9fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 63, 86, 0.08);
}
.unit-head {
  background: rgba(15, 102, 127, 0.08);
  font-weight: 800;
}
.pill.available { background: rgba(24, 149, 107, 0.14); color: #0f7d59; }
.pill.reserved { background: rgba(216, 181, 100, 0.18); color: #8f6b22; }
.pill.sold { background: rgba(176, 59, 59, 0.12); color: #a13b3b; }

.contact-grid { align-items: start; }
.contact-card, .contact-form { padding: 1.8rem; }
.contact-list a, .contact-list p, .site-footer a, .site-footer p { color: var(--text-muted); }
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(18, 63, 86, 0.15);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.88);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--gold-deep);
  font-weight: 800;
  transition: color 0.25s ease, transform 0.25s ease;
}
.text-link:hover {
  color: var(--gold-main);
  transform: translateX(-3px);
}
.cta-block {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1.7rem 1.8rem;
  border: 1px solid rgba(122, 157, 181, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(18, 47, 75, 0.72), rgba(10, 36, 58, 0.68)),
    radial-gradient(circle at top right, rgba(230, 200, 120, 0.08), transparent 34%);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.cta-block__content {
  display: grid;
  gap: 0.9rem;
  text-align: right;
  justify-items: start;
}

.cta-block__content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  line-height: 1.22;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  max-width: 15ch;
}

.cta-block__content .eyebrow {
  margin-bottom: 0;
  justify-self: flex-start;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  background: rgba(230, 200, 120, 0.12);
  border: 1px solid rgba(230, 200, 120, 0.18);
  color: #f6deb0;
}

.cta-block__content p:last-child {
  max-width: 48ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.82;
}

.cta-block__actions {
  display: grid;
  justify-items: stretch;
  gap: 0.62rem;
  align-self: center;
  padding: 0.85rem;
  border-radius: 24px;
  max-width: 360px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.05);
}

.cta-block__actions .cta-actions {
  margin-top: 0;
  flex-direction: column;
  gap: 0.68rem;
}

.cta-block__actions .button {
  width: 100%;
  justify-content: center;
  min-height: 56px;
}

.cta-block__actions .button-secondary.light {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.03);
}

.cta-block__actions .button-secondary.light:hover {
  border-color: rgba(230, 200, 120, 0.35);
  background: rgba(230, 200, 120, 0.08);
}

.home-cta-stage {
  padding-top: 1.6rem;
  padding-bottom: 2.05rem;
  background:
    linear-gradient(180deg, rgba(10, 39, 66, 0.99), rgba(6, 30, 52, 1)),
    #072340;
}

.home-cta-stage .cta-block {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.6rem;
  min-height: 350px;
  padding: 1.95rem 2rem;
  border-radius: 34px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-cta-stage .cta-block::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 28px;
  border: 0;
  pointer-events: none;
}

.home-cta-stage .cta-block__content {
  gap: 0.9rem;
  align-content: center;
}

.home-cta-stage .cta-block__content .eyebrow {
  padding: 0.54rem 1rem;
  background: rgba(230, 200, 120, 0.11);
  border-color: rgba(230, 200, 120, 0.18);
  color: #f1d596;
}

.home-cta-stage .cta-block__content h2 {
  max-width: 15ch;
  font-size: clamp(1.9rem, 2.55vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: rgba(238, 245, 252, 0.94);
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.home-cta-stage .cta-block__content h2 .brand-emphasis {
  color: #ffffff;
  font-weight: 900;
  text-shadow:
    0 10px 22px rgba(6, 18, 30, 0.46),
    0 1px 0 rgba(255, 255, 255, 0.22);
}

.home-cta-stage .cta-block__content p:last-child {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.03rem, 1.12vw, 1.1rem);
  font-weight: 600;
  line-height: 2;
  text-wrap: pretty;
}

.home-cta-stage .cta-block__actions {
  align-self: center;
  max-width: 360px;
  padding: 0.9rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.home-cta-stage .cta-block__actions .cta-actions {
  gap: 0.72rem;
}

.home-cta-stage .cta-block__actions .button {
  min-height: 56px;
  border-radius: 18px;
  font-size: 0.98rem;
}

.home-cta-stage .cta-block__actions .button-primary.light {
  background: linear-gradient(135deg, #f1d07c 0%, #caa657 52%, #9d7a34 100%);
  color: #102a43;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 14px 24px rgba(157, 122, 52, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.home-cta-stage .cta-block__actions .button-primary.light:hover {
  background: linear-gradient(135deg, #f5dc98 0%, #d5b15d 50%, #b58b3c 100%);
  color: #0d243b;
}

.home-cta-stage .cta-block__actions .button-secondary.light {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.94);
}

.home-cta-stage .cta-block__actions .button-secondary.light:hover {
  border-color: rgba(230, 200, 120, 0.32);
  background: rgba(230, 200, 120, 0.08);
}

.site-footer {
  position: relative;
  padding: 2.1rem 0 1.3rem;
  border-top: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 37, 63, 0.99), rgba(6, 30, 52, 1)),
    #072340;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(197, 160, 89, 0.12), transparent 22%),
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.05), transparent 18%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.18fr) minmax(170px, 0.78fr) minmax(220px, 0.92fr);
  gap: 2.4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-column {
  display: grid;
  align-content: start;
}
.footer-grid h3 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.72rem;
  line-height: 1.85;
}

.footer-grid a {
  font-size: 1.02rem;
}

.footer-brand {
  color: #ffffff;
  font-weight: 800;
}
.footer-logo {
  width: min(122px, 100%);
  height: auto;
  margin-bottom: 1.05rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}
.footer-bottom {
  margin-top: 0.9rem;
  padding-top: 0.65rem;
  padding-bottom: 0.55rem;
  border-top: 1px solid rgba(18, 63, 86, 0.08);
  position: relative;
  z-index: 1;
}

@keyframes pulseRing {
  0% { transform: scale(0.92); opacity: 0.7; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@keyframes frameFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes heroGlow {
  0% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.18) brightness(1.06); }
  100% { filter: saturate(1.08) brightness(1.03); }
}

@keyframes heroGlow {
  0% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.08) brightness(1.03); }
  100% { filter: saturate(1.02) brightness(1.01); }
}

@keyframes heroRevealText {
  0% {
    opacity: 0;
    transform: translateY(48px);
  }
  100% {
    opacity: 1;
    transform: translateY(5vh);
  }
}

@keyframes heroRevealMedia {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-height: 920px) {
  .homepage-hero .hero-grid {
    padding: 0.9rem 0 0.75rem;
    gap: 1.6rem;
  }
  .hero-copy-final {
    padding: 1.05rem 1.1rem;
  }
  .homepage-hero .hero-copy h1 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    margin-bottom: 0.65rem;
  }
  .homepage-hero .hero-copy .lead {
    font-size: 0.93rem;
    line-height: 1.62;
  }
  .hero-note {
    font-size: 0.8rem;
    line-height: 1.55;
  }
  .hero-actions, .cta-actions {
    margin-top: 0.8rem;
    gap: 0.7rem;
  }
  .hero-points {
    margin-top: 0.65rem;
    gap: 0.55rem;
  }
  .hero-points span {
    padding: 0.45rem 0.72rem;
    font-size: 0.84rem;
  }
  .hero-trust-strip {
    margin-top: 0.7rem;
    gap: 0.6rem;
  }
  .hero-trust-strip article {
    padding: 0.68rem 0.74rem;
  }
  .hero-trust-strip strong {
    font-size: 0.9rem;
  }
  .hero-trust-strip span {
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .showreel-frame {
    padding: 0.72rem;
  }
  .showreel-screen {
    min-height: clamp(290px, 36dvh, 360px);
  }
  .showreel-topbar {
    margin-bottom: 0.5rem;
    font-size: 0.74rem;
  }
  .showreel-overlay {
    inset: auto 0.85rem 0.85rem 0.85rem;
    padding: 0.72rem 0.78rem;
  }
  .play-badge {
    width: 56px;
    height: 56px;
  }
  .play-icon {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
  .showreel-copy strong {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .showreel-copy span {
    font-size: 0.76rem;
  }
  .showreel-stat-chip {
    min-width: 112px;
    padding: 0.72rem 0.8rem;
  }
  .showreel-stat-chip strong {
    font-size: 1.15rem;
  }
  .showreel-stat-chip span {
    font-size: 0.72rem;
  }
  .showreel-stat-chip-primary {
    bottom: 5.8rem;
  }
  .showreel-stat-chip-secondary {
    top: 3.2rem;
  }
  .showreel-footer {
    margin-top: 0.55rem;
  }
  .showreel-footer article {
    padding: 0.58rem 0.65rem;
  }
  .showreel-footer strong {
    font-size: 0.88rem;
  }
  .showreel-footer span {
    font-size: 0.74rem;
  }
}

@media (max-height: 1100px) {
  .homepage-hero .hero-grid {
    padding: 0.9rem 0 0.75rem;
    gap: 1.35rem;
  }
  .hero-copy-final {
    padding: 1rem 1.05rem;
  }
  .homepage-hero .hero-copy h1 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    margin-bottom: 0.55rem;
  }
  .homepage-hero .hero-copy .lead {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .hero-note {
    font-size: 0.76rem;
    line-height: 1.45;
    margin-top: 0;
  }
  .hero-actions, .cta-actions {
    margin-top: 0.65rem;
    gap: 0.6rem;
  }
  .button {
    padding: 0.82rem 1.2rem;
  }
  .hero-points {
    margin-top: 0.55rem;
    gap: 0.45rem;
  }
  .hero-points span {
    padding: 0.38rem 0.62rem;
    font-size: 0.76rem;
  }
  .hero-trust-strip {
    display: none;
  }
  .showreel-frame {
    padding: 0.62rem;
  }
  .showreel-topbar {
    margin-bottom: 0.42rem;
    font-size: 0.7rem;
  }
  .showreel-screen {
    min-height: clamp(320px, 40dvh, 420px);
  }
  .showreel-badges span {
    padding: 0.34rem 0.6rem;
    font-size: 0.68rem;
  }
  .showreel-overlay {
    inset: auto 0.7rem 0.7rem 0.7rem;
    padding: 0.62rem 0.7rem;
    gap: 0.7rem;
  }
  .play-badge {
    width: 50px;
    height: 50px;
  }
  .play-icon {
    width: 40px;
    height: 40px;
    font-size: 0.88rem;
  }
  .showreel-copy strong {
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .showreel-copy span {
    font-size: 0.76rem;
    line-height: 1.45;
  }
  .showreel-stat-chip {
    min-width: 96px;
    padding: 0.56rem 0.62rem;
  }
  .showreel-stat-chip strong {
    font-size: 1rem;
  }
  .showreel-stat-chip span {
    font-size: 0.64rem;
  }
  .showreel-stat-chip-primary {
    bottom: 5.6rem;
  }
  .showreel-stat-chip-secondary {
    top: 2.9rem;
  }
  .showreel-footer {
    margin-top: 0.45rem;
    gap: 0.5rem;
  }
  .showreel-footer article {
    padding: 0.5rem 0.58rem;
  }
  .showreel-footer strong {
    font-size: 0.78rem;
  }
  .showreel-footer span {
    font-size: 0.68rem;
  }
}

@media (max-height: 980px) {
  .homepage-hero .hero-grid {
    padding: 0.65rem 0 0.55rem;
    gap: 1rem;
  }
  .hero-copy-final {
    padding: 0.9rem 0.95rem;
  }
  .homepage-hero .hero-copy h1 {
    font-size: clamp(1.7rem, 2.6vw, 2.65rem);
    margin-bottom: 0.45rem;
  }
  .homepage-hero .hero-copy .lead {
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .hero-note {
    display: none;
  }
  .hero-actions, .cta-actions {
    margin-top: 0.55rem;
    gap: 0.55rem;
  }
  .button {
    padding: 0.74rem 1.02rem;
    font-size: 0.92rem;
  }
  .hero-points {
    display: none;
  }
  .showreel-screen {
    min-height: clamp(240px, 30dvh, 300px);
  }
  .showreel-badges {
    top: 0.65rem;
    right: 0.65rem;
  }
  .showreel-badges span {
    padding: 0.28rem 0.5rem;
    font-size: 0.62rem;
  }
  .showreel-overlay {
    inset: auto 0.55rem 0.55rem 0.55rem;
    padding: 0.52rem 0.58rem;
    gap: 0.55rem;
  }
  .play-badge {
    width: 42px;
    height: 42px;
  }
  .play-icon {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }
  .showreel-copy strong {
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .showreel-copy span {
    display: none;
  }
  .showreel-stat-chip {
    display: none;
  }
  .showreel-footer {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero-grid, .split-section, .contact-grid, .service-detail, .footer-grid, .two-column-grid, .journey-grid, .project-grid { grid-template-columns: 1fr; }
  .feature-grid, .services-overview, .project-preview-grid, .inventory-overview, .executive-highlights, .services-showcase-grid, .stats-strip, .client-sectors-grid, .animated-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-hero-grid,
  .services-intro-grid { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .service-band,
  .service-band.reversed {
    flex-direction: column;
    gap: 22px;
    padding: 64px 0;
  }
  .cta-block {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cta-block__actions { max-width: none; }
  .project-card-head { flex-direction: column; }
  .project-summary { min-width: auto; }
  .hero-grid-home { grid-template-columns: 1fr; }
  .hero-visual-home { order: -1; }
  .hero-grid-home-final { grid-template-columns: 1fr; }
  .hero-visual-home-final { justify-content: center; }
  .service-band-panel,
  .service-band.reversed .service-band-panel {
    width: 100%;
    flex: 1 1 auto;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    min-height: auto;
  }
  .service-band-media {
    width: 100%;
    flex: 1 1 auto;
    min-height: 320px;
    border-radius: 20px;
  }
  .service-band-index,
  .service-band.reversed .service-band-index { left: auto; right: 1.4rem; top: 1.4rem; }
  .service-band + .service-band { margin-top: 0; }
  .service-band-panel::before,
  .service-band.reversed .service-band-panel::before { inset: 0; border-radius: 20px; }
  .service-band-copy,
  .service-band.reversed .service-band-copy {
    max-width: 100%;
    width: 100%;
    padding-right: 24px;
    padding-left: 0;
  }
  .hero-trust-strip { grid-template-columns: 1fr; }
  .homepage-hero .hero-copy {
    transform: none;
    animation: heroRevealMobile 0.7s ease forwards;
  }
  .hero-visual-home-final {
    animation: heroRevealMobile 0.8s ease 0.08s forwards;
  }
  .homepage-hero,
  .homepage-hero .hero-grid {
    min-height: calc(100svh - var(--header-height));
  }
  .homepage-hero .hero-grid {
    padding: 1.2rem 0 1rem;
  }
}

@keyframes heroRevealMobile {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-stats, .feature-grid, .services-overview, .project-preview-grid, .estate-metrics, .inventory-overview, .executive-highlights, .services-showcase-grid, .stats-strip, .client-sectors-grid, .animated-stats-grid { grid-template-columns: 1fr; }
  .hero, .page-hero, .real-estate-hero, .section { padding: 3.6rem 0; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { display: none; }
  .brand-symbol {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .brand-stacked img {
    width: 82px;
  }
  .headline-band { flex-direction: column; align-items: flex-start; }
  .project-summary { grid-template-columns: 1fr; }
  .unit-row { grid-template-columns: 1fr 1fr; }
  .hero-points { flex-direction: column; }
  .homepage-hero,
  .homepage-hero .hero-grid { min-height: calc(100svh - var(--header-height)); }
  .homepage-hero .hero-grid { padding: 1rem 0 0.9rem; align-content: center; }
  .homepage-hero .hero-copy h1 { max-width: none; font-size: clamp(2rem, 8vw, 3.1rem); }
  .homepage-hero .hero-copy .lead { font-size: 1rem; }
  .hero-copy-final { padding: 1.15rem 1.1rem; }
  .hero-copy-final::before { display: none; }
  .services-cinematic-content { padding: 4rem 0 3.4rem; }
  .services-cinematic-copy h1 { max-width: none; font-size: clamp(2.35rem, 9vw, 3.4rem); }
  .service-band + .service-band { margin-top: 0; }
  .service-band-media { min-height: 250px; border-radius: 20px; }
  .service-band-panel,
  .service-band.reversed .service-band-panel { padding: 0; }
  .service-band-panel::before,
  .service-band.reversed .service-band-panel::before { background: rgba(255, 255, 255, 0.98); }
  .service-band.featured .service-band-panel::before { background: rgba(10, 31, 51, 0.16); }
  .service-band-dark .service-band-panel::before {
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.9), rgba(18, 43, 67, 0.94));
  }
  .service-band-index,
  .service-band.reversed .service-band-index {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
    right: 1rem;
    top: 1rem;
  }
  .service-band-copy,
  .service-band.reversed .service-band-copy { padding-right: 18px; padding-left: 0; }
  .service-band-copy h2 { font-size: 28px; }
  .homepage-hero .hero-copy h1::after { width: 54px; margin-top: 0.45rem; }
  .homepage-hero .hero-copy h1 span::after { bottom: 0; height: 0.42rem; }
  .skyline-caption { right: 1.2rem; left: 1.2rem; bottom: 1.2rem; }
  .accent-card { grid-column: auto; }
  .showreel-overlay { flex-direction: column; align-items: flex-start; }
  .showreel-footer { flex-direction: column; }
  .showreel-stat-chip {
    position: static;
    min-width: auto;
  }
  .showreel-screen {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.8rem;
    min-height: min(38svh, 300px);
  }
}


/* Services Page Rebuild */
.services-page-fresh {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 22rem),
    linear-gradient(180deg, #fbf9f4 0%, #f6f2e8 48%, #fcfbf8 100%);
}

.services-hero-fresh {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-hero-fresh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 31, 51, 0.22) 0%, rgba(10, 31, 51, 0.24) 42%, rgba(10, 31, 51, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 19, 31, 0.18) 0%, rgba(7, 19, 31, 0.44) 100%);
}

.services-hero-fresh__media,
.services-hero-fresh__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-hero-fresh__media img {
  object-fit: cover;
}

.services-hero-fresh__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 4rem 0;
}

.services-hero-fresh__content {
  width: min(100%, 520px);
  margin-right: clamp(1rem, 4vw, 3rem);
  display: grid;
  gap: 16px;
  text-align: right;
  color: var(--white);
}

.services-hero-fresh__content .eyebrow {
  justify-self: start;
  margin-right: auto;
  margin-left: 0;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.services-hero-fresh__content h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-hero-fresh__content h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.95rem;
  margin-right: auto;
  background: linear-gradient(90deg, var(--gold-main), var(--gold-light));
  border-radius: 999px;
}

.services-hero-fresh__content > p:last-of-type {
  margin: 0;
  max-width: 420px;
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.services-hero-fresh__content .button {
  justify-self: start;
  margin-top: 4px;
  padding: 0.8rem 1.35rem;
}

.services-stack {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 76px 0 110px;
  display: grid;
  gap: 64px;
}

#services-start {
  scroll-margin-top: 120px;
}

.service-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 24px;
  direction: ltr;
}

.service-showcase--reverse {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 0.98fr);
}

.service-showcase__media {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 42, 68, 0.12);
}

.service-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}

.service-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.92) 12%,
    rgba(255, 255, 255, 0.54) 34%,
    rgba(255, 255, 255, 0.08) 62%,
    transparent 78%
  );
}

.service-showcase--reverse .service-showcase__media::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.92) 12%,
    rgba(255, 255, 255, 0.54) 34%,
    rgba(255, 255, 255, 0.08) 62%,
    transparent 78%
  );
}

.service-showcase__card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  min-height: 312px;
  padding: 72px 34px 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(15, 42, 68, 0.1);
  text-align: right;
  direction: rtl;
  transform: translateX(-72px);
  display: grid;
  align-content: start;
  gap: 14px;
}

.service-showcase--reverse .service-showcase__card {
  transform: translateX(72px);
}

.services-stack > .service-showcase:nth-of-type(1) .service-showcase__card {
  transform: translateX(-96px);
}

.services-stack > .service-showcase:nth-of-type(2).service-showcase--reverse .service-showcase__card {
  transform: translateX(96px);
}

.services-stack > .service-showcase:nth-of-type(1) .service-showcase__media,
.services-stack > .service-showcase:nth-of-type(2) .service-showcase__media {
  min-height: 300px;
  max-width: 88%;
}

.services-stack > .service-showcase:nth-of-type(1) .service-showcase__media {
  justify-self: start;
}

.services-stack > .service-showcase:nth-of-type(2) .service-showcase__media {
  justify-self: end;
}

.service-showcase__index {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.14);
  color: var(--navy-main);
  font-size: 1.15rem;
  font-weight: 700;
}

.service-showcase__eyebrow {
  margin: 0;
  padding-right: 80px;
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-showcase__card h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.28;
}

.service-showcase__card > p:not(.service-showcase__eyebrow) {
  margin: 0;
  max-width: 340px;
  color: #66758a;
  font-size: 16px;
  line-height: 1.7;
}

.service-showcase__list {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-showcase__list li {
  position: relative;
  padding-right: 18px;
  margin: 0;
  color: #24384f;
  font-size: 0.95rem;
  line-height: 1.75;
}

.service-showcase__list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-main);
  transform: translateY(-50%);
}

.service-showcase__cta {
  justify-self: start;
  margin-top: 8px;
  padding: 0.68rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.service-showcase--dark .service-showcase__card {
  background: linear-gradient(160deg, rgba(10, 31, 51, 0.97), rgba(20, 49, 76, 0.95));
  box-shadow: 0 22px 48px rgba(10, 31, 51, 0.24);
}

.service-showcase--dark .service-showcase__card h2,
.service-showcase--dark .service-showcase__list li,
.service-showcase--dark .service-showcase__index {
  color: var(--white);
}

.service-showcase--dark .service-showcase__card > p:not(.service-showcase__eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.service-showcase--dark .service-showcase__eyebrow {
  color: var(--gold-light);
}

.service-showcase--dark .service-showcase__index {
  background: rgba(230, 200, 120, 0.18);
}

.service-showcase--dark .service-showcase__cta {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
  color: var(--navy-dark);
}

.service-showcase--estate .service-showcase__card {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(255, 255, 255, 0.96));
}

@media (max-width: 1100px) {
  .service-showcase,
  .service-showcase--reverse {
    grid-template-columns: 1fr 0.88fr;
    gap: 20px;
  }

  .service-showcase__card,
  .service-showcase--reverse .service-showcase__card {
    transform: translateX(-36px);
    width: 100%;
  }

  .service-showcase--reverse .service-showcase__card {
    transform: translateX(36px);
  }

  .services-stack > .service-showcase:nth-of-type(1) .service-showcase__card {
    transform: translateX(-48px);
  }

  .services-stack > .service-showcase:nth-of-type(2).service-showcase--reverse .service-showcase__card {
    transform: translateX(48px);
  }

  .services-stack > .service-showcase:nth-of-type(1) .service-showcase__media,
  .services-stack > .service-showcase:nth-of-type(2) .service-showcase__media {
    max-width: 100%;
    min-height: 290px;
  }
}

@media (max-width: 960px) {
  .services-hero-fresh {
    min-height: 620px;
  }

  .services-hero-fresh__inner {
    justify-content: center;
    padding: 3.5rem 0;
  }

  .services-hero-fresh__content {
    margin-right: 0;
    width: min(100%, 540px);
  }

  .services-stack {
    gap: 44px;
    padding: 56px 0 84px;
  }

  .service-showcase,
  .service-showcase--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-showcase__media {
    min-height: 290px;
  }

  .service-showcase__media::after,
  .service-showcase--reverse .service-showcase__media::after {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 44%,
      rgba(255, 255, 255, 0.78) 84%,
      rgba(255, 255, 255, 0.96) 100%
    );
  }

  .service-showcase__card,
  .service-showcase--reverse .service-showcase__card {
    width: 100%;
    min-height: auto;
    margin-top: -64px;
    transform: none;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .services-hero-fresh__content h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .services-hero-fresh__content > p:last-of-type {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .services-hero-fresh__content .button {
    padding: 0.75rem 1.15rem;
  }

  .services-stack {
    width: min(100% - 1rem, 100%);
    gap: 34px;
  }

  .service-showcase__media {
    min-height: 255px;
    border-radius: 18px;
  }

  .service-showcase__card,
  .service-showcase--reverse .service-showcase__card {
    padding: 66px 20px 22px;
    border-radius: 20px;
    margin-top: -42px;
  }

  .service-showcase__index {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .service-showcase__eyebrow {
    padding-right: 62px;
  }

  .service-showcase__card h2 {
    font-size: 28px;
  }

  .service-showcase__card > p:not(.service-showcase__eyebrow),
  .service-showcase__list li {
    font-size: 0.9rem;
  }
}

/* About + Real Estate Refresh */
.section-heading-tight {
  margin-bottom: 2.2rem;
}

.about-page-fresh,
.real-estate-page-fresh {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 24rem),
    linear-gradient(180deg, #fbfaf6 0%, #f5f1e7 56%, #fcfbf8 100%);
}

.about-hero-fresh,
.real-estate-hero-fresh {
  position: relative;
  min-height: calc(86svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-fresh::before,
.real-estate-hero-fresh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 31, 51, 0.22) 0%, rgba(10, 31, 51, 0.3) 42%, rgba(10, 31, 51, 0.76) 100%),
    linear-gradient(180deg, rgba(7, 19, 31, 0.08) 0%, rgba(7, 19, 31, 0.42) 100%);
}

.about-hero-fresh__media,
.about-hero-fresh__media img,
.real-estate-hero-fresh__media,
.real-estate-hero-fresh__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-fresh__media img,
.real-estate-hero-fresh__media img {
  object-fit: cover;
}

.about-hero-fresh__inner,
.real-estate-hero-fresh__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4rem 0;
}

.about-hero-fresh__content,
.real-estate-hero-fresh__content {
  width: min(100%, 560px);
  margin-right: clamp(1rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
  color: var(--white);
  text-align: right;
}

.about-hero-fresh__content h1,
.real-estate-hero-fresh__content h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.about-hero-fresh__content p:last-child,
.real-estate-hero-fresh__content > p:last-of-type {
  margin: 0;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.85;
}

.about-overview__grid,
.estate-intro__grid,
.about-capabilities__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.about-overview__copy h2,
.estate-intro__copy h2,
.about-capabilities__panel h2 {
  margin: 0 0 1rem;
  color: var(--navy-dark);
  font-size: clamp(1.9rem, 2.6vw, 2.65rem);
  line-height: 1.3;
}

.about-overview__copy > p,
.estate-intro__copy p,
.about-capabilities__panel > p:not(.eyebrow) {
  margin: 0;
  color: #516173;
  line-height: 1.9;
  font-size: 1rem;
}

.about-overview__points {
  display: grid;
  gap: 18px;
  margin-top: 1.6rem;
}

.about-overview__points article {
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 225, 214, 0.9);
  box-shadow: 0 12px 32px rgba(15, 42, 68, 0.05);
}

.about-overview__points strong {
  display: block;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.about-overview__points span {
  color: #647384;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-overview__stats,
.estate-intro__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-overview__stats article,
.estate-intro__metrics article {
  padding: 1.5rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(231, 225, 214, 0.9);
  box-shadow: 0 14px 38px rgba(15, 42, 68, 0.08);
}

.about-overview__stats strong,
.estate-intro__metrics strong {
  display: block;
  color: var(--navy-dark);
  font-size: clamp(1.55rem, 2vw, 2rem);
  margin-bottom: 0.45rem;
}

.about-overview__stats span,
.estate-intro__metrics span {
  color: #617284;
  line-height: 1.7;
  font-size: 0.92rem;
}

.about-pillars__grid,
.estate-offerings__grid,
.about-values__grid,
.estate-journey__grid {
  display: grid;
  gap: 22px;
}

.about-pillars__grid,
.estate-offerings__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-pillar,
.estate-offer-card,
.about-value-card,
.estate-journey__step {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(231, 225, 214, 0.9);
  box-shadow: 0 16px 40px rgba(15, 42, 68, 0.06);
}

.about-pillar--featured {
  background: linear-gradient(160deg, rgba(10, 31, 51, 0.98), rgba(18, 43, 67, 0.95));
  color: var(--white);
}

.about-pillar--featured h3,
.about-pillar--featured p,
.about-pillar--featured span {
  color: var(--white);
}

.about-pillar span,
.estate-offer-card h3,
.about-value-card h3,
.estate-journey__step strong {
  display: block;
  margin-bottom: 0.55rem;
}

.about-pillar span,
.estate-journey__step strong {
  color: var(--gold-main);
  font-weight: 700;
}

.about-pillar h3,
.estate-offer-card h3,
.about-value-card h3,
.estate-journey__step h3 {
  margin: 0 0 0.8rem;
  color: var(--navy-dark);
  font-size: 1.35rem;
  line-height: 1.5;
}

.about-pillar p,
.estate-offer-card p,
.about-value-card p,
.estate-journey__step p {
  margin: 0;
  color: #5d6d7f;
  line-height: 1.85;
  font-size: 0.96rem;
}

.about-values__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-capabilities__panel {
  padding: 1.8rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(231, 225, 214, 0.92);
  box-shadow: 0 18px 42px rgba(15, 42, 68, 0.07);
}

.about-capabilities__panel--dark {
  background: linear-gradient(150deg, rgba(10, 31, 51, 0.98), rgba(15, 42, 68, 0.95));
  color: var(--white);
}

.about-capabilities__panel--dark h2,
.about-capabilities__panel--dark .eyebrow,
.about-capabilities__panel--dark li {
  color: var(--white);
}

.about-capabilities__panel--dark .eyebrow {
  opacity: 0.9;
}

.about-capabilities__panel--dark li::before {
  background: var(--gold-light);
}

.about-capabilities__list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.about-capabilities__list li {
  position: relative;
  padding-right: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.about-capabilities__list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.82em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-main);
  transform: translateY(-50%);
}

.estate-projects .section-heading {
  margin-bottom: 2rem;
}

.estate-project-card {
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(231, 225, 214, 0.9);
  box-shadow: 0 18px 44px rgba(15, 42, 68, 0.08);
}

.estate-project-card + .estate-project-card {
  margin-top: 1.75rem;
}

.estate-project-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.4rem;
}

.estate-project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.estate-project-card__head h3 {
  margin: 0 0 0.7rem;
  color: var(--navy-dark);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.estate-project-card__head p {
  margin: 0;
  color: #607182;
  line-height: 1.85;
}

.estate-project-card__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.estate-project-card__summary div {
  padding: 1rem 0.9rem;
  border-radius: 18px;
  background: var(--off-white);
  border: 1px solid rgba(231, 225, 214, 0.9);
}

.estate-project-card__summary strong {
  display: block;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}

.estate-project-card__summary span,
.estate-project-card__notes span {
  color: #667689;
  font-size: 0.88rem;
  line-height: 1.6;
}

.estate-project-card__body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 1.4rem;
  align-items: stretch;
}

.estate-project-card__visual {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
}

.estate-project-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.estate-project-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 51, 0.1), rgba(10, 31, 51, 0.65));
}

.estate-project-card__visual-copy {
  position: absolute;
  right: 1.3rem;
  left: 1.3rem;
  bottom: 1.2rem;
  color: var(--white);
  z-index: 1;
}

.estate-project-card__visual-copy span {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
}

.estate-project-card__visual-copy strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
}

.estate-project-card__table {
  padding: 1.35rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  border: 1px solid rgba(231, 225, 214, 0.9);
}

.estate-project-card__table h4 {
  margin: 0 0 1rem;
  color: var(--navy-dark);
  font-size: 1.15rem;
}

.estate-unit-table {
  display: grid;
  gap: 0.55rem;
}

.estate-unit-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 0.9fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(245, 247, 250, 0.78);
  color: var(--navy-dark);
  font-size: 0.92rem;
}

.estate-unit-row--head {
  background: transparent;
  color: #77869a;
  font-weight: 700;
  padding: 0 0.4rem 0.35rem;
}

.estate-project-card__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.estate-project-card__notes span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 247, 250, 0.9);
}

.estate-journey__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.estate-cta .cta-block p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

@media (max-width: 1100px) {
  .about-overview__grid,
  .estate-intro__grid,
  .about-capabilities__grid,
  .estate-project-card__head,
  .estate-project-card__body {
    grid-template-columns: 1fr;
  }

  .about-values__grid,
  .estate-journey__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .about-hero-fresh,
  .real-estate-hero-fresh {
    min-height: 620px;
  }

  .about-hero-fresh__inner,
  .real-estate-hero-fresh__inner {
    justify-content: center;
  }

  .about-hero-fresh__content,
  .real-estate-hero-fresh__content {
    width: min(100%, 560px);
    margin-right: 0;
  }

  .about-pillars__grid,
  .estate-offerings__grid,
  .about-values__grid,
  .estate-journey__grid,
  .about-overview__stats,
  .estate-intro__metrics,
  .estate-project-card__summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-hero-fresh__content h1,
  .real-estate-hero-fresh__content h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .about-overview__copy h2,
  .estate-intro__copy h2,
  .about-capabilities__panel h2 {
    font-size: 1.7rem;
  }

  .estate-project-card,
  .about-capabilities__panel,
  .about-pillar,
  .estate-offer-card,
  .about-value-card,
  .estate-journey__step {
    padding: 1.2rem;
  }

  .estate-project-card__visual {
    min-height: 260px;
  }

  .estate-unit-row {
    grid-template-columns: 1fr 1fr;
  }

  .estate-unit-row--head {
    display: none;
  }
}

.real-estate-dashboard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 248, 242, 0.98)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 22%);
}

.estate-dashboard-hero .real-estate-hero-fresh__content {
  max-width: 760px;
}

.estate-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.estate-hero-highlights span,
.estate-switch-card__badge,
.estate-detail-facts span,
.estate-filter,
.estate-sidebar-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.estate-hero-highlights span {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.estate-dashboard-summary,
.estate-project-switcher,
.estate-detail-layout,
.estate-detail-stats,
.estate-detail-facts,
.estate-availability-overview,
.estate-toolbar {
  display: grid;
}

.estate-dashboard-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.estate-dashboard-summary article,
.estate-switch-card,
.estate-detail-main,
.estate-sidebar-card,
.estate-unit-table--inventory,
.estate-detail-gallery__hero {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.estate-dashboard-summary article {
  padding: 1.35rem;
  border-radius: 22px;
}

.estate-dashboard-summary strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.estate-dashboard-summary span {
  color: var(--text-muted);
}

.estate-project-switcher {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.estate-switch-card {
  border-radius: 24px;
  padding: 1.2rem;
  text-align: right;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.estate-switch-card:hover,
.estate-switch-card.is-active {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(197, 160, 89, 0.45);
}

.estate-switch-card__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.estate-switch-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.estate-switch-card small {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.estate-detail-layout {
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
  align-items: start;
}

.estate-detail-main {
  border-radius: 30px;
  padding: 1.2rem;
}

.estate-detail-gallery__hero {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 420px;
}

.estate-detail-gallery__hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.estate-detail-gallery__overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(10, 31, 51, 0.82));
  color: #fff;
}

.estate-detail-gallery__overlay span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.estate-detail-gallery__overlay strong {
  display: block;
  font-size: 1.25rem;
}

.estate-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.estate-thumb {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.estate-thumb.is-active,
.estate-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.estate-thumb img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.estate-detail-content {
  padding: 1.3rem 0 0;
}

.estate-detail-content__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.estate-detail-content__head h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.estate-detail-content__head p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.estate-detail-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.estate-detail-stats article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(15, 42, 68, 0.05);
}

.estate-detail-stats strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.estate-detail-stats span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.estate-detail-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.estate-detail-facts span {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
}

.estate-detail-sidebar {
  display: grid;
  gap: 1rem;
}

.estate-sidebar-card {
  border-radius: 26px;
  padding: 1.35rem;
}

.estate-sidebar-card h3 {
  margin-bottom: 0.8rem;
}

.estate-unit-browser__head,
.estate-selected-unit__head,
.estate-unit-browser__item,
.estate-selected-unit__facts {
  display: grid;
}

.estate-unit-browser__head {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 1rem;
}

.estate-unit-browser__count {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 42, 68, 0.08);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.estate-unit-browser__list {
  display: grid;
  gap: 0.8rem;
  max-height: 380px;
  overflow: auto;
  padding-inline-end: 0.2rem;
}

.estate-unit-browser__item {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(248, 250, 252, 0.95);
  cursor: pointer;
  text-align: right;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.estate-unit-browser__item:hover,
.estate-unit-browser__item.is-active {
  transform: translateY(-2px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: var(--shadow-soft);
}

.estate-unit-browser__item-main strong,
.estate-unit-browser__item-meta span {
  display: block;
}

.estate-unit-browser__item-main strong {
  color: var(--brand-dark);
  font-size: 1rem;
}

.estate-unit-browser__item-main span,
.estate-unit-browser__item-meta span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.estate-unit-browser__item-meta {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
}

.estate-selected-unit {
  overflow: hidden;
  padding: 0;
}

.estate-selected-unit__media {
  position: relative;
  min-height: 220px;
}

.estate-selected-unit__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.estate-selected-unit__media .pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  box-shadow: var(--shadow-soft);
}

.estate-selected-unit__body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.estate-selected-unit__note {
  margin: 1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.estate-selected-unit__head {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  margin-bottom: 1rem;
}

.estate-selected-unit__head h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.estate-selected-unit__head strong {
  color: var(--brand-dark);
  font-size: 1.15rem;
  align-self: center;
}

.estate-selected-unit__facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.estate-selected-unit__facts div {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(15, 42, 68, 0.05);
}

.estate-selected-unit__facts span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 0.3rem;
}

.estate-selected-unit__facts strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.estate-sidebar-card--accent {
  background: linear-gradient(160deg, rgba(15, 42, 68, 0.98), rgba(28, 63, 94, 0.94));
  color: #fff;
}

.estate-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.estate-sidebar-list li {
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(15, 42, 68, 0.04);
}

.estate-sidebar-card--accent .estate-sidebar-list li {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.estate-availability-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.estate-availability-overview div {
  padding: 1rem 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.estate-availability-overview strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.estate-toolbar {
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
  margin-bottom: 1rem;
}

.estate-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

#estate-project-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.estate-filter {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.estate-filter.is-active,
.estate-filter:hover {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}

.estate-unit-table--inventory {
  border-radius: 26px;
  overflow: hidden;
}

.estate-unit-table--inventory .estate-unit-row {
  grid-template-columns: 1.2fr 0.85fr 0.95fr 0.85fr;
}

.estate-table-note {
  margin-top: 1rem;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .estate-dashboard-summary,
  .estate-project-switcher,
  .estate-detail-stats,
  .estate-selected-unit__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estate-detail-layout,
  .estate-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .estate-dashboard-summary,
  .estate-project-switcher,
  .estate-detail-stats,
  .estate-detail-facts,
  .estate-availability-overview,
  .estate-detail-thumbs,
  .estate-selected-unit__facts {
    grid-template-columns: 1fr;
  }

  .estate-detail-gallery__hero,
  .estate-detail-gallery__hero img {
    min-height: 280px;
  }

  .estate-detail-content__head {
    flex-direction: column;
  }

  .estate-unit-table--inventory .estate-unit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
  }
}

.estate-studio-page {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.14), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(15, 42, 68, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f4ee 0%, #fcfbf8 36%, #f1ece2 100%);
}
.estate-studio-hero__veil {
  background: linear-gradient(
    to left,
    rgba(7, 19, 32, 0.65) 0%,
    rgba(7, 19, 32, 0.45) 40%,
    rgba(7, 19, 32, 0.2) 70%,
    transparent 100%
  );
}

.estate-studio-hero__veil {
  background: transparent !important;
}
.home-calm-hero__copy {
  text-align: center;
}

.home-calm-hero__copy .eyebrow,
.home-calm-hero__copy .hero-actions {
  justify-content: center;
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 1rem 0 1.35rem;
}

.hero-trust-points--hero,
.hero-actions--hero {
  justify-content: flex-start;
}

.hero-trust-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
}

.estate-hero-aside {
  display: flex;
  justify-content: flex-end;
}

.estate-hero-aside__card {
  width: min(100%, 420px);
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 26px 64px rgba(8, 22, 36, 0.26);
  backdrop-filter: blur(16px);
}

.estate-hero-aside__card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.estate-hero-aside__card p:not(.eyebrow) {
  color: var(--text-muted);
}

.estate-hero-aside__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.estate-hero-aside__metrics article {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(15, 42, 68, 0.05);
}

.estate-hero-aside__metrics strong {
  display: block;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.estate-hero-aside__metrics span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.estate-hero-aside__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.estate-hero-aside__highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 42, 68, 0.06);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.estate-project-salon {
  position: relative;
  margin-top: -1.8rem;
  z-index: 2;
}

.estate-project-switcher--studio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.estate-command-center__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.86fr);
  gap: 1.25rem;
  align-items: start;
}

.estate-stage,
.estate-command-panel__section {
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.estate-stage {
  padding: 1.1rem;
  border-radius: 34px;
}

.estate-stage__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
}

.estate-stage__visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.estate-stage__overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(8, 22, 36, 0.86));
  color: #fff;
}

.estate-stage__overlay span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.estate-stage__overlay strong {
  display: block;
  font-size: 1.34rem;
}

.estate-stage__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.estate-command-panel {
  display: grid;
  gap: 1rem;
}

.estate-command-panel__section {
  border-radius: 28px;
  padding: 1.1rem;
}

.estate-command-panel__section--intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 235, 0.98)),
    rgba(255, 255, 255, 0.94);
}

.estate-command-panel__lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.estate-detail-stats--studio {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.estate-detail-facts--studio {
  grid-template-columns: 1fr;
}

.estate-availability-panel {
  background: linear-gradient(150deg, #0e2740 0%, #173b5a 100%);
  color: #fff;
}

.estate-availability-panel .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.estate-inventory-lab .estate-unit-table--inventory {
  background: rgba(255, 255, 255, 0.96);
}

.estate-toolbar--studio {
  align-items: start;
}

.estate-journey--studio {
  padding-top: 4.2rem;
}

@media (max-width: 1180px) {
  .estate-studio-hero__inner,
  .estate-command-center__layout {
    grid-template-columns: 1fr;
  }

  .estate-hero-aside {
    justify-content: flex-start;
  }

  .estate-stage__visual,
  .estate-stage__visual img {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .estate-studio-hero__copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .estate-hero-aside__metrics,
  .estate-project-switcher--studio,
  .estate-stage__thumbs,
  .estate-detail-stats--studio {
    grid-template-columns: 1fr;
  }

  .estate-stage__visual,
  .estate-stage__visual img {
    min-height: 320px;
  }
}

.home-studio-page {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.12), transparent 22%),
    radial-gradient(circle at 16% 84%, rgba(15, 42, 68, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(12, 31, 50, 0.18) 0%, rgba(12, 31, 50, 0) 11%, #f8f4ec 24%, #fbf8f1 58%, #f3ede3 100%);
}

.home-command-card__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.home-command-card__line span {
  color: var(--gold-deep);
  font-weight: 800;
}

.home-command-card__button {
  margin-top: 0.95rem;
  width: 100%;
  justify-content: center;
  display: inline-flex;
  color: var(--brand-dark);
  border-color: rgba(16, 42, 67, 0.1);
  background: rgba(16, 42, 67, 0.05);
}

.home-command-card__button:hover {
  background: rgba(212, 178, 93, 0.16);
  border-color: rgba(212, 178, 93, 0.35);
}

.hero-trust-points--hero {
  gap: 0.8rem;
  margin: 0.15rem 0 0.35rem;
}

.hero-trust-points--hero span {
  padding: 0.62rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(4, 18, 31, 0.14);
}

.hero-actions--hero {
  align-items: stretch;
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.hero-actions--hero .button {
  flex: 0 0 auto;
  min-height: 52px;
  min-width: 176px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 18px 34px rgba(5, 18, 30, 0.16);
}

.hero-actions--hero .button-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 46%, var(--gold-dark) 100%);
  color: #102a43;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 20px 38px rgba(138, 116, 63, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-actions--hero .button-primary:hover {
  background: linear-gradient(135deg, #f3de9f 0%, #d1af58 48%, #b38c37 100%);
  color: #0b2238;
}

.hero-actions--hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow:
    0 16px 34px rgba(5, 18, 30, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-actions--hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(230, 200, 120, 0.3);
  color: #fff6dd;
}

.home-company-panel {
  padding-top: 0;
  margin-top: -3.2rem;
  padding-bottom: 2.2rem;
  position: relative;
  z-index: 2;
}

.home-company-panel__card {
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(360px, 1.06fr);
  gap: 1.3rem;
  align-items: stretch;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 233, 0.97)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 26%);
  border: 1px solid rgba(223, 214, 199, 0.85);
  box-shadow:
    0 26px 60px rgba(10, 31, 51, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
}

.home-company-panel__copy {
  padding: 0.7rem 0.55rem 0.55rem 0;
}

.home-company-panel__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin: 0;
  padding: 0.32rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 234, 207, 0.72), rgba(238, 226, 196, 0.52));
  border: 1px solid rgba(207, 173, 85, 0.16);
  color: #9d7933;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow:
    0 8px 18px rgba(197, 160, 89, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.home-company-panel__copy h2 {
  font-size: clamp(1.68rem, 2.2vw, 2.08rem);
  line-height: 1.18;
  margin: 0.7rem 0 0.96rem;
  color: var(--brand-dark);
  max-width: none;
  width: max-content;
  max-width: 100%;
}

.home-company-panel__title-line {
  display: block;
  white-space: nowrap;
}

.home-company-panel__brand {
  color: #a67e2f;
  font-weight: 800;
}

.home-company-panel__copy h2 .home-company-panel__brand {
  display: inline;
  color: #0f2e4d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.home-company-panel__copy p .home-company-panel__brand {
  color: #9d7933;
  font-weight: 900;
}

.home-company-panel__copy p:not(.eyebrow) {
  margin-top: 6px;
  max-width: 48ch;
  color: #4f6071;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.9;
}

.home-company-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.08rem;
  align-content: start;
  justify-self: end;
  width: min(100%, 560px);
}

.home-company-panel__stat {
  position: relative;
  overflow: hidden;
  padding: 1.08rem 1.08rem 1rem;
  border-radius: 26px;
  direction: rtl;
  text-align: right;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 241, 228, 0.95)),
    radial-gradient(circle at top right, rgba(207, 173, 85, 0.16), transparent 44%);
  border: 1px solid rgba(16, 42, 67, 0.14);
  box-shadow:
    0 18px 34px rgba(10, 31, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -12px 22px rgba(193, 160, 88, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  outline: none;
}

.home-company-panel__stat::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: linear-gradient(180deg, rgba(207, 173, 85, 0.92), rgba(16, 42, 67, 0.24));
  transition: width 0.28s ease, opacity 0.28s ease;
}

.home-company-panel__stat:hover,
.home-company-panel__stat:focus-visible {
  transform: translateY(-6px);
  background:
    linear-gradient(180deg, rgba(14, 35, 56, 0.98), rgba(9, 28, 46, 0.96)),
    radial-gradient(circle at top right, rgba(64, 116, 149, 0.22), transparent 34%);
  border-color: rgba(93, 146, 176, 0.34);
  box-shadow:
    0 24px 42px rgba(5, 18, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-company-panel__stat:hover::before,
.home-company-panel__stat:focus-visible::before {
  width: 7px;
}

.home-company-panel__stat strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.08em;
  direction: ltr;
  unicode-bidi: bidi-override;
  color: var(--brand-dark);
  font-size: clamp(2.05rem, 2.85vw, 2.72rem);
  line-height: 0.95;
  margin-bottom: 0.38rem;
  transition: color 0.28s ease, transform 0.28s ease;
  width: 100%;
  text-align: right;
  margin-inline-start: auto;
}

.home-company-panel__stat .count-up {
  display: inline-block;
  min-width: 1.7ch;
  line-height: 1;
  font: inherit;
}

.home-company-panel__stat span {
  display: block;
  color: #5f6e7d;
  font-weight: 800;
  line-height: 1.48;
  transition: color 0.28s ease;
  text-align: right;
}

.home-company-panel__stat--wide {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 239, 224, 0.96)),
    radial-gradient(circle at top right, rgba(207, 173, 85, 0.2), transparent 46%);
}

.home-company-panel__stat:hover strong,
.home-company-panel__stat:focus-visible strong {
  color: #f3d68f;
  transform: translateX(-2px);
}

.home-company-panel__stat:hover span,
.home-company-panel__stat:focus-visible span {
  color: rgba(255, 255, 255, 0.92);
}

.home-company-panel__stat--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(100%, calc(100% - 1rem));
  justify-self: center;
  padding: 1.02rem 0.96rem 0.98rem;
}

.home-company-panel__stat--wide strong {
  margin-bottom: 0;
}

.home-company-panel__stat--wide span {
  font-size: 0.98rem;
}

.home-service-deck {
  position: relative;
  margin-top: -0.35rem;
  padding-top: 3.25rem;
}

.home-service-deck::before,
.home-sector-stage::before,
.home-studio-intro::before,
.home-showcase-panel::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: -1.6rem;
  height: 3.2rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 244, 236, 0), rgba(248, 244, 236, 0.45) 56%, rgba(248, 244, 236, 0.82) 100%);
}

.home-service-deck .container,
.home-sector-stage .container,
.home-studio-intro .container,
.home-showcase-panel .container {
  position: relative;
  z-index: 1;
}

.home-service-deck .section-heading,
.home-sector-stage .section-heading,
.home-studio-intro__layout,
.home-showcase-panel__layout {
  position: relative;
}

.home-service-deck .section-heading::before,
.home-sector-stage .section-heading::before {
  content: "";
  position: absolute;
  inset: -1rem -1.15rem auto auto;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.home-studio-intro {
  position: relative;
  margin-top: -0.25rem;
  padding-top: 3.35rem;
}

.home-studio-intro__layout,
.home-showcase-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 1.3rem;
  align-items: center;
}

.home-sector-stage {
  position: relative;
  margin-top: -0.25rem;
  padding-top: 3.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(216, 181, 100, 0.05)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.05), transparent 28%);
}

.home-showcase-panel {
  position: relative;
  margin-top: -0.2rem;
  padding-top: 3.45rem;
  padding-bottom: 2.2rem;
  overflow: hidden;
}

.home-studio-intro__cards,
.home-service-deck__grid,
.home-sector-stage__grid {
  display: grid;
}

.home-studio-intro__brand {
  color: #123454;
  font-weight: 800;
}

.home-studio-intro__cards {
  gap: 1rem;
}

.home-studio-intro__cards article,
.home-sector-card,
.home-service-card,
.home-showcase-frame {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.home-studio-intro__cards article {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 236, 0.96)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 30%);
  box-shadow:
    0 16px 34px rgba(10, 31, 51, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  outline: none;
}

.home-studio-intro__cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(207, 173, 85, 0.88), rgba(16, 42, 67, 0.16));
  transition: width 0.28s ease;
}

.home-studio-intro__cards article:hover,
.home-studio-intro__cards article:focus-visible {
  transform: translateY(-5px);
  background:
    linear-gradient(180deg, rgba(14, 35, 56, 0.98), rgba(9, 28, 46, 0.95)),
    radial-gradient(circle at top right, rgba(64, 116, 149, 0.18), transparent 34%);
  border-color: rgba(93, 146, 176, 0.28);
  box-shadow:
    0 22px 36px rgba(5, 18, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-studio-intro__cards article:hover::before,
.home-studio-intro__cards article:focus-visible::before {
  width: 7px;
}

.home-studio-intro__cards strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
  transition: color 0.28s ease, transform 0.28s ease;
}

.home-studio-intro__cards span {
  color: #5f6d7b;
  line-height: 1.85;
  transition: color 0.28s ease;
}

.home-studio-intro__cards article:hover strong,
.home-studio-intro__cards article:focus-visible strong {
  color: #f3d68f;
  transform: translateX(-2px);
}

.home-studio-intro__cards article:hover span,
.home-studio-intro__cards article:focus-visible span {
  color: rgba(255, 255, 255, 0.92);
}

.home-sector-stage__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.home-sector-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.58rem 1.6rem 1.45rem;
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 233, 0.96)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 28%);
  border: 1px solid rgba(16, 42, 67, 0.11);
  box-shadow:
    0 20px 38px rgba(10, 31, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-sector-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 46px rgba(10, 31, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.home-sector-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(207, 173, 85, 0.85), rgba(16, 42, 67, 0.16));
}

.home-sector-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-bottom: 1rem;
  padding: 0.42rem 0.96rem;
  color: #8f6c27;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, rgba(245, 234, 207, 0.96), rgba(238, 226, 196, 0.9));
  border: 1px solid rgba(207, 173, 85, 0.22);
  border-radius: 999px;
  box-shadow:
    0 10px 20px rgba(197, 160, 89, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  width: fit-content;
}

.home-sector-card h3 {
  margin: 0 0 0.78rem;
  color: var(--brand-dark);
  font-size: clamp(1.72rem, 2.35vw, 2rem);
  line-height: 1.18;
}

.home-sector-card p {
  margin: 0;
  color: #5d6d7c;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.8;
  max-width: 34ch;
}

.home-sector-card--accent {
  background:
    linear-gradient(155deg, #102c46 0%, var(--navy-main) 100%),
    radial-gradient(circle at top right, rgba(232, 207, 144, 0.08), transparent 30%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 38px rgba(10, 31, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-sector-card--accent::before {
  background: linear-gradient(180deg, rgba(234, 205, 136, 0.92), rgba(255, 255, 255, 0.16));
}

.home-sector-card--accent h3,
.home-sector-card--accent p {
  color: #fff;
}

.home-sector-card--accent span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border-color: rgba(233, 206, 141, 0.3);
  color: #f4dca2;
  box-shadow:
    0 12px 22px rgba(5, 18, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-height: 40px;
  padding: 0.42rem 0.96rem;
  border-radius: 999px;
}

.home-sector-card .check-list {
  margin-top: 1.1rem;
}

.home-sector-card .check-list li {
  margin-bottom: 0.78rem;
  min-height: 58px;
  padding: 0.84rem 2.3rem 0.84rem 1rem;
  color: #5a6a79;
  font-weight: 700;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(16, 42, 67, 0.08);
  display: flex;
  align-items: center;
}

.home-sector-card .check-list li::before {
  top: 1.15rem;
  right: 0.95rem;
  width: 7px;
  height: 7px;
  background: #c9a451;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 164, 81, 0.1);
}

.home-sector-card--accent .check-list li {
  color: #f8f3e6;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(233, 206, 141, 0.16);
}

.home-sector-card--accent .check-list li::before {
  background: #f1d596;
  box-shadow: 0 0 0 5px rgba(241, 213, 150, 0.12);
}

.home-service-deck__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.home-service-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  min-height: 440px;
  height: 440px;
  transition: all 0.3s ease;
  isolation: isolate;
}

.home-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.3s ease;
}

.home-service-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.02) 0%, rgba(10, 31, 51, 0.16) 42%, rgba(10, 31, 51, 0.62) 100%),
    linear-gradient(0deg, rgba(8, 22, 36, 0.52), rgba(8, 22, 36, 0.04));
  z-index: 1;
  transition: all 0.3s ease;
}

.home-service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1rem 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(233, 206, 141, 0), rgba(233, 206, 141, 0.52), rgba(233, 206, 141, 0));
  z-index: 2;
  opacity: 0.72;
}

.home-service-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.45rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.2rem;
}

.home-service-card__content span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-bottom: 0.7rem;
  padding: 0.36rem 0.88rem;
  color: rgba(255, 235, 184, 1);
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  background: rgba(7, 23, 38, 0.68);
  border: 1px solid rgba(233, 206, 141, 0.72);
  border-radius: 999px;
  text-shadow: 0 5px 13px rgba(8, 22, 36, 0.34);
  box-shadow:
    0 14px 22px rgba(5, 18, 30, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: absolute;
  top: 1.24rem;
  inset-inline-start: 1.18rem;
  margin-bottom: 0;
}

.home-service-card h3 {
  position: absolute;
  right: 1.35rem;
  left: 1.35rem;
  bottom: 1.45rem;
  display: -webkit-box;
  font-size: 1.34rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.24;
  margin-bottom: 0;
  min-height: calc(1.24em * 2);
  overflow: hidden;
  text-shadow: 0 6px 18px rgba(8, 22, 36, 0.44);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-service-card--construction img {
  object-position: center 42%;
}

.home-service-card--infrastructure img {
  object-position: center 54%;
}

.home-service-card--maintenance img {
  object-position: 52% center;
}

.home-service-card--steel img {
  object-position: center 30%;
}

.home-service-card--real-estate img {
  object-position: center 44%;
}

.home-service-card p {
  display: none;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(10, 31, 51, 0.16);
  border-color: rgba(197, 160, 89, 0.24);
}

.home-service-card:hover img,
.home-service-card:focus-visible img {
  transform: scale(1.05);
}

.home-service-card:hover .home-service-card__overlay,
.home-service-card:focus-visible .home-service-card__overlay {
  background:
    linear-gradient(180deg, rgba(10, 31, 51, 0.04) 0%, rgba(10, 31, 51, 0.18) 44%, rgba(10, 31, 51, 0.68) 100%),
    linear-gradient(0deg, rgba(8, 22, 36, 0.6), rgba(8, 22, 36, 0.06));
}

.home-service-deck.is-pending .home-service-card {
  opacity: 0;
  transform: translateY(34px);
}

.home-service-deck.is-revealed .home-service-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.82s ease,
    transform 1.02s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--service-reveal-order, 0) * 420ms);
}


.service-map-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0.36rem 0.82rem;
  color: #f0d28b;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(233, 206, 141, 0.2);
  border-radius: 999px;
  text-shadow: 0 4px 14px rgba(8, 22, 36, 0.34);
}

@media (max-width: 1180px) {
  .home-service-card h3 {
    font-size: 1.35rem;
  }

  .home-service-card p {
    font-size: 0.9rem;
    max-width: 24ch;
  }
}

@media (max-width: 760px) {
  .home-service-card h3 {
    font-size: 1.2rem;
  }

  .home-service-card p {
    font-size: 0.88rem;
    line-height: 1.75;
  }
}

.home-service-card--featured h3,
.home-service-card--featured p,
.home-service-card--featured span {
  color: #fff;
}

.home-showcase-panel__visual {
  display: flex;
  justify-content: flex-end;
  align-self: center;
  margin-top: 0;
}

.home-showcase-panel__copy {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding-top: 0.8rem;
}

.home-showcase-panel__copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: #4b5e70;
  font-weight: 600;
  line-height: 1.88;
}

.home-showcase-panel__points {
  display: grid;
  gap: 0.8rem;
  margin: 0.55rem 0 0;
}

.home-showcase-panel__brand {
  color: #123454;
  font-weight: 800;
}

.home-company-panel__brand,
.home-showcase-panel__brand,
.footer-brand {
  font-weight: 800;
  color: #123454;
  text-shadow: none;
}

.brand-emphasis {
  font-weight: 900;
}

.footer-column p .footer-brand,
.footer-brand {
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.home-company-panel__copy h2 .home-company-panel__brand,
.home-company-panel__copy p .home-company-panel__brand,
.home-showcase-panel__copy p .home-showcase-panel__brand,
.footer-column p .footer-brand,
.cta-block__content h2 .brand-emphasis {
  display: inline;
  padding-inline: 0;
  border-bottom: 0;
  border-radius: 0;
}

.home-showcase-panel__points article {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.05rem 0.96rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.96)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 34%);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow:
    0 14px 26px rgba(10, 31, 51, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  outline: none;
}

.home-showcase-panel__points article::before {
  content: none;
  position: absolute;
  top: 1rem;
  left: 1rem;
  min-width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(14, 35, 56, 0.98), rgba(9, 28, 46, 0.96)),
    radial-gradient(circle at top right, rgba(243, 214, 143, 0.16), transparent 34%);
  border: 1px solid rgba(93, 146, 176, 0.2);
  color: #f3d68f;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow:
    0 14px 24px rgba(5, 18, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease;
}

.home-showcase-panel__points article:hover,
.home-showcase-panel__points article:focus-visible {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(14, 35, 56, 0.98), rgba(9, 28, 46, 0.95)),
    radial-gradient(circle at top right, rgba(64, 116, 149, 0.16), transparent 34%);
  border-color: rgba(93, 146, 176, 0.24);
  box-shadow:
    0 20px 34px rgba(5, 18, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-showcase-panel__points article:hover::before,
.home-showcase-panel__points article:focus-visible::before {
  transform: translateY(-2px);
}

.home-showcase-panel__points strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 0.24rem;
  font-size: 1rem;
  transition: color 0.28s ease;
}

.home-showcase-panel__points span {
  color: #5f6d7b;
  display: block;
  line-height: 1.72;
  font-size: 0.95rem;
  transition: color 0.28s ease;
}

.home-showcase-panel__points article:hover strong,
.home-showcase-panel__points article:focus-visible strong {
  color: #f3d68f;
}

.home-showcase-panel__points article:hover span,
.home-showcase-panel__points article:focus-visible span {
  color: rgba(255, 255, 255, 0.92);
}

.home-showcase-frame {
  width: min(100%, 520px);
  padding: 0.72rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.98)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 28%);
  box-shadow:
    0 20px 42px rgba(10, 31, 51, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.home-showcase-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}

.home-methodology-board {
  display: grid;
  gap: 0.92rem;
}

.home-value-map {
  position: relative;
  min-height: 510px;
  display: block;
  padding: 1.55rem 1.4rem;
  overflow: hidden;
}

.home-value-map::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(197, 160, 89, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.home-value-map__orb {
  --base-transform: none;
  --reveal-x: 0px;
  --reveal-y: 0px;
  position: absolute;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.24rem;
  padding: 0.86rem 0.92rem;
  border-radius: 22px;
  text-align: center;
  z-index: 2;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.home-value-map__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 2.05rem;
  height: 2.05rem;
  margin: 0 auto 0.14rem;
  color: #8a673d;
  line-height: 0;
  opacity: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8f4eb 0%, #f3eee3 100%);
  box-shadow:
    0 8px 18px rgba(18, 41, 63, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.home-value-map__icon svg {
  width: 64%;
  height: 64%;
  display: block;
  stroke-width: 2;
}

.home-value-map__orb strong,
.home-value-map__orb span:not(.home-value-map__icon) {
  display: block;
  margin: 0;
}

.home-value-map__orb--core {
  inset: 50% auto auto 50%;
  --base-transform: translate(-50%, -50%);
  transform: var(--base-transform);
  width: min(100%, 196px);
  min-height: 138px;
  background:
    linear-gradient(165deg, rgba(14, 35, 56, 0.98), rgba(9, 28, 46, 0.95)),
    radial-gradient(circle at top right, rgba(243, 214, 143, 0.16), transparent 34%);
  border: 1px solid rgba(93, 146, 176, 0.22);
  box-shadow:
    0 22px 42px rgba(5, 18, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-value-map__orb--core strong {
  color: #f6e1ab;
  font-size: 1.22rem;
}

.home-value-map__orb--core span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.home-value-map__orb--top,
.home-value-map__orb--top-right,
.home-value-map__orb--side,
.home-value-map__orb--bottom-right,
.home-value-map__orb--bottom,
.home-value-map__orb--left,
.home-value-map__orb--top-left,
.home-value-map__orb--bottom-left {
  width: 124px;
  min-height: 92px;
  padding: 0.66rem 0.6rem 0.7rem;
  background: linear-gradient(180deg, #fcfcfb 0%, #f6f3ec 100%);
  border: 1px solid rgba(28, 59, 86, 0.12);
  box-shadow:
    0 14px 28px rgba(14, 32, 52, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.home-value-map__orb--top {
  top: -0.4rem;
  right: 50%;
  --base-transform: translateX(50%);
  transform: var(--base-transform);
}

.home-value-map__orb--top-right {
  top: 0.2rem;
  right: 0.55rem;
}

.home-value-map__orb--side {
  top: 50%;
  right: 0.4rem;
  --base-transform: translateY(-50%);
  transform: var(--base-transform);
}

.home-value-map__orb--bottom-right {
  bottom: 0.2rem;
  right: 0.55rem;
}

.home-value-map__orb--bottom {
  bottom: -0.55rem;
  right: 50%;
  --base-transform: translateX(50%);
  transform: var(--base-transform);
}

.home-value-map__orb--left {
  top: 50%;
  left: -0.1rem;
  --base-transform: translateY(-50%);
  transform: var(--base-transform);
}

.home-value-map__orb--top-left {
  top: 2.2rem;
  left: 0.35rem;
}

.home-value-map__orb--bottom-left {
  bottom: 2.2rem;
  left: 0.35rem;
}

.home-value-map__orb--top strong,
.home-value-map__orb--top-right strong,
.home-value-map__orb--side strong,
.home-value-map__orb--bottom-right strong,
.home-value-map__orb--bottom strong,
.home-value-map__orb--left strong,
.home-value-map__orb--top-left strong,
.home-value-map__orb--bottom-left strong {
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
}

.home-value-map__orb--top .home-value-map__icon {
  color: #7a613f;
}

.home-value-map__orb--top-right .home-value-map__icon {
  color: #8a673d;
}

.home-value-map__orb--side .home-value-map__icon {
  color: #647b34;
}

.home-value-map__orb--bottom-right .home-value-map__icon {
  color: #3f6d82;
}

.home-value-map__orb--bottom .home-value-map__icon {
  color: #845a30;
}

.home-value-map.is-revealed .home-value-map__orb:not(.home-value-map__orb--core):hover,
.home-value-map.is-revealed .home-value-map__orb:not(.home-value-map__orb--core):focus-visible {
  transform: var(--base-transform) translateY(-10px) scale(1.07);
  border-color: rgba(177, 139, 71, 0.52);
  box-shadow:
    0 28px 44px rgba(14, 32, 52, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, #ffffff 0%, #f4ecdd 100%),
    radial-gradient(circle at 20% 0%, rgba(209, 178, 110, 0.2), transparent 52%);
}

.home-value-map.is-revealed .home-value-map__orb[data-tone="decision"]:hover,
.home-value-map.is-revealed .home-value-map__orb[data-tone="decision"]:focus-visible {
  background: linear-gradient(180deg, #fff8ef 0%, #f6ebd9 100%);
}

.home-value-map.is-revealed .home-value-map__orb[data-tone="readiness"]:hover,
.home-value-map.is-revealed .home-value-map__orb[data-tone="readiness"]:focus-visible {
  background: linear-gradient(180deg, #f6fbe9 0%, #e8f1d1 100%);
}

.home-value-map.is-revealed .home-value-map__orb[data-tone="quality"]:hover,
.home-value-map.is-revealed .home-value-map__orb[data-tone="quality"]:focus-visible {
  background: linear-gradient(180deg, #eef8fc 0%, #dbeef7 100%);
}

.home-value-map.is-revealed .home-value-map__orb[data-tone="coordination"]:hover,
.home-value-map.is-revealed .home-value-map__orb[data-tone="coordination"]:focus-visible {
  background: linear-gradient(180deg, #fcf8f0 0%, #f3ead9 100%);
}

.home-value-map.is-revealed .home-value-map__orb[data-tone="execution"]:hover,
.home-value-map.is-revealed .home-value-map__orb[data-tone="execution"]:focus-visible {
  background: linear-gradient(180deg, #fdf6ef 0%, #f3e4d5 100%);
}

.home-value-map.is-revealed .home-value-map__orb:not(.home-value-map__orb--core):hover .home-value-map__icon,
.home-value-map.is-revealed .home-value-map__orb:not(.home-value-map__orb--core):focus-visible .home-value-map__icon {
  transform: translateY(-2px) scale(1.18);
  filter: saturate(1.2) brightness(1.05);
  box-shadow:
    0 14px 28px rgba(18, 41, 63, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.home-value-map__link {
  --base-transform: none;
  position: absolute;
  background: linear-gradient(180deg, rgba(207, 173, 85, 0.72), rgba(16, 42, 67, 0.24));
  border-radius: 999px;
  z-index: 1;
  opacity: 0.98;
  transform: var(--base-transform);
}

.home-value-map__link::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d3ad5e;
  box-shadow: 0 0 0 7px rgba(211, 173, 94, 0.14);
}

.home-value-map__link--top {
  top: 6.45rem;
  right: calc(50% - 1px);
  width: 2px;
  height: 118px;
}

.home-value-map__link--top::after {
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.home-value-map__link--top-right {
  top: 6.15rem;
  right: calc(50% - 1px);
  width: 178px;
  height: 2px;
  --base-transform: rotate(-30deg);
  transform-origin: right center;
}

.home-value-map__link--top-right::after {
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}

.home-value-map__link--side {
  top: 50%;
  right: calc(50% - 1px);
  width: 186px;
  height: 2px;
  --base-transform: translateY(-50%);
}

.home-value-map__link--side::after {
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}

.home-value-map__link--bottom-right {
  bottom: 6.15rem;
  right: calc(50% - 1px);
  width: 178px;
  height: 2px;
  --base-transform: rotate(30deg);
  transform-origin: right center;
}

.home-value-map__link--bottom-right::after {
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}

.home-value-map__link--bottom {
  bottom: 6.45rem;
  right: calc(50% - 1px);
  width: 2px;
  height: 118px;
}

.home-value-map__link--bottom::after {
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.home-value-map__link--left {
  top: 50%;
  left: calc(50% - 1px);
  width: 146px;
  height: 2px;
  --base-transform: translateY(-50%);
}

.home-value-map__link--left::after {
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
}

.home-value-map__link--top-left {
  top: 7.55rem;
  left: calc(50% - 1px);
  width: 134px;
  height: 2px;
  --base-transform: rotate(30deg);
  transform-origin: left center;
}

.home-value-map__link--top-left::after {
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
}

.home-value-map__link--bottom-left {
  bottom: 7.55rem;
  left: calc(50% - 1px);
  width: 134px;
  height: 2px;
  --base-transform: rotate(-30deg);
  transform-origin: left center;
}

.home-value-map__link--bottom-left::after {
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
}

.home-value-map.is-pending .home-value-map__orb,
.home-value-map.is-pending .home-value-map__link {
  opacity: 0;
  transition:
    opacity 0.56s ease,
    transform 0.64s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, calc(var(--reveal-order, 0) * 90ms));
}

.home-value-map.is-pending .home-value-map__orb {
  transform: var(--base-transform) translate(var(--reveal-x), var(--reveal-y)) scale(0.92);
}

.home-value-map.is-pending .home-value-map__orb--top {
  --reveal-y: -16px;
}

.home-value-map.is-pending .home-value-map__orb--top-right {
  --reveal-x: 18px;
  --reveal-y: -14px;
}

.home-value-map.is-pending .home-value-map__orb--side {
  --reveal-x: 18px;
}

.home-value-map.is-pending .home-value-map__orb--bottom-right {
  --reveal-x: 18px;
  --reveal-y: 14px;
}

.home-value-map.is-pending .home-value-map__orb--bottom {
  --reveal-y: 16px;
}

.home-value-map.is-pending .home-value-map__orb--left {
  --reveal-x: -18px;
}

.home-value-map.is-pending .home-value-map__orb--top-left {
  --reveal-x: -18px;
  --reveal-y: -14px;
}

.home-value-map.is-pending .home-value-map__orb--bottom-left {
  --reveal-x: -18px;
  --reveal-y: 14px;
}

.home-value-map.is-pending .home-value-map__link {
  transform: var(--base-transform);
  filter: blur(2px);
}

.home-value-map.is-pending .home-value-map__link--top,
.home-value-map.is-pending .home-value-map__link--bottom {
  transform: var(--base-transform);
}

.home-value-map.is-revealed .home-value-map__orb,
.home-value-map.is-revealed .home-value-map__link {
  opacity: 1;
}

.home-value-map.is-revealed .home-value-map__orb:not(.home-value-map__orb--core) {
  transform: var(--base-transform);
}

.home-value-map.is-revealed .home-value-map__link {
  transform: var(--base-transform);
  filter: blur(0);
}

.home-methodology-board__intro {
  padding: 1.05rem 1.08rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.94)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 30%);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow:
    0 14px 28px rgba(10, 31, 51, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.home-methodology-board__intro strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}

.home-methodology-board__intro span {
  display: block;
  color: #5f6d7b;
  line-height: 1.8;
}

.home-methodology-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.home-methodology-board__grid article {
  padding: 1rem 0.95rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(14, 35, 56, 0.98), rgba(9, 28, 46, 0.95));
  border: 1px solid rgba(93, 146, 176, 0.18);
  box-shadow:
    0 14px 26px rgba(5, 18, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-methodology-board__grid strong {
  display: block;
  color: #f3d68f;
  font-size: 1.15rem;
  margin-bottom: 0.26rem;
}

.home-methodology-board__grid span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.home-showcase-frame__overlay {
  margin-top: 0.92rem;
  padding: 1.14rem 1.16rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(15, 42, 68, 0.98), rgba(10, 31, 51, 0.92));
  color: #fff;
  box-shadow: 0 16px 30px rgba(10, 31, 51, 0.12);
}

.home-showcase-frame__overlay strong {
  display: block;
  font-size: 1.12rem;
}

.home-showcase-frame__overlay span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.home-showcase-frame__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
  margin-top: 0.92rem;
}

.home-showcase-frame__footer div {
  padding: 1rem 0.92rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 67, 0.08);
  text-align: center;
}

.home-showcase-frame__footer strong {
  display: block;
  color: var(--gold-deep);
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.home-showcase-frame__footer span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section-dark .cta-block h2 {
  max-width: 760px;
}

@media (max-width: 1180px) {
  .home-studio-hero__inner,
  .home-studio-intro__layout,
  .home-showcase-panel__layout {
    grid-template-columns: 1fr;
  }

  .home-studio-hero__panel,
  .home-showcase-panel__visual {
    justify-content: flex-start;
  }
  .home-showcase-panel__visual {
    margin-top: 0;
  }

  .home-service-deck__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-showcase-frame__footer {
    grid-template-columns: 1fr;
  }
}

.estate-projects-page {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 20%),
    linear-gradient(180deg, #f8f4ec 0%, #fcfbf8 34%, #f1ece3 100%);
}

.estate-projects-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

.estate-projects-hero__media,
.estate-projects-hero__media img,
.estate-projects-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.estate-projects-hero__media img {
  object-fit: cover;
}

.estate-projects-hero__veil {
  background:
    linear-gradient(90deg, rgba(8, 22, 36, 0.84) 0%, rgba(8, 22, 36, 0.46) 38%, rgba(8, 22, 36, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 22, 36, 0.12), rgba(8, 22, 36, 0.68));
}

.estate-projects-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 1.4rem;
  align-items: end;
  padding: 4.6rem 0 3rem;
}

.estate-projects-hero__copy h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.estate-projects-hero__copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
}

.estate-projects-hero__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.estate-projects-hero__panel article,
.estate-project-list-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.estate-projects-hero__panel article {
  padding: 1rem;
  border-radius: 20px;
  color: var(--brand-dark);
}

.estate-projects-hero__panel strong {
  display: block;
  font-size: 1.15rem;
}

.estate-projects-hero__panel span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.brand-hero__inner,
.estate-projects-hero__inner {
  justify-content: center;
}

.brand-hero__media,
.estate-projects-hero__media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.brand-hero--services .brand-hero__media {
  background-image: linear-gradient(rgba(0, 35, 71, 0.7), rgba(0, 35, 71, 0.4)), url('../images/hero-clean.webp');
}

.brand-hero--contact .brand-hero__media {
  background-image: linear-gradient(rgba(0, 35, 71, 0.7), rgba(0, 35, 71, 0.4)), url('../images/hero-clean.webp');
}

.brand-hero:not(.brand-hero--services):not(.brand-hero--contact) .brand-hero__media {
  background-image: linear-gradient(rgba(0, 35, 71, 0.7), rgba(0, 35, 71, 0.4)), url('../images/projects/project-hero.webp');
}

.estate-projects-hero__media {
  background-image: linear-gradient(rgba(0, 35, 71, 0.7), rgba(0, 35, 71, 0.4)), url('../images/service-real-estate.webp');
}

.brand-hero__media img,
.estate-projects-hero__media img {
  opacity: 0;
  visibility: hidden;
}

.estate-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.estate-project-list-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.estate-project-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(8, 22, 36, 0.08) 100%),
    var(--estate-card-glow, linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(15, 42, 68, 0.08)));
  pointer-events: none;
}

.estate-project-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.estate-project-list-card__link {
  display: block;
  height: 100%;
}

.estate-project-list-card__media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.estate-project-list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-project-list-card__media .status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.estate-project-list-card__index {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 0.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 28px rgba(8, 22, 36, 0.16);
}

.estate-project-list-card__body {
  padding: 1.05rem;
  position: relative;
  display: grid;
  min-height: 255px;
}

.estate-project-list-card__head {
  margin-bottom: 0.6rem;
}

.estate-project-list-card__head h3 {
  margin-bottom: 0.2rem;
  color: var(--brand-dark);
}

.estate-project-list-card__head span,
.estate-project-list-card__body p {
  color: var(--text-muted);
}

.estate-project-list-card__body p {
  min-height: 110px;
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: justify;
}

.estate-project-list-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
}

.estate-project-list-card__meta {
  display: grid;
  gap: 0.1rem;
}

.estate-project-list-card__meta strong {
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.estate-project-list-card__meta span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.estate-project-list-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--estate-card-accent, linear-gradient(135deg, var(--navy-main), var(--navy-main)));
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
  box-shadow: 0 14px 26px rgba(8, 22, 36, 0.14);
}

.estate-project-list-card__cta::before {
  content: "←";
  font-size: 0.92rem;
}

.estate-project-list-card--1 {
  --estate-card-accent: linear-gradient(135deg, #8f6830, #caa45a);
  --estate-card-glow: linear-gradient(135deg, rgba(202, 164, 90, 0.22), rgba(15, 42, 68, 0.04));
}

.estate-project-list-card--2 {
  --estate-card-accent: linear-gradient(135deg, #103b52, #1d6589);
  --estate-card-glow: linear-gradient(135deg, rgba(29, 101, 137, 0.2), rgba(16, 59, 82, 0.04));
}

.estate-project-list-card--3 {
  --estate-card-accent: linear-gradient(135deg, #465861, #7e9aa6);
  --estate-card-glow: linear-gradient(135deg, rgba(126, 154, 166, 0.18), rgba(70, 88, 97, 0.04));
}

.estate-project-list-card--4 {
  --estate-card-accent: linear-gradient(135deg, #4c2f2d, #8e5d51);
  --estate-card-glow: linear-gradient(135deg, rgba(142, 93, 81, 0.2), rgba(76, 47, 45, 0.04));
}

.estate-project-list-card--5 {
  --estate-card-accent: linear-gradient(135deg, #32504a, #5f877e);
  --estate-card-glow: linear-gradient(135deg, rgba(95, 135, 126, 0.2), rgba(50, 80, 74, 0.04));
}

.estate-project-detail-page[data-project-id="bayan-1"] {
  --estate-detail-accent: var(--gold-main);
  --estate-detail-glow: rgba(197, 160, 89, 0.16);
}

.estate-project-detail-page[data-project-id="bayan-2"] {
  --estate-detail-accent: #2d6f93;
  --estate-detail-glow: rgba(45, 111, 147, 0.16);
}

.estate-project-detail-page[data-project-id="bayan-3"] {
  --estate-detail-accent: #7d8f99;
  --estate-detail-glow: rgba(125, 143, 153, 0.16);
}

.estate-project-detail-page[data-project-id="bayan-4"] {
  --estate-detail-accent: #94685b;
  --estate-detail-glow: rgba(148, 104, 91, 0.16);
}

.estate-project-detail-page[data-project-id="bayan-5"] {
  --estate-detail-accent: #5f877e;
  --estate-detail-glow: rgba(95, 135, 126, 0.16);
}

.estate-project-detail-page .estate-studio-hero__copy h1,
.estate-project-detail-page .estate-command-panel__section h3,
.estate-project-detail-page .estate-selected-unit__head strong,
.estate-project-detail-page .estate-detail-stats strong {
  color: var(--estate-detail-accent, var(--brand-dark));
}

.estate-project-detail-page .estate-command-panel__section,
.estate-project-detail-page .estate-stage,
.estate-project-detail-page .estate-hero-aside__card {
  box-shadow:
    0 18px 34px rgba(10, 31, 51, 0.08),
    0 0 0 1px var(--estate-detail-glow, rgba(197, 160, 89, 0.1));
}

.estate-project-detail-page .estate-stage__overlay,
.estate-project-detail-page .estate-availability-panel {
  background:
    linear-gradient(180deg, transparent, rgba(8, 22, 36, 0.82)),
    linear-gradient(135deg, var(--estate-detail-accent, var(--gold-main)), var(--navy-main));
}

.estate-project-detail-page .estate-unit-browser__item.is-active,
.estate-project-detail-page .estate-thumb.is-active {
  border-color: var(--estate-detail-accent, var(--gold));
  box-shadow: 0 0 0 3px var(--estate-detail-glow, rgba(197, 160, 89, 0.16));
}

@media (max-width: 1180px) {
  .estate-projects-hero__inner {
    grid-template-columns: 1fr;
  }

  .estate-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .estate-projects-hero__panel,
  .estate-projects-grid {
    grid-template-columns: 1fr;
  }

  .estate-project-list-card__body {
    min-height: auto;
  }

  .estate-project-list-card__body p {
    min-height: auto;
  }

  .estate-project-list-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .estate-project-list-card__cta {
    justify-content: center;
    width: 100%;
  }
}

.brand-studio-page {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.12), transparent 22%),
    radial-gradient(circle at 14% 84%, rgba(15, 42, 68, 0.06), transparent 24%),
    linear-gradient(180deg, #f8f4ec 0%, #fcfbf8 34%, #f1ece3 100%);
}

.brand-hero {
  position: relative;
  min-height: calc(88svh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

.brand-hero__media,
.brand-hero__media img,
.brand-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-hero__media img {
  object-fit: cover;
  object-position: center;
}

.brand-hero__veil {
  background:
    linear-gradient(90deg, rgba(0, 35, 71, 0.92) 0%, rgba(0, 35, 71, 0.68) 38%, rgba(0, 35, 71, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 35, 71, 0.26), rgba(0, 35, 71, 0.82));
}

.brand-hero__media,
.estate-projects-hero__media {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.brand-hero__inner,
.estate-projects-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.2rem;
  align-items: center;
  padding: 5.4rem 0 3.2rem;
}

.brand-hero__copy {
  max-width: 760px;
}

.brand-hero__panel,
.estate-projects-hero__panel {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 1rem;
}

.brand-hero__panel article,
.estate-projects-hero__panel article {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  padding: 1.35rem 1.45rem;
  box-shadow: var(--shadow-soft);
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-hero__panel article strong,
.estate-projects-hero__panel article strong {
  color: var(--navy-main);
}

.brand-hero__panel article span,
.estate-projects-hero__panel article span {
  color: var(--text-muted);
}

.brand-hero__copy h1 {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(3rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  text-wrap: balance;
  border-bottom: 3px solid #C5A059;
  display: inline-flex;
  padding-bottom: 0.35rem;
  margin-inline: auto;
}

.brand-hero__copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.brand-hero__copy,
.estate-projects-hero__copy {
  text-align: center;
}

.brand-hero__panel,
.estate-projects-hero__panel {
  justify-self: center;
}

.brand-hero__copy h1,
.estate-projects-hero__copy h1,
.brand-hero__copy p:not(.eyebrow),
.estate-projects-hero__copy p:not(.eyebrow) {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brand-hero__copy .hero-actions,
.estate-projects-hero__copy .hero-actions {
  justify-content: center;
}

.brand-hero__copy h1,
.estate-projects-hero__copy h1 {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: clamp(3rem, 5vw, 3.5rem);
}

.brand-hero__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-hero__panel article,
.brand-story__card,
.brand-pillar,
.brand-values__grid article,
.service-map-card,
.brand-link-card,
.contact-studio__card,
.contact-studio__form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.brand-hero__panel article {
  padding: 1rem;
  border-radius: 20px;
  color: var(--brand-dark);
}

.brand-hero__panel strong {
  display: block;
  font-size: 1.1rem;
}

.brand-hero__panel span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.brand-story__layout,
.service-flow__layout,
.contact-studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 1.25rem;
  align-items: start;
}

.brand-story__content h2,
.service-flow__content h2 {
  margin-bottom: 0.9rem;
}

.brand-story__points,
.brand-pillars__grid,
.brand-values__grid,
.service-map__grid,
.brand-links__grid {
  display: grid;
  gap: 1rem;
}

.brand-story__points {
  margin-top: 1.2rem;
}

.brand-story__points article {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 42, 67, 0.06);
}

.brand-story__points strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-dark);
}

.brand-story__card {
  padding: 1.25rem;
  border-radius: 28px;
}

.brand-story__card h3 {
  font-size: 1.55rem;
  line-height: 1.35;
}

.brand-pillars__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-pillar {
  padding: 1.35rem;
  border-radius: 26px;
}

.brand-pillar span,
.service-map-card span,
.brand-link-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--gold-deep);
  font-weight: 800;
}

.brand-pillar--featured,
.service-map-card--featured,
.contact-studio__card--dark {
  background: linear-gradient(160deg, #0e2740 0%, #173b5a 100%);
  color: #fff;
}

.brand-pillar--featured span,
.brand-pillar--featured h3,
.brand-pillar--featured p,
.service-map-card--featured span,
.service-map-card--featured h3,
.service-map-card--featured p,
.service-map-card--featured a,
.contact-studio__card--dark h2,
.contact-studio__card--dark p,
.contact-studio__card--dark a,
.contact-studio__card--dark .eyebrow {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}

.brand-values__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-values__grid article {
  padding: 1.2rem;
  border-radius: 24px;
}

.brand-values__grid h3 {
  margin-bottom: 0.45rem;
}

.service-map__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-map-card {
  padding: 1.35rem;
  border-radius: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 42, 67, 0.12);
  background: rgba(255,255,255,0.95);
}

.service-map-card span {
  position: relative;
  color: var(--gold-main);
  font-weight: 800;
  padding-left: 0;
}

.service-map-card span::before {
  content: none;
}

.service-map-card h3 {
  color: var(--navy-main);
  margin-bottom: 0.75rem;
}

.service-map-card a,
.brand-link-card {
  margin-top: auto;
}

.service-map-card a {
  color: var(--brand-dark);
  font-weight: 800;
}

.service-flow__steps {
  display: grid;
  gap: 0.85rem;
}

.service-flow__steps article {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.service-flow__steps strong {
  display: block;
  color: var(--gold-deep);
  margin-bottom: 0.25rem;
}

/* Services page: make "طريقة العمل" premium and balanced */
.services-page--luxury .service-flow {
  background:
    linear-gradient(180deg, rgba(252, 249, 243, 0.96), rgba(248, 243, 233, 0.92));
}

.services-page--luxury .service-flow__layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.services-page--luxury .service-flow__steps article {
  min-height: 92px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 230, 0.92));
  border: 1px solid rgba(16, 42, 67, 0.09);
  box-shadow: 0 12px 24px rgba(10, 31, 51, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.services-page--luxury .service-flow__steps strong {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.services-page--luxury .service-flow__steps span {
  color: #0f2f4c;
  font-weight: 700;
}

.services-page--luxury .service-flow__steps article:hover {
  background: linear-gradient(160deg, #0f2f4c 0%, #1a456d 100%);
  border-color: rgba(209, 174, 106, 0.48);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(10, 31, 51, 0.16);
}

.services-page--luxury .service-flow__steps article:hover strong {
  color: #efcf82;
}

.services-page--luxury .service-flow__steps article:hover span {
  color: #fff;
}

.services-page--luxury .service-flow__content {
  border-radius: 22px;
  padding: 1.3rem 1.35rem;
  background: linear-gradient(165deg, #102c46 0%, #1a4368 100%);
  border: 1px solid rgba(206, 171, 104, 0.24);
  box-shadow: 0 18px 36px rgba(10, 31, 51, 0.16);
}

.services-page--luxury .service-flow__content .eyebrow {
  color: #f1d69b;
  border-color: rgba(241, 214, 155, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.services-page--luxury .service-flow__content h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.42;
  margin-bottom: 0.65rem;
}

.services-page--luxury .service-flow__content p {
  color: rgba(240, 246, 252, 0.9);
  line-height: 1.8;
}

/* Services page: premium bridge cards after workflow */
.services-page--luxury .service-bridge {
  padding-top: clamp(2rem, 3.8vh, 2.8rem);
}

.services-page--luxury .service-bridge__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem;
}

.services-page--luxury .service-bridge .brand-link-card {
  min-height: 170px;
  border-radius: 22px;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(160deg, #0f2d48 0%, #1a456d 100%);
  border: 1px solid rgba(206, 171, 104, 0.26);
  box-shadow:
    0 18px 40px rgba(10, 31, 51, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.services-page--luxury .service-bridge .brand-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.services-page--luxury .service-bridge .brand-link-card span {
  color: #f0d69b;
  margin-bottom: 0.5rem;
}

.services-page--luxury .service-bridge .brand-link-card strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.services-page--luxury .service-bridge .brand-link-card p {
  color: rgba(237, 244, 251, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
}

.services-page--luxury .service-bridge .brand-link-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 214, 155, 0.5);
  box-shadow:
    0 24px 52px rgba(10, 31, 51, 0.24),
    0 0 0 1px rgba(240, 214, 155, 0.16);
}

.services-page--luxury .service-bridge .brand-link-card:hover::before {
  transform: translateX(120%);
}

@media (max-width: 980px) {
  .services-page--luxury .service-bridge__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .services-page--luxury .service-bridge__grid {
    grid-template-columns: 1fr;
  }
}

/* Services page: premium final CTA */
.services-page--luxury .services-cta-stage {
  padding-top: clamp(1.2rem, 2.6vh, 1.8rem);
  padding-bottom: clamp(2rem, 3.2vh, 2.5rem);
  background:
    linear-gradient(180deg, rgba(8, 34, 58, 0.98), rgba(6, 27, 47, 1)),
    radial-gradient(circle at 12% 10%, rgba(216, 185, 118, 0.14), transparent 34%);
}

.services-page--luxury .services-cta-stage .cta-block {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.85fr);
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
  min-height: 320px;
  padding: clamp(1.4rem, 2.4vw, 1.95rem);
  border-radius: 30px;
  border: 1px solid rgba(162, 190, 212, 0.2);
  background:
    linear-gradient(158deg, rgba(14, 45, 72, 0.76), rgba(8, 31, 51, 0.84)),
    radial-gradient(circle at 86% 14%, rgba(230, 200, 120, 0.12), transparent 44%);
  box-shadow:
    0 24px 46px rgba(2, 13, 24, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services-page--luxury .services-cta-stage .cta-block__content {
  gap: 0.65rem;
  align-content: center;
}

.services-page--luxury .services-cta-stage .cta-block__content .eyebrow {
  padding: 0.48rem 0.95rem;
  background: rgba(230, 200, 120, 0.12);
  border-color: rgba(230, 200, 120, 0.34);
  color: rgba(246, 224, 178, 0.98);
}

.services-page--luxury .services-cta-stage .cta-block__content h2 {
  max-width: min(100%, 31rem);
  font-size: clamp(1.34rem, 1.65vw, 1.78rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.services-page--luxury .services-cta-stage .cta-block__content p:last-child {
  max-width: min(100%, 36rem);
  color: rgba(236, 245, 252, 0.92);
  font-size: clamp(0.98rem, 1.02vw, 1.06rem);
  line-height: 1.9;
}

.services-page--luxury .services-cta-stage .cta-block__actions {
  max-width: 360px;
  justify-self: end;
  align-self: center;
  padding: 0.7rem;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.services-page--luxury .services-cta-stage .cta-block__actions .cta-actions {
  gap: 0.56rem;
}

.services-page--luxury .services-cta-stage .cta-block__actions .button {
  min-height: 49px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.services-page--luxury .services-cta-stage .cta-block__actions .button-primary.light {
  color: #0b2338;
  border-color: rgba(247, 227, 178, 0.58);
  background: linear-gradient(135deg, #f5dd9e 0%, #d1ab5d 54%, #ad843b 100%);
  box-shadow: 0 10px 20px rgba(172, 132, 59, 0.22);
}

.services-page--luxury .services-cta-stage .cta-block__actions .button-primary.light:hover {
  background: linear-gradient(135deg, #f8e5b3 0%, #d9b468 54%, #bb9150 100%);
  color: #071a2b;
}

.services-page--luxury .services-cta-stage .cta-block__actions .button-secondary.light {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(248, 252, 255, 0.95);
  background: rgba(255, 255, 255, 0.03);
}

.services-page--luxury .services-cta-stage .cta-block__actions .button-secondary.light:hover {
  border-color: rgba(230, 200, 120, 0.36);
  background: rgba(230, 200, 120, 0.09);
  color: #ffffff;
}

@media (max-width: 980px) {
  .services-page--luxury .services-cta-stage .cta-block {
    grid-template-columns: 1fr;
  }

  .services-page--luxury .services-cta-stage .cta-block__actions {
    justify-self: start;
  }
}

.brand-links__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-link-card {
  display: block;
  padding: 1.2rem;
  border-radius: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-link-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.brand-link-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.brand-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-studio__card,
.contact-studio__form {
  padding: 1.35rem;
  border-radius: 28px;
}

.contact-studio__form {
  background: #ffffff;
  border: 2px solid var(--navy-main);
  box-shadow: 0 18px 45px rgba(15, 34, 63, 0.12);
}

.contact-studio__form button.button-primary {
  background: linear-gradient(135deg, var(--gold-main), #c5a059);
  color: var(--navy-dark);
  min-width: 180px;
}

.contact-studio__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-studio__list a {
  font-weight: 700;
}

.contact-studio__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.contact-studio__topics span {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.contact-studio__form {
  display: grid;
  gap: 0.9rem;
}

.contact-studio__form label {
  display: grid;
  gap: 0.45rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-studio__form input,
.contact-studio__form select,
.contact-studio__form textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-dark);
}

.contact-studio__form textarea {
  resize: vertical;
}

@media (max-width: 1180px) {
  .brand-hero__inner,
  .brand-story__layout,
  .service-flow__layout,
  .contact-studio__grid {
    grid-template-columns: 1fr;
  }

  .service-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-pillars__grid,
  .brand-values__grid,
  .brand-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-hero__copy h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .brand-hero__panel,
  .service-map__grid,
  .brand-pillars__grid,
  .brand-values__grid,
  .brand-links__grid {
    grid-template-columns: 1fr;
  }
}

.service-map-card__link,
.home-service-card__link {
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-map-card__link:hover,
.home-service-card__link:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(11, 34, 56, 0.14);
}

.service-map-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(14, 35, 56, 0.96), rgba(9, 28, 46, 0.95));
  border: 1px solid rgba(93, 146, 176, 0.24);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow:
    0 14px 24px rgba(5, 18, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.service-map-card--featured .service-map-card__cta,
.home-service-card--featured .service-map-card__cta {
  color: #f3dd9d;
}

.service-map-card__link:hover .service-map-card__cta,
.service-map-card__link:focus-visible .service-map-card__cta {
  background: linear-gradient(180deg, rgba(18, 43, 67, 0.99), rgba(11, 33, 53, 0.97));
  border-color: rgba(243, 214, 143, 0.34);
  color: #f3d68f;
  box-shadow:
    0 18px 30px rgba(5, 18, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-service-card__link {
  display: flex;
  flex-direction: column;
}

.sector-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(191, 152, 83, 0.08), transparent 28%),
    linear-gradient(180deg, #f9f6ef 0%, #ffffff 24%, #f7f3eb 100%);
}

.sector-hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
}

.sector-hero__media,
.sector-hero__veil {
  position: absolute;
  inset: 0;
}

.sector-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-hero__veil {
  background:
    linear-gradient(115deg, rgba(8, 25, 42, 0.9) 12%, rgba(8, 25, 42, 0.55) 54%, rgba(8, 25, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(191, 152, 83, 0.16), transparent 38%);
}

.sector-hero__inner,
.sector-overview__layout,
.sector-process__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: end;
}

.sector-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.sector-hero__copy {
  max-width: 760px;
  color: #fff;
}

.sector-hero__copy h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}

.sector-hero__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  max-width: 62ch;
}

.sector-hero__panel,
.sector-overview__card,
.sector-project-card,
.sector-process__card,
.sector-links a {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 42, 64, 0.08);
  box-shadow: 0 24px 50px rgba(10, 33, 55, 0.1);
}

.sector-hero__panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border-radius: 32px;
}

.sector-hero__panel article {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  background: rgba(246, 240, 228, 0.8);
  border-radius: 22px;
}

.sector-hero__panel strong {
  font-size: 1.5rem;
  color: var(--brand-dark);
}

.sector-hero__panel span {
  color: var(--text-muted);
}

.sector-overview__card,
.sector-process__card {
  padding: 1.4rem;
  border-radius: 28px;
}

.sector-overview__points,
.sector-process__steps,
.sector-gallery__grid,
.sector-projects__grid,
.sector-links {
  display: grid;
  gap: 1rem;
}

.sector-overview__points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-overview__points article,
.sector-process__steps article {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.sector-overview__points h3,
.sector-project-card h3,
.sector-process__steps h3 {
  margin-bottom: 0.35rem;
  font-size: 1.16rem;
}

.section-heading-actions {
  margin-top: 1rem;
  justify-content: center;
}

.section-heading-actions .button {
  min-height: 42px;
  padding: 0.64rem 1.35rem;
  border-radius: 999px;
  font-size: 0.99rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 10px 22px rgba(0, 35, 71, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.section-heading-actions .button.button-secondary {
  background: linear-gradient(180deg, #efd39b 0%, #d6ae68 52%, #c89c57 100%);
  border-color: rgba(150, 113, 52, 0.46);
  color: #19324f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.section-heading-actions .button.button-secondary:hover {
  background: linear-gradient(180deg, #f5dcab 0%, #ddb875 52%, #cea764 100%);
  border-color: rgba(131, 94, 38, 0.6);
  color: #132a44;
  transform: translateY(-2px);
  box-shadow:
    0 14px 24px rgba(0, 35, 71, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sector-projects__cta {
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  display: flex;
  justify-content: center;
}

.sector-projects__cta .button {
  min-height: 42px;
  padding: 0.64rem 1.35rem;
  border-radius: 999px;
  font-size: 0.99rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 10px 22px rgba(0, 35, 71, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.sector-projects__cta .button.button-secondary {
  background: linear-gradient(180deg, #efd39b 0%, #d6ae68 52%, #c89c57 100%);
  border-color: rgba(150, 113, 52, 0.46);
  color: #19324f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.sector-projects__cta .button.button-secondary:hover {
  background: linear-gradient(180deg, #f5dcab 0%, #ddb875 52%, #cea764 100%);
  border-color: rgba(131, 94, 38, 0.6);
  color: #132a44;
  transform: translateY(-2px);
  box-shadow:
    0 14px 24px rgba(0, 35, 71, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sector-process__layout {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.15rem;
}

.sector-process__card {
  max-width: 980px;
}

.sector-process__steps {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 980px;
  margin-inline: auto;
  gap: 1rem;
}

.sector-process__steps article {
  min-height: 118px;
  padding: 1rem 1.1rem;
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.sector-process__steps span {
  line-height: 1.7;
}

.sector-overview--construction {
  padding-block: clamp(2.8rem, 5vw, 4.5rem) clamp(2.6rem, 4.4vw, 3.8rem);
}

.sector-overview--construction .sector-overview__layout {
  align-items: start;
  grid-template-columns: 1fr;
  gap: clamp(1.7rem, 3vw, 2.6rem);
}

.sector-overview--construction .sector-overview__layout > div:first-child {
  justify-self: center;
  max-width: 900px;
  text-align: center;
  direction: rtl;
}

.sector-overview--construction .sector-overview__layout > div:first-child h2 {
  margin-bottom: 0.65rem;
  line-height: 1.4;
  text-align: center !important;
}

.sector-overview--construction .sector-overview__layout > div:first-child p:not(.eyebrow) {
  max-width: 72ch;
  font-size: 1.05rem;
  line-height: 2.05;
  margin-inline: auto;
  text-align: center !important;
}

.sector-overview--construction .sector-overview__layout > div:first-child .eyebrow {
  margin-inline: auto;
  text-align: center !important;
}

.sector-overview--construction .sector-overview__single-line {
  max-width: 100% !important;
  margin-bottom: 1rem;
}

.sector-overview--construction .sector-overview__points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.4vw, 1.15rem);
  width: min(100%, 1260px);
  margin-inline: auto;
  transform: none;
}

.sector-overview--construction .sector-overview__points article {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: right;
  padding: clamp(1.05rem, 1.5vw, 1.3rem);
}

.sector-overview--construction .sector-overview__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  color: var(--brand);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.18);
}

.sector-overview--construction .sector-overview__icon svg {
  width: 18px;
  height: 18px;
}

.sector-overview--construction .sector-overview__points h3,
.sector-overview--construction .sector-overview__points article > span:not(.sector-overview__icon) {
  width: 100%;
}

.sector-overview--construction .sector-overview__points h3 {
  margin-bottom: 0.5rem;
  line-height: 1.35;
  font-weight: 800;
}

.sector-overview--construction .sector-overview__points article > span:not(.sector-overview__icon) {
  line-height: 1.8;
}

.sector-overview--construction .brand-highlight {
  color: var(--brand);
  font-weight: 700;
}

.sector-overview--construction .sector-overview__points article {
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.sector-overview--construction .sector-overview__points article:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 230, 0.95));
  border-color: rgba(197, 160, 89, 0.38);
  box-shadow: 0 16px 28px rgba(10, 33, 55, 0.14);
}

.sector-page--construction .sector-gallery .section-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.sector-page--construction .sector-gallery .section-heading .eyebrow {
  margin-inline: auto;
}

.sector-page--construction .sector-gallery .section-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
  line-height: 1.2;
  text-align: center;
}

.sector-page--construction .sector-gallery__grid {
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1180px;
  margin-inline: auto;
}

.sector-page--construction .sector-gallery__grid figure {
  display: grid;
  grid-template-rows: 220px minmax(68px, auto);
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 33, 55, 0.08);
}

.sector-page--construction .sector-gallery__grid img {
  height: 220px;
}

.sector-page--construction .sector-gallery__grid figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0.85rem 1rem 0.95rem;
  text-align: center;
  direction: rtl;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.65;
}

.sector-gallery__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-gallery__grid figure,
.sector-project-card {
  overflow: hidden;
  border-radius: 28px;
}

.sector-gallery__grid figure {
  position: relative;
}

.sector-gallery__grid img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  animation: sectorGalleryKenBurns 9s ease-in-out infinite alternate;
  transition: transform 420ms ease, filter 320ms ease;
  will-change: transform;
}

.sector-gallery__grid figure:nth-child(2) img {
  animation-delay: -4.6s;
}

.sector-gallery__grid figure:nth-child(3) img {
  animation-delay: -9.2s;
}

.sector-gallery__grid figure:hover img {
  animation-play-state: paused;
  transform: scale(1.12);
  filter: saturate(1.06);
}

.sector-gallery__grid figcaption {
  padding: 0.9rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-muted);
  text-align: center;
  direction: rtl;
}

.sector-page .sector-gallery .section-heading {
  text-align: center;
  margin-inline: auto;
}

.sector-page .sector-gallery .section-heading .eyebrow,
.sector-page .sector-gallery .section-heading h2 {
  margin-inline: auto;
}

@keyframes sectorGalleryKenBurns {
  0% {
    transform: scale(1.03) translate3d(-2.2%, -1.2%, 0);
  }
  100% {
    transform: scale(1.14) translate3d(2.3%, 1.4%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sector-gallery__grid img {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

.sector-projects__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-project-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
}

/* Sector inner pages: keep gallery and project imagery compact. */
.sector-page .sector-gallery__grid img,
.sector-page .sector-project-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 220px;
  object-fit: cover;
  transform: none !important;
  animation: none !important;
}

.sector-page .sector-project-card > img {
  height: 240px;
}

.sector-page .sector-project-card__body {
  min-height: 310px;
}

.sector-page--construction .sector-project-card__body {
  min-height: 180px;
}

@media (max-width: 760px) {
  .sector-page .sector-gallery__grid img,
  .sector-page .sector-project-card > img {
    height: 210px;
  }

  .sector-page--construction .sector-project-card__body {
    min-height: 0;
  }
}

/* Unified training-project framing (Riyadh/Khobar/Madinah/Jeddah) */
.sector-page .project-image--training {
  object-position: center 38%;
}

/* Remove thin border artifact from Khobar image edges */
.sector-page .project-image--khobar-clean {
  -webkit-clip-path: inset(5px 5px 5px 5px);
  clip-path: inset(5px 5px 5px 5px);
  transform: scale(1.03) !important;
  transform-origin: center center;
}

/* Remove thin border artifact from Madinah image edges */
.sector-page .project-image--madinah-clean {
  -webkit-clip-path: inset(6px 6px 6px 6px);
  clip-path: inset(6px 6px 6px 6px);
  transform: scale(1.04) !important;
  transform-origin: center center;
}

.sector-project-card__body {
  padding: 1.2rem;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0.55rem;
  min-height: 360px;
}

.sector-project-card__body h3 {
  margin: 0;
  line-height: 1.35;
  min-height: 2.7em;
}

.sector-project-card__body > p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sector-project-card ul {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: var(--text-muted);
  min-height: 92px;
}

.sector-project-card ul li {
  line-height: 1.55;
}

.sector-process__steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-process__steps strong {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--gold-deep);
  font-weight: 800;
}

.sector-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Tighten bottom transition between process and link sections */
.sector-page .section.sector-process {
  padding-bottom: clamp(1.1rem, 2.1vh, 1.6rem);
}

.sector-page .section.sector-links {
  padding-top: clamp(0.6rem, 1.4vh, 1rem);
  padding-bottom: clamp(1.8rem, 2.8vh, 2.4rem);
}

/* Construction sector: keep images natural without heavy zoom */
.sector-page .luxury-pan-image,
.sector-page .luxury-pan-image--alt {
  animation: none !important;
  transform: none !important;
}

.sector-page .hover-zoom,
.sector-page .hover-lift:hover .hover-zoom,
.sector-page .hover-lift:hover.hover-zoom {
  transform: none !important;
}

.sector-page .sector-project-card:hover img,
.sector-page .sector-project-card.is-active img {
  transform: none !important;
}

.sector-links a {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sector-links a:hover {
  transform: translateY(-5px);
}

.sector-links strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
}

.sector-links span {
  color: var(--text-muted);
}

.sector-hero--construction .sector-hero__veil {
  background:
    linear-gradient(115deg, rgba(8, 25, 42, 0.9) 12%, rgba(18, 55, 86, 0.56) 52%, rgba(18, 55, 86, 0.18) 100%),
    linear-gradient(180deg, rgba(212, 156, 46, 0.18), transparent 38%);
}

.sector-hero--infrastructure .sector-hero__veil {
  background:
    linear-gradient(115deg, rgba(8, 25, 42, 0.9) 12%, rgba(16, 73, 91, 0.56) 52%, rgba(16, 73, 91, 0.18) 100%),
    linear-gradient(180deg, rgba(99, 178, 191, 0.16), transparent 38%);
}

.sector-hero--maintenance .sector-hero__veil {
  background:
    linear-gradient(115deg, rgba(8, 25, 42, 0.9) 12%, rgba(42, 86, 70, 0.56) 52%, rgba(42, 86, 70, 0.18) 100%),
    linear-gradient(180deg, rgba(150, 190, 122, 0.15), transparent 38%);
}

.sector-hero--steel .sector-hero__veil {
  background:
    linear-gradient(115deg, rgba(8, 25, 42, 0.92) 12%, rgba(63, 74, 88, 0.58) 52%, rgba(63, 74, 88, 0.18) 100%),
    linear-gradient(180deg, rgba(168, 143, 108, 0.18), transparent 38%);
}

@media (max-width: 1180px) {
  .sector-overview--construction .sector-overview__layout {
    grid-template-columns: 1fr;
  }

  .sector-overview--construction .sector-overview__layout > div:first-child {
    justify-self: stretch;
    max-width: none;
  }

  .sector-overview--construction .sector-overview__single-line {
    white-space: normal;
  }

  .sector-overview--construction .sector-overview__points {
    transform: none;
  }

  .sector-hero__inner,
  .sector-overview__layout,
  .sector-process__layout {
    grid-template-columns: 1fr;
  }

  .sector-gallery__grid,
  .sector-projects__grid,
  .sector-links,
  .sector-overview__points,
  .sector-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sector-overview--construction .sector-overview__single-line {
    white-space: normal;
  }

  .sector-page--construction .sector-gallery .section-heading h2 {
    max-width: 100%;
  }

  .sector-page--construction .sector-gallery__grid figure {
    grid-template-rows: 210px minmax(64px, auto);
  }

  .sector-hero {
    min-height: auto;
  }

  .sector-hero__inner {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .sector-gallery__grid,
  .sector-projects__grid,
  .sector-links,
  .sector-overview__points,
  .sector-process__steps {
    grid-template-columns: 1fr;
  }

  .sector-hero__panel {
    grid-template-columns: 1fr;
  }
}

.estate-project-return {
  padding-top: 0;
}

.estate-project-return__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 233, 0.98));
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 18px 34px rgba(10, 31, 51, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.48) inset;
}

.estate-project-return__inner h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.estate-project-return__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 760px) {
  .estate-project-return__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .estate-project-return__actions {
    width: 100%;
  }
}
/* ===== HERO FULL IMAGE FIX ===== */

.estate-studio-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* الصورة خلفية كاملة */
.estate-studio-hero__media {
    width: 60%;
    position: relative;
}

.estate-studio-hero__content {
    width: 40%;
    z-index: 2;
}
.estate-studio-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
/* طبقة التغميق */
.estate-studio-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(28, 24, 20, 0.62) 0%,
    rgba(28, 24, 20, 0.42) 40%,
    rgba(28, 24, 20, 0.12) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* المحتوى */
.estate-studio-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* النص */
.estate-studio-hero__copy {
  max-width: 560px;
  text-align: right;
  margin-right: auto;
  margin-left: 0;
}

/* العنوان */
.estate-studio-hero__copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #fff;
  line-height: 1.12;
}

/* النص */
.estate-studio-hero__copy p {
  color: rgba(255,255,255,0.85);
}

.estate-project-detail-page .estate-studio-hero__media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 60%;
  height: 100%;
}

.estate-project-detail-page .estate-studio-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.estate-project-detail-page .estate-studio-hero__veil {
  background: linear-gradient(
    to left,
    rgba(10, 31, 51, 0.94) 0%,
    rgba(10, 31, 51, 0.86) 34%,
    rgba(10, 31, 51, 0.56) 54%,
    rgba(10, 31, 51, 0.12) 70%,
    transparent 82%
  ) !important;
  pointer-events: none;
}

.estate-project-detail-page .estate-studio-hero__inner {
  width: min(40%, 520px);
  margin-right: clamp(1rem, 4vw, 3rem);
  margin-left: auto;
  padding-block: clamp(2rem, 6vh, 4rem);
  display: grid;
  gap: 1.25rem;
  align-content: center;
}

.estate-project-detail-page .estate-studio-hero__copy {
  width: 100%;
  max-width: none;
  margin: 0;
}

.estate-project-detail-page .estate-studio-hero__copy p:not(.eyebrow),
.estate-project-detail-page .estate-studio-hero__copy p {
  max-width: none;
}

.estate-project-detail-page .estate-hero-aside {
  width: 100%;
  justify-content: flex-start;
}

.estate-project-detail-page .estate-hero-aside__card {
  width: 100%;
}

@media (max-width: 1100px) {
  .estate-project-detail-page .estate-studio-hero__media {
    width: 56%;
  }

  .estate-project-detail-page .estate-studio-hero__inner {
    width: min(44%, 500px);
  }
}

@media (max-width: 900px) {
  .estate-project-detail-page .estate-studio-hero {
    min-height: 680px;
    height: auto;
  }

  .estate-project-detail-page .estate-studio-hero__media {
    inset: 0;
    width: 100%;
  }

  .estate-project-detail-page .estate-studio-hero__veil {
    background: linear-gradient(
      180deg,
      rgba(10, 31, 51, 0.42) 0%,
      rgba(10, 31, 51, 0.68) 38%,
      rgba(10, 31, 51, 0.9) 100%
    ) !important;
  }

  .estate-project-detail-page .estate-studio-hero__inner {
    width: min(100%, 620px);
    margin-inline: auto;
    padding: 7rem 0 2rem;
  }
}

@media (max-width: 640px) {
  .estate-project-detail-page .estate-studio-hero {
    min-height: 620px;
  }

  .estate-project-detail-page .estate-studio-hero__inner {
    width: min(100%, calc(100% - 1.5rem));
    padding-top: 6.5rem;
  }
}

.estate-studio-hero__title {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.estate-studio-hero--home .estate-studio-hero__title,
.estate-studio-hero--home .estate-studio-hero__copy h1 {
  font-size: clamp(1.8rem, 2.75vw, 2.55rem);
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.estate-studio-hero--home .estate-studio-hero__copy p:not(.eyebrow),
.estate-studio-hero--home .estate-studio-hero__copy p {
  max-width: 47ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.95;
  margin: 0;
}

.site-header.site-header--home {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease,
    transform 0.28s ease;
}

.site-header--home .nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  min-height: 132px;
  padding-block: 0.5rem 0.62rem;
}

.site-header--home .brand {
  position: absolute;
  top: 0.55rem;
  right: 0;
  min-height: 0;
  padding: 0.2rem 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: top 0.28s ease, transform 0.28s ease;
}

.site-header--home .brand-home-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
}

.site-header--home .brand-full--home {
  width: clamp(96px, 7.2vw, 104px);
  height: auto;
  display: block;
  opacity: 0.78;
  filter: drop-shadow(0 7px 16px rgba(5, 18, 30, 0.06));
}

.site-header--home .site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.7rem, 2vw, 2.55rem);
  padding-inline: 0.75rem;
  padding-top: 0.2rem;
  border: 1px solid rgba(255, 245, 223, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(8, 21, 34, 0.42), rgba(8, 21, 34, 0.2)),
    radial-gradient(circle at 50% 0%, rgba(255, 245, 214, 0.08), rgba(255, 245, 214, 0));
  box-shadow:
    0 12px 24px rgba(5, 16, 27, 0.2),
    inset 0 1px 0 rgba(255, 247, 229, 0.14);
  transition: padding 0.28s ease, gap 0.28s ease;
}

.site-header--home .site-nav a {
  padding: 0.46rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.01em;
  font-size: 1.01rem;
  font-weight: 700;
  text-shadow: 0 8px 18px rgba(6, 18, 30, 0.24);
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header--home .site-nav a::after {
  bottom: -0.05rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(220, 191, 118, 0.9), transparent);
}

.site-header--home .site-nav a:hover,
.site-header--home .site-nav a.active {
  color: #e7cb85;
  border-color: rgba(224, 190, 116, 0.58);
  background:
    linear-gradient(180deg, rgba(224, 190, 116, 0.2), rgba(224, 190, 116, 0.06)),
    linear-gradient(90deg, rgba(255, 236, 186, 0.1), rgba(255, 236, 186, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 219, 0.42),
    0 0 0 1px rgba(224, 190, 116, 0.16),
    0 8px 16px rgba(170, 121, 53, 0.18);
}

.site-header--home .site-nav a:hover {
  transform: translateY(-1px);
}

.site-header--home .nav-toggle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.site-header--home::before {
  content: "";
  position: absolute;
  inset: 0 0 -22px 0;
  background:
    linear-gradient(180deg, rgba(7, 23, 38, 0.22) 0%, rgba(7, 23, 38, 0.12) 46%, rgba(7, 23, 38, 0.04) 76%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 84% 12%, rgba(197, 160, 89, 0.08), transparent 18%);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.site-header--home::after {
  display: none;
}

.site-header.site-header--home.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(7, 23, 38, 0.82), rgba(7, 23, 38, 0.74));
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 24px rgba(7, 21, 34, 0.16),
    0 2px 8px rgba(7, 21, 34, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.site-header--home.is-scrolled::before {
  opacity: 0.26;
}

.site-header.site-header--home.is-scrolled::after {
  display: none;
}

.site-header.site-header--home.is-scrolled .nav-wrap {
  min-height: 76px;
  padding-block: 0.32rem;
}

.site-header.site-header--home.is-scrolled .brand {
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-header.site-header--home.is-scrolled .brand-full--home {
  width: 88px;
}

.site-header.site-header--home.is-scrolled .site-nav {
  padding-top: 0;
  padding-inline: 0.45rem;
  border-color: rgba(255, 242, 214, 0.18);
  background:
    linear-gradient(180deg, rgba(8, 21, 34, 0.34), rgba(8, 21, 34, 0.18)),
    radial-gradient(circle at 50% 0%, rgba(255, 245, 214, 0.08), rgba(255, 245, 214, 0));
  box-shadow:
    0 8px 18px rgba(5, 16, 27, 0.16),
    inset 0 1px 0 rgba(255, 247, 229, 0.09);
}

.about-page .site-header.site-header--home.is-scrolled {
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.54), rgba(20, 16, 12, 0.44));
  border-bottom-color: rgba(234, 205, 146, 0.2);
  box-shadow:
    0 8px 20px rgba(17, 12, 8, 0.18),
    0 1px 6px rgba(17, 12, 8, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-page .site-header.site-header--home.is-scrolled .site-nav {
  border-color: rgba(235, 205, 142, 0.24);
  background:
    linear-gradient(180deg, rgba(30, 22, 15, 0.3), rgba(30, 22, 15, 0.16)),
    radial-gradient(circle at 50% 0%, rgba(248, 221, 165, 0.1), rgba(248, 221, 165, 0));
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.estate-studio-hero--home {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #081a2b;
  overflow: hidden;
}

.estate-studio-hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-nanobanana.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(1.02) contrast(1.01) brightness(0.96);
  transform: scale(1.03);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.estate-studio-hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 26, 43, 0.22) 0%, rgba(8, 26, 43, 0.14) 22%, rgba(8, 26, 43, 0.06) 42%, rgba(8, 26, 43, 0.015) 62%, rgba(8, 26, 43, 0) 100%),
    linear-gradient(180deg, rgba(8, 26, 43, 0.035) 0%, rgba(8, 26, 43, 0.015) 34%, rgba(8, 26, 43, 0.06) 100%);
}

.estate-studio-hero--home .estate-studio-hero__veil {
  display: none;
}

.estate-studio-hero--home .estate-studio-hero__inner {
  direction: ltr;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  padding-block: clamp(8rem, 11vh, 9.6rem) clamp(2.2rem, 3.6vh, 3rem);
  padding-inline: clamp(1.4rem, 4vw, 3.8rem) clamp(8%, 11vw, 9rem);
}

.estate-studio-hero--home .estate-studio-hero__copy {
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: min(100%, 900px);
  max-width: 900px;
  margin-inline: auto;
  margin-top: auto;
  padding: 0;
  gap: 0.78rem;
  text-align: center;
}

.estate-studio-hero--home .estate-studio-hero__copy::after {
  content: "";
  position: absolute;
  inset: auto 50% -1.35rem;
  width: min(960px, 92vw);
  height: 22rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(9, 24, 39, 0.34), rgba(9, 24, 39, 0.14) 52%, transparent 78%);
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.estate-studio-hero--home .estate-studio-hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.82s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.estate-studio-hero--home.is-revealed::before {
  transform: scale(1.015);
}

.estate-studio-hero--home.is-revealed .estate-studio-hero__copy > * {
  opacity: 1;
  transform: translateY(0);
}

.estate-studio-hero--home.is-revealed .estate-studio-hero__copy > .eyebrow {
  transition-delay: 0.12s;
}

.estate-studio-hero--home.is-revealed .estate-studio-hero__copy > .estate-studio-hero__title {
  transition-delay: 0.28s;
}

.estate-studio-hero--home.is-revealed .estate-studio-hero__copy > p:not(.eyebrow) {
  transition-delay: 0.42s;
}

.estate-studio-hero--home.is-revealed .hero-subtext--home {
  transition-delay: 0.42s;
}

.estate-studio-hero--home.is-revealed .hero-actions--hero {
  transition-delay: 0.56s;
}

.estate-studio-hero--home .estate-studio-hero__copy::before {
  display: none;
}

.estate-studio-hero--home .eyebrow {
  display: inline-block;
  margin: 0;
  color: #ffffff;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 3.05rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 10px 22px rgba(6, 18, 30, 0.18);
}

.estate-studio-hero--home .estate-studio-hero__copy::after {
  content: none !important;
  background: none !important;
  box-shadow: none !important;
}

.estate-studio-hero--home .estate-studio-hero__title,
.estate-studio-hero--home .estate-studio-hero__copy h1 {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
  max-width: min(760px, 92vw);
  font-size: clamp(2rem, 2.55vw, 2.72rem);
  line-height: 1.22;
  letter-spacing: 0;
  margin-bottom: 0;
  text-shadow: 0 14px 28px rgba(5, 16, 27, 0.2);
  text-wrap: balance;
}

.estate-studio-hero--home .estate-studio-hero__title {
  display: grid;
  justify-items: center;
  gap: 0.44rem;
}

.estate-studio-hero--home .hero-title-line {
  display: block;
}

.estate-studio-hero--home .hero-title-line--brand {
  margin-bottom: 0.22rem;
  font-size: clamp(3.05rem, 4.25vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 16px 30px rgba(5, 16, 27, 0.24);
}

.estate-studio-hero--home .hero-title-line--tertiary {
  margin-top: 0.16rem;
  max-width: 34ch;
  font-size: clamp(1.18rem, 1.38vw, 1.46rem);
  font-weight: 600;
  line-height: 1.62;
  text-wrap: balance;
}

.estate-studio-hero--home .hero-subtext--home {
  display: inline-block;
  margin: 0.95rem 0 0;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  opacity: 0.95;
  white-space: nowrap;
  text-shadow: 0 10px 22px rgba(6, 18, 30, 0.48);
  margin-inline: auto;
}

.estate-studio-hero--home .hero-subtext--home .dot {
  color: #C8A96A;
  margin: 0 6px;
}

.estate-studio-hero--home .estate-studio-hero__copy p:not(.eyebrow):not(.hero-subtext) {
  max-width: 41ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.82;
  text-shadow: 0 8px 18px rgba(6, 18, 30, 0.18);
}

.hero-trust-points--hero {
  justify-content: center;
  gap: 0.7rem;
  margin: 0.48rem 0 0.68rem;
}

.hero-trust-points--hero span {
  padding: 0.72rem 1.05rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
  border-color: rgba(246, 229, 186, 0.24);
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.92rem;
  box-shadow:
    0 18px 30px rgba(4, 18, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.estate-studio-hero--home.is-revealed .hero-trust-points--hero span {
  opacity: 1;
  transform: translateY(0);
}

.estate-studio-hero--home.is-revealed .hero-trust-points--hero span:nth-child(1) {
  transition-delay: 2.28s;
}

.estate-studio-hero--home.is-revealed .hero-trust-points--hero span:nth-child(2) {
  transition-delay: 2.42s;
}

.estate-studio-hero--home.is-revealed .hero-trust-points--hero span:nth-child(3) {
  transition-delay: 2.56s;
}

.hero-actions--hero {
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  align-self: center;
}

.hero-actions--hero .button {
  min-height: 62px;
  min-width: 238px;
  padding: 1.02rem 2.1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
  opacity: 0;
  transform: translateY(18px);
  justify-content: center;
  margin-inline: auto;
}

.estate-studio-hero--home.is-revealed .hero-actions--hero .button {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.95s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.estate-studio-hero--home.is-revealed .hero-actions--hero .button:nth-child(1) {
  transition-delay: 0.56s;
}

.hero-actions--hero .button:hover {
  transform: translateY(-1px);
}

.hero-actions--hero .button-primary {
  background: linear-gradient(135deg, #f1dda1 0%, #d8b761 44%, #bb9038 100%);
  border: 1px solid rgba(255, 240, 199, 0.55);
  color: #0c2540;
  box-shadow:
    0 24px 42px rgba(117, 86, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -10px 18px rgba(138, 102, 39, 0.12);
}

.hero-actions--hero .button-primary:hover {
  background: linear-gradient(135deg, #f5e4ae 0%, #ddbf69 44%, #c2943c 100%);
  box-shadow:
    0 28px 46px rgba(117, 86, 28, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -10px 18px rgba(138, 102, 39, 0.14);
}

@media (max-width: 900px) {
  .site-header--home .brand-full--home {
    width: 96px;
  }

  .estate-studio-hero--home .estate-studio-hero__inner {
    padding-inline: 7%;
    min-height: auto;
    padding-block: 7.3rem 1.8rem;
  }

  .estate-studio-hero--home .estate-studio-hero__copy {
    max-width: 620px;
    width: 100%;
    margin-right: auto;
    margin-left: 0;
    padding: 0 0.8rem 0 0;
    transform: none;
  }

  .estate-studio-hero--home .estate-studio-hero__copy::before {
    display: none;
  }

  .estate-studio-hero--home .estate-studio-hero__title,
  .estate-studio-hero--home .estate-studio-hero__copy h1 {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    max-width: 620px;
    font-size: clamp(1.78rem, 3.45vw, 2.32rem);
    line-height: 1.26;
    letter-spacing: 0;
  }

  .estate-studio-hero--home .estate-studio-hero__copy p:not(.eyebrow),
  .estate-studio-hero--home .estate-studio-hero__copy p {
    max-width: 38ch;
    font-size: 1rem;
  }

  .hero-actions--hero .button {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .estate-studio-hero--home {
    min-height: 100svh;
  }

  .site-header--home {
    position: absolute;
    inset: 0 0 auto 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
  }

  .site-header--home .nav-wrap {
    position: relative;
    display: flex;
    min-height: 72px;
    gap: 0.75rem;
    justify-content: space-between;
    padding-block: 0.4rem;
  }

  .site-header--home .brand {
    position: static;
    min-height: 48px;
    padding: 0.26rem 0.38rem 0.28rem;
    border-radius: 22px;
  }

  .site-header--home .brand-home-lockup {
    gap: 0;
  }

  .site-header--home .brand-full--home {
    width: 92px;
    opacity: 0.84;
  }

  .site-header--home .nav-toggle {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin-inline-start: auto;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(8, 21, 34, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .site-header--home .site-nav {
    display: none;
    position: fixed;
    top: calc(100% + 0.45rem);
    right: 0.75rem;
    left: 0.75rem;
    max-height: calc(100svh - var(--header-height) - 1.25rem);
    overflow-y: auto;
    gap: 0.2rem;
    padding: 0.8rem;
    padding-top: 0.8rem;
    background: rgba(10, 26, 41, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(5, 18, 30, 0.14);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1001;
  }

  .site-header--home .site-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header--home .site-nav a {
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
  }

  .site-header--home .site-nav a::after {
    display: none;
  }

  .site-header--home .site-nav a:hover,
  .site-header--home .site-nav a.active {
    background: rgba(255, 255, 255, 0.06);
    color: #ecd493;
    transform: none;
  }

  .site-header.site-header--home.is-scrolled .nav-wrap {
    min-height: 72px;
    padding-block: 0.4rem;
  }

  .site-header.site-header--home.is-scrolled .brand {
    transform: none;
    padding: 0.26rem 0.38rem 0.28rem;
  }

  .site-header.site-header--home.is-scrolled .brand-full--home {
    width: 88px;
  }

  .estate-studio-hero--home::before {
    width: 100%;
    background-position: 81% 62%;
    background-size: cover;
    opacity: 0.96;
  }

  .estate-studio-hero--home::after {
    background:
      linear-gradient(180deg, rgba(7, 23, 38, 0.24) 0%, rgba(7, 23, 38, 0.5) 42%, rgba(7, 23, 38, 0.86) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  }

  .estate-studio-hero--home .estate-studio-hero__inner {
    width: min(100%, calc(100% - 1.1rem));
    min-height: 100svh;
    padding-inline: 0;
    padding-block: 7rem 2.2rem;
    justify-content: center;
    align-items: flex-end;
  }

  .estate-studio-hero--home .estate-studio-hero__copy {
    width: calc(100% - 1rem);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    margin-top: auto;
    padding: 0.95rem 1rem 1.05rem;
    gap: 0.48rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
    align-items: center;
    text-align: center;
  }

  .estate-studio-hero--home .estate-studio-hero__copy::before {
    display: none;
  }

  .estate-studio-hero--home .estate-studio-hero__copy::after {
    content: "";
    position: absolute;
    inset: -0.3rem -0.25rem -0.2rem;
    z-index: -1;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(8, 21, 34, 0.06), rgba(8, 21, 34, 0.24) 42%, rgba(8, 21, 34, 0.42) 100%),
      radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 62%);
    box-shadow: 0 14px 34px rgba(6, 18, 30, 0.12);
    pointer-events: none;
  }

  .estate-studio-hero--home .eyebrow {
    margin-bottom: 0.22rem;
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .estate-studio-hero--home .estate-studio-hero__title,
  .estate-studio-hero--home .estate-studio-hero__copy h1 {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    max-width: none;
    font-size: clamp(1.28rem, 4.65vw, 1.58rem);
    line-height: 1.28;
    letter-spacing: 0;
    margin-bottom: 0;
    text-shadow: 0 10px 22px rgba(6, 18, 30, 0.52);
  }

  .estate-studio-hero--home .estate-studio-hero__title {
    gap: 0.32rem;
  }

  .estate-studio-hero--home .hero-title-line--brand {
    font-size: clamp(2.45rem, 10.4vw, 3.35rem);
    line-height: 1.04;
  }

  .estate-studio-hero--home .hero-title-line--tertiary {
    max-width: 30ch;
    font-size: clamp(1rem, 3.85vw, 1.16rem);
    line-height: 1.58;
  }

  .estate-studio-hero--home .hero-subtext--home {
    margin-top: 0.7rem;
    width: auto;
    max-width: 32ch;
    font-size: 0.78rem;
    line-height: 1.85;
    white-space: normal;
  }

  .estate-studio-hero--home .estate-studio-hero__copy p:not(.eyebrow):not(.hero-subtext) {
    max-width: none;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.58;
    text-shadow: 0 8px 18px rgba(6, 18, 30, 0.46);
  }

  .hero-trust-points--hero {
    justify-content: center;
    gap: 0.45rem;
    margin: 0.18rem 0 0.26rem;
  }

  .hero-trust-points--hero span {
    padding: 0.44rem 0.7rem;
    font-size: 0.72rem;
    line-height: 1.18;
    justify-content: center;
  }

  .hero-actions--hero {
    flex-direction: column;
    align-items: center;
    gap: 0.52rem;
    margin-top: 0.2rem;
  }

  .hero-actions--hero .button {
    width: min(100%, 300px);
    max-width: 100%;
    min-height: 45px;
    padding: 0.82rem 1rem;
    font-size: 0.92rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .estate-studio-hero--home::before {
    transform: none;
    transition: none;
  }

  .estate-studio-hero--home .estate-studio-hero__copy > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-trust-points--hero span,
  .hero-actions--hero .button {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .hero-subtext {
    width: auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .estate-studio-hero--home {
    min-height: 100svh;
  }

  .site-header--home {
    position: absolute;
  }

  .site-header--home .nav-wrap {
    min-height: 60px;
  }

  .site-header--home .brand {
    position: static;
    padding: 0.24rem 0.3rem 0.26rem;
    border-radius: 18px;
  }

  .site-header--home .brand-home-lockup {
    gap: 0;
  }

  .site-header--home .brand-full--home {
    width: 92px;
  }

  .site-header.site-header--home.is-scrolled .nav-wrap {
    min-height: 60px;
  }

  .site-header.site-header--home.is-scrolled .brand-full--home {
    width: 88px;
  }

  .estate-studio-hero--home .estate-studio-hero__inner {
    width: min(100%, calc(100% - 0.7rem));
    min-height: calc(100svh - var(--header-height));
    padding-block: 6.2rem 1.95rem;
  }

  .estate-studio-hero--home .estate-studio-hero__copy {
    width: calc(100% - 0.7rem);
    max-width: none;
    margin-top: auto;
    padding: 0.82rem 0.8rem 0.88rem;
    gap: 0.4rem;
  }

  .estate-studio-hero--home .estate-studio-hero__copy::before {
    display: none;
  }

  .estate-studio-hero--home .estate-studio-hero__copy::after {
    inset: -0.45rem -0.35rem -0.4rem;
    border-radius: 24px;
  }

  .estate-studio-hero--home::before {
    background-position: 84% 66%;
  }

  .estate-studio-hero--home .estate-studio-hero__title,
  .estate-studio-hero--home .estate-studio-hero__copy h1 {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: clamp(1.38rem, 6vw, 1.64rem);
    line-height: 1.24;
  }

  .estate-studio-hero--home .estate-studio-hero__copy p:not(.eyebrow),
  .estate-studio-hero--home .estate-studio-hero__copy p {
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .hero-trust-points--hero span {
    flex: 1 1 calc(50% - 0.3rem);
    min-height: 0;
    padding: 0.3rem 0.46rem;
    font-size: 0.62rem;
    line-height: 1.1;
  }

  .hero-actions--hero .button {
    min-height: 40px;
    padding: 0.72rem 0.82rem;
    font-size: 0.82rem;
  }
}

/* ===== Homepage Stability Layer ===== */

body:has(.home-studio-page) {
  overflow-x: hidden;
}

.home-studio-page .section {
  position: relative;
  padding-block: clamp(3.8rem, 6vw, 5.6rem);
}

.home-company-panel {
  margin-top: clamp(-3.35rem, -4vw, -2.2rem);
  padding-top: 0;
  padding-bottom: clamp(1.15rem, 1.8vw, 1.7rem);
}

.home-company-panel__card {
  grid-template-columns: minmax(360px, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  padding: clamp(1.6rem, 2.8vw, 2.35rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 14%, rgba(207, 173, 85, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 237, 0.96));
  border-color: rgba(184, 145, 65, 0.22);
  box-shadow:
    0 30px 70px rgba(9, 30, 50, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.home-company-panel__copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1.05rem;
  padding: clamp(0.7rem, 1.4vw, 1.2rem) clamp(0.2rem, 1vw, 0.85rem);
  border-inline-end: 1px solid rgba(16, 42, 67, 0.1);
}

.home-company-panel__copy::before {
  content: none;
  position: absolute;
  inset-block: 8% auto;
  inset-inline-start: 0.2rem;
  width: clamp(54px, 6vw, 82px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(207, 173, 85, 0.25), #c9a354);
}

.home-company-panel__copy p:not(.eyebrow) {
  margin: 0;
}

.home-company-panel__narrative {
  display: grid;
  gap: 0.9rem;
  max-width: 62ch;
}

.home-company-panel__narrative p:not(.eyebrow) {
  max-width: none;
  color: #485d70;
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  font-weight: 600;
  line-height: 1.88;
}

.home-company-panel__narrative .home-company-panel__lead {
  position: relative;
  margin-bottom: 0.15rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(13, 45, 70, 0.98), rgba(20, 62, 91, 0.96));
  color: #ffffff !important;
  font-size: clamp(1.02rem, 1.14vw, 1.13rem);
  font-weight: 700;
  line-height: 1.9;
  box-shadow: 0 16px 30px rgba(8, 29, 47, 0.14);
}

.home-company-panel__copy .home-company-panel__narrative .home-company-panel__lead {
  color: #ffffff !important;
}

.home-company-panel__narrative .home-company-panel__lead .home-company-panel__brand {
  color: #f0d485 !important;
}

.home-company-panel__copy .estate-project-card__meta {
  margin: 0 0 0.08rem;
}

.home-command-card__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  margin: 0.1rem 0 0;
}

.home-command-card__line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.32rem 0.76rem;
  border-radius: 999px;
  background: rgba(207, 173, 85, 0.1);
  border: 1px solid rgba(207, 173, 85, 0.18);
  color: #9f7931;
  font-size: 0.96rem;
  font-weight: 800;
}

.home-command-card__button {
  margin-top: 0.08rem;
  width: min(100%, 300px);
  justify-content: center;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(93, 146, 176, 0.24);
  background: linear-gradient(180deg, rgba(14, 35, 56, 0.98), rgba(9, 28, 46, 0.96));
  box-shadow:
    0 18px 32px rgba(5, 18, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-command-card__button:hover {
  background: linear-gradient(180deg, rgba(18, 43, 67, 0.99), rgba(11, 33, 53, 0.97));
  border-color: rgba(243, 214, 143, 0.34);
  color: #f3d68f;
}

.home-company-panel__stats {
  gap: 0.78rem;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  align-content: stretch;
  height: 100%;
}

.home-company-panel__stat {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 1.5vw, 1.25rem);
  border-radius: 22px;
  box-shadow:
    0 14px 30px rgba(10, 31, 51, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.home-company-panel__stat--wide {
  min-height: 0;
}

.home-service-deck,
.home-sector-stage,
.home-studio-intro,
.home-showcase-panel {
  margin-top: 0;
  padding-top: 0;
}

.home-service-deck::before,
.home-sector-stage::before,
.home-studio-intro::before,
.home-showcase-panel::before {
  display: none;
}

.home-service-deck__grid {
  align-items: stretch;
  gap: 0.9rem;
}

.home-service-deck .section-heading,
.home-sector-stage .section-heading {
  max-width: min(100%, 900px);
  margin-bottom: clamp(1.1rem, 2vw, 1.75rem);
}

.home-service-deck {
  padding-block: clamp(1.6rem, 2.4vw, 2.15rem) clamp(2.2rem, 3vw, 2.7rem);
}

.home-service-deck .section-heading {
  max-width: 100%;
}

.home-service-deck .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.34rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 234, 207, 0.92), rgba(238, 226, 196, 0.9));
  border: 1px solid rgba(207, 173, 85, 0.18);
  color: #9d7933;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow:
    0 10px 20px rgba(197, 160, 89, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.home-service-deck .section-heading h2 {
  width: 100%;
  max-width: none;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.3;
  white-space: nowrap;
}

.home-sector-stage .section-heading h2 {
  font-size: clamp(1.86rem, 2.95vw, 2.62rem);
  line-height: 1.22;
}

.home-service-card {
  min-height: 418px;
  border-radius: 24px;
}

.home-service-card__content {
  gap: 0.18rem;
  padding: 1.05rem 1rem 0.95rem;
}

.home-service-card__content span {
  margin-bottom: 0.35rem;
}

.home-service-card h3 {
  left: 1rem;
  right: 1rem;
  bottom: 1.3rem;
  max-width: none;
  text-wrap: balance;
  font-size: clamp(1.26rem, 1.5vw, 1.48rem);
  min-height: calc(1.22em * 2);
  line-height: 1.22;
  display: -webkit-box;
  align-content: end;
  text-align: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

.home-service-card__link:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 40px rgba(11, 34, 56, 0.12);
}

.home-sector-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(216, 181, 100, 0.06)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.05), transparent 28%);
}

.home-sector-card,
.home-studio-intro__cards article,
.home-showcase-panel__points article,
.home-showcase-frame__footer div {
  backdrop-filter: blur(4px);
}

.home-sector-card {
  min-height: 100%;
}

.home-studio-intro__layout,
.home-showcase-panel__layout {
  gap: clamp(1.4rem, 2.2vw, 2.2rem);
  align-items: start;
}

.home-studio-intro__layout > div:first-child,
.home-showcase-panel__copy {
  max-width: 660px;
}

.home-studio-intro__layout h2,
.home-showcase-panel__copy h2 {
  margin-bottom: 0.8rem;
}

.home-showcase-panel__copy h2,
.home-studio-intro__layout h2,
.home-service-deck .section-heading h2,
.home-sector-stage .section-heading h2 {
  text-wrap: balance;
}

.home-clients {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.4rem, 5vw, 5.1rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(207, 173, 85, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f1e9 100%);
}

.home-clients::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 173, 85, 0.55), transparent);
}

.home-clients__heading {
  width: min(100%, 1120px);
  margin: 0 auto clamp(2rem, 3.4vw, 3rem);
  text-align: center;
}

.home-clients__heading .eyebrow {
  display: inline-flex;
  margin: 0 0 0.8rem;
  color: #9d7933;
}

.home-clients__heading h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  line-height: 1.18;
}

.home-clients__heading > p:last-child {
  margin: 0.9rem auto 0;
  color: #526577;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.9;
  white-space: nowrap;
}

.home-clients__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.home-client-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(108px, 1fr) auto;
  min-height: 178px;
  margin: 0;
  padding: clamp(0.9rem, 1.5vw, 1.2rem);
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 32px rgba(9, 30, 50, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-client-card::before {
  content: "";
  position: absolute;
  inset: 0 18% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(207, 173, 85, 0.8), transparent);
}

.home-client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 173, 85, 0.3);
  box-shadow: 0 20px 40px rgba(9, 30, 50, 0.11);
}

.home-client-card__logo {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 0.15rem;
}

.home-client-card__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(94%, 290px);
  max-height: 116px;
  object-fit: contain;
}

.home-client-card--compact-logo .home-client-card__logo img {
  max-width: 150px;
  max-height: 126px;
}

.home-client-card--round-logo .home-client-card__logo img {
  max-width: 155px;
  max-height: 124px;
}

.home-client-card--wide-logo .home-client-card__logo img {
  max-width: min(98%, 310px);
  max-height: 112px;
}

.home-client-card--banner-logo .home-client-card__logo img {
  max-width: min(100%, 340px);
  max-height: 96px;
}

.home-client-card--tall-logo .home-client-card__logo img {
  max-width: min(88%, 235px);
  max-height: 128px;
}

.home-client-card figcaption {
  min-height: 36px;
  padding-top: 0.68rem;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
  color: #617181;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 900px) {
  .home-clients__heading > p:last-child {
    white-space: normal;
  }

  .home-clients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-clients {
    padding-block: 3.2rem;
  }

  .home-clients__grid {
    grid-template-columns: 1fr;
  }

  .home-client-card {
    min-height: 170px;
  }
}

.home-showcase-panel__points {
  margin-bottom: 1.2rem;
}

.home-showcase-frame {
  width: min(100%, 540px);
}

.home-showcase-frame img {
  aspect-ratio: 4 / 3.2;
}

.home-value-map {
  min-height: 332px;
}

.home-value-map__orb--core {
  width: min(100%, 204px);
  min-height: 146px;
}


.section-dark .cta-block {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(1.1rem, 2vw, 1.8rem);
  width: min(100%, 1120px);
  min-height: 180px;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  position: relative;
  z-index: 1;
}

.section-dark .cta-block__content {
  position: relative;
  gap: 0.7rem;
  align-content: center;
  padding-inline-start: 1rem;
}

.section-dark .cta-block__content::before {
  content: "";
  width: 64px;
  height: 3px;
  margin-bottom: 0.12rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e7c873, rgba(231, 200, 115, 0.18));
}

.section-dark .cta-block__content h2 {
  margin-bottom: 0;
  max-width: none;
  font-size: clamp(1.75rem, 2.2vw, 2.2rem);
  text-wrap: balance;
}

.home-studio-page .section-dark {
  padding-block: 1.1rem;
}

.home-cta-stage .cta-block__actions {
  align-self: center;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-cta-stage .cta-block__actions .cta-actions {
  grid-template-columns: repeat(2, minmax(145px, 1fr));
  gap: 0.75rem;
}

.home-cta-stage .cta-block__actions .button {
  min-height: 48px;
  border-radius: 14px;
}

.home-studio-page + .site-footer {
  margin-top: 0;
  padding: 1.45rem 0 1.35rem;
  border-top-color: rgba(201, 167, 78, 0.14);
}

.home-studio-page + .site-footer .footer-grid {
  grid-template-columns: minmax(220px, 1.15fr) repeat(4, minmax(128px, 1fr));
  gap: 1.65rem;
  align-items: start;
  padding-top: 0;
}

.home-studio-page + .site-footer .footer-logo {
  width: min(88px, 100%);
  margin-bottom: 0.75rem;
}

.home-studio-page + .site-footer .footer-column--brand p {
  max-width: 26rem;
  margin-bottom: 0;
  line-height: 1.72;
  font-size: 0.88rem;
}

.home-studio-page + .site-footer .footer-column h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.home-studio-page + .site-footer .footer-grid a {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-studio-page + .site-footer .footer-contact-link {
  color: #f0d596;
  font-weight: 800;
  direction: ltr;
}

.home-studio-page + .site-footer .footer-bottom {
  margin-top: 0.5rem;
  padding: 0.45rem 0 0.65rem;
  min-height: 0;
  display: block;
  position: relative;
  z-index: 2;
}

.home-studio-page + .site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 500;
}

/* ===== Homepage Final Polish ===== */

.home-studio-page .estate-studio-hero--home {
  margin-bottom: clamp(0.8rem, 1.6vw, 1.35rem);
}

.home-studio-page .estate-studio-hero--home .estate-studio-hero__copy {
  row-gap: 0.62rem;
}

.home-studio-page .estate-studio-hero--home .hero-actions--hero .button {
  box-shadow: 0 14px 28px rgba(8, 26, 42, 0.2);
}

.home-studio-page .section-heading {
  margin-bottom: clamp(1.2rem, 2.1vw, 1.9rem);
}

.home-company-panel__card,
.home-sector-card,
.home-showcase-panel__points article {
  box-shadow: 0 16px 34px rgba(9, 30, 50, 0.08);
}

.home-service-card__link:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 24px 42px rgba(11, 34, 56, 0.14);
}

.home-showcase-panel__copy > p:not(.eyebrow) {
  line-height: 1.9;
}

.home-showcase-panel__points article {
  border-color: rgba(18, 49, 77, 0.1);
}

.home-cta-stage .cta-block {
  border-color: rgba(122, 157, 181, 0.16);
  box-shadow:
    0 28px 50px rgba(4, 17, 30, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-cta-stage .cta-block__actions {
  border-color: rgba(255, 255, 255, 0.1);
}

.home-studio-page + .site-footer .footer-column h3 {
  letter-spacing: 0.01em;
}

.home-studio-page + .site-footer a {
  transition: color 0.22s ease, transform 0.22s ease;
}

.home-studio-page + .site-footer a:hover {
  transform: translateX(-2px);
}

.home-cta-stage .cta-block__actions .cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(145px, 1fr));
  width: 100%;
}

@media (max-width: 1180px) {
  .home-service-card {
    min-height: 440px;
  }

  .home-showcase-panel__summary {
    gap: 0.55rem;
  }

  .home-showcase-panel__copy,
  .home-studio-intro__layout > div:first-child {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .home-company-panel {
    margin-top: -0.9rem;
  }

  .home-service-deck .section-heading h2 {
    white-space: normal;
  }

  .home-company-panel__card {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .home-company-panel__copy {
    padding: 0.8rem 0.2rem 1.4rem;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(16, 42, 67, 0.1);
  }

  .home-company-panel__copy h2 {
    max-width: none;
  }

  .home-company-panel__stat {
    min-height: 120px;
  }

  .home-company-panel__stats {
    justify-self: stretch;
    width: 100%;
    height: auto;
    grid-template-rows: none;
  }

  .section-dark .cta-block {
    grid-template-columns: 1fr;
  }

  .home-cta-stage .cta-block__actions .cta-actions {
    grid-template-columns: 1fr;
  }

  .home-studio-page + .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

@media (max-width: 760px) {
  .home-studio-page .section {
    padding-block: 3rem;
  }

  .home-studio-page .estate-studio-hero--home {
    margin-bottom: 0.6rem;
  }

  .home-company-panel {
    margin-top: -0.65rem;
    padding-bottom: 1.2rem;
  }

  .home-company-panel__card {
    border-radius: 26px;
    padding: 1rem;
  }

  .home-company-panel__copy {
    gap: 0.7rem;
  }

  .home-cta-stage .cta-block {
    padding: 1.6rem 1.1rem;
  }

  .home-company-panel__stat {
    min-height: auto;
  }

  .home-service-card {
    min-height: 360px;
  }

  .home-service-card h3,
  .home-service-card p {
    max-width: none;
  }

  .home-sector-card,
  .home-studio-intro__cards article,
  .home-showcase-panel__points article,
  .home-showcase-frame__footer div {
    backdrop-filter: none;
  }

  .home-showcase-frame {
    width: 100%;
  }

  .home-value-map {
    min-height: 360px;
    padding: 0.95rem;
  }

  .home-showcase-panel__summary span {
    min-height: 34px;
    padding-inline: 0.78rem;
    font-size: 0.84rem;
  }

  .home-showcase-panel__points article {
    padding: 1rem 1rem 0.95rem;
  }

  .home-value-map__orb--core {
    width: min(100%, 180px);
    min-height: 132px;
  }

  .home-value-map__orb--core strong {
    font-size: 1.18rem;
  }

  .home-value-map__orb--top,
  .home-value-map__orb--top-right,
  .home-value-map__orb--side,
  .home-value-map__orb--bottom-right,
  .home-value-map__orb--bottom,
  .home-value-map__orb--left,
  .home-value-map__orb--top-left,
  .home-value-map__orb--bottom-left {
    width: 120px;
    min-height: 88px;
    padding: 0.66rem 0.6rem 0.68rem;
  }

  .home-value-map__icon {
    width: 1.95rem;
    height: 1.95rem;
  }

  .home-value-map__orb--top {
    top: 0.95rem;
  }

  .home-value-map__orb--top-right {
    top: 2.75rem;
    right: 0.7rem;
  }

  .home-value-map__orb--side {
    right: 0.55rem;
  }

  .home-value-map__orb--bottom-right {
    bottom: 2.75rem;
    right: 0.7rem;
  }

  .home-value-map__orb--bottom {
    bottom: 0.95rem;
  }

  .home-value-map__orb--left {
    left: 0.95rem;
  }

  .home-value-map__orb--top-left {
    top: 3.2rem;
    left: 0.95rem;
  }

  .home-value-map__orb--bottom-left {
    bottom: 3.2rem;
    left: 0.95rem;
  }

  .home-value-map__link--top,
  .home-value-map__link--bottom {
    height: 58px;
  }

  .home-value-map__link--top {
    top: 7rem;
  }

  .home-value-map__link--bottom {
    bottom: 7rem;
  }

  .home-value-map__link--side,
  .home-value-map__link--left {
    width: 84px;
  }

  .home-value-map__link--top-right,
  .home-value-map__link--bottom-right,
  .home-value-map__link--top-left,
  .home-value-map__link--bottom-left {
    width: 80px;
  }

  .home-studio-page .section-dark {
    padding-bottom: 1rem;
  }

  .home-studio-page + .site-footer {
    margin-top: 0;
    padding-top: 1.25rem;
  }
}

@media (max-width: 480px) {
  .home-company-panel__card {
    padding: 0.85rem;
  }

  .home-service-card {
    min-height: 332px;
  }

  .home-showcase-frame__overlay,
  .home-showcase-panel__points article {
    padding: 0.9rem;
  }

  .home-showcase-panel__summary {
    gap: 0.45rem;
  }

  .home-showcase-panel__summary span {
    width: 100%;
    justify-content: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  .home-service-deck.is-pending .home-service-card,
  .home-service-deck.is-revealed .home-service-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-value-map.is-pending .home-value-map__orb,
  .home-value-map.is-pending .home-value-map__link,
  .home-value-map.is-revealed .home-value-map__orb,
  .home-value-map.is-revealed .home-value-map__link {
    opacity: 1;
    transform: var(--base-transform);
    transition: none;
  }
}

/* Global design overrides for a unified corporate palette and spacing */
.site-header {
  background: rgba(0, 35, 71, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-nav a {
  color: rgba(255, 255, 255, 0.92);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-main);
}
.site-nav a:hover::after,
.site-nav a.active::after {
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
}
.site-footer {
  background:
    linear-gradient(180deg, rgba(6, 31, 55, 0.98), rgba(4, 24, 43, 1)),
    #072340;
  color: rgba(255, 255, 255, 0.92);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.96);
  transition: color 0.22s ease, transform 0.22s ease;
}
.site-footer a:hover {
  color: #f0d596;
  transform: translateX(-2px);
}
.site-footer h3 {
  color: #fff;
  letter-spacing: 0.01em;
}
.site-footer p,
.site-footer a {
  opacity: 1;
}

.footer-grid > div:first-child p,
.footer-grid > div:last-child p {
  color: rgba(255, 255, 255, 0.88);
}
.footer-column--brand {
  justify-items: start;
  max-width: 30rem;
}

body.is-nav-open {
  overflow: hidden;
}
.footer-column--brand p {
  max-width: 33rem;
}
.footer-column--links,
.footer-column--contact {
  padding-top: 0.55rem;
}
.footer-column--links a,
.footer-column--contact a,
.footer-column--contact p {
  width: fit-content;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer-bottom p {
  text-align: center;
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.home-showcase-panel {
  padding-bottom: 1.2rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 600;
  color: var(--heading-dark);
}
.section {
  padding: 4.4rem 0;
}
.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.hero-actions,
.cta-actions {
  gap: 1rem;
}
.button {
  border-radius: 14px;
}
.button-primary,
.button-secondary {
  min-height: 44px;
}
.hero-actions--hero .button-primary {
  background: linear-gradient(135deg, var(--gold-main), #ac8f44);
  color: var(--navy-dark);
  border-color: transparent;
}
.hero-actions--hero .button-primary:hover {
  background: var(--gold-main);
}
.hero-actions--hero .button-secondary {
  background: transparent;
  border-color: rgba(197, 160, 89, 0.7);
  color: var(--gold-main);
}
.hero-actions--hero .button-secondary:hover {
  background: rgba(197, 160, 89, 0.18);
}

.contact-form-status {
  margin: 0.2rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.7;
  background: rgba(0, 35, 71, 0.05);
  color: var(--text);
}

.contact-form-status.is-success {
  background: rgba(18, 121, 91, 0.12);
  color: #0d5c45;
}

.contact-form-status.is-error {
  background: rgba(185, 28, 28, 0.1);
  color: #991b1b;
}

/* Signature redesign for homepage and services */
.home-signature-page,
.services-signature-page {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 18%),
    radial-gradient(circle at 12% 88%, rgba(0, 35, 71, 0.12), transparent 18%),
    linear-gradient(180deg, #f6f1e8 0%, #fbfaf7 36%, #f1ebe1 100%);
}

.signature-heading {
  max-width: 860px;
  margin-bottom: 2.2rem;
}

.signature-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(7.4rem, 11vw, 9.5rem) 0 clamp(3rem, 5vw, 4.4rem);
  background:
    linear-gradient(120deg, rgba(5, 22, 39, 0.96), rgba(7, 36, 60, 0.88)),
    radial-gradient(circle at 82% 12%, rgba(197, 160, 89, 0.22), transparent 20%);
  color: #fff;
}

.signature-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    url("../images/hero-nanobanana.webp") center/cover no-repeat;
  opacity: 0.18;
}

.signature-hero__grid,
.signature-showcase__grid,
.signature-board__layout,
.services-signature-hero__grid,
.services-journey__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.signature-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: end;
}

.signature-hero__content h1,
.services-signature-hero__copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 1rem;
  color: #fff;
  text-wrap: balance;
}

.signature-hero__content p:not(.eyebrow),
.services-signature-hero__copy p:not(.eyebrow) {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.95;
}

.signature-hero__signals,
.services-signature-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 1.8rem;
}

.signature-hero__signals span,
.services-signature-hero__chips span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
}

.signature-hero__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.signature-kpi {
  padding: 1.3rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 240, 231, 0.94));
  color: var(--navy-main);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 44px rgba(4, 18, 31, 0.16);
}

.signature-kpi strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--navy-main);
}

.signature-kpi span,
.signature-kpi p {
  color: var(--text-muted);
}

.signature-kpi--highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(230, 200, 120, 0.18), rgba(255, 255, 255, 0.94));
}

.signature-board,
.signature-services,
.signature-audience,
.signature-showcase,
.services-command,
.services-journey,
.services-links {
  position: relative;
}

.signature-board__layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.signature-board__intro {
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 234, 0.94));
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.signature-board__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.signature-board__cards article,
.signature-audience__card,
.services-journey__steps article,
.services-command__card {
  padding: 1.4rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.signature-board__cards strong,
.signature-audience__card h3,
.services-command__card h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.signature-service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.signature-service-card {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(10, 31, 51, 0.12);
}

.signature-service-card--wide {
  grid-column: span 8;
}

.signature-service-card--accent {
  grid-column: span 8;
}

.signature-service-card img,
.signature-showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-service-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 23, 38, 0.08), rgba(7, 23, 38, 0.82)),
    linear-gradient(90deg, rgba(7, 23, 38, 0.2), rgba(7, 23, 38, 0));
}

.signature-service-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  color: #fff;
}

.signature-service-card__body span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: #edd28f;
  font-weight: 800;
}

.signature-service-card__body h3,
.signature-service-card__body p,
.signature-service-card__body strong {
  color: #fff;
}

.signature-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.signature-audience__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,244,236,0.96));
}

.signature-audience__card--accent {
  background: linear-gradient(180deg, rgba(0,35,71,0.95), rgba(11,52,83,0.94));
  color: #fff;
}

.signature-audience__card--accent h3,
.signature-audience__card--accent p,
.signature-audience__card--accent li,
.signature-audience__card--accent span {
  color: #fff;
}

.signature-showcase__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
}

.signature-showcase__list {
  display: grid;
  gap: 0.9rem;
  margin: 1.3rem 0 1.6rem;
}

.signature-showcase__list article {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 42, 67, 0.07);
}

.signature-showcase__frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 0.9rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.94), rgba(243,238,229,0.96));
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 24px 56px rgba(10, 31, 51, 0.12);
}

.signature-showcase__frame img {
  border-radius: 22px;
  aspect-ratio: 4 / 3.1;
}

.signature-showcase__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(0, 35, 71, 0.86);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.signature-showcase__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.signature-showcase__footer div,
.services-signature-hero__panel article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 42, 67, 0.08);
}

.signature-cta {
  padding-top: 1rem;
}

.signature-cta__block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(6, 27, 47, 0.96), rgba(10, 42, 70, 0.92));
  color: #fff;
  box-shadow: 0 26px 54px rgba(10, 31, 51, 0.16);
}

.signature-cta__block h2,
.signature-cta__block p {
  color: #fff;
}

.signature-cta__actions {
  display: flex;
  gap: 0.9rem;
}

.services-signature-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 10vw, 8.8rem) 0 3.6rem;
  background:
    linear-gradient(135deg, rgba(0, 35, 71, 0.98), rgba(10, 48, 77, 0.92)),
    radial-gradient(circle at 88% 14%, rgba(197, 160, 89, 0.18), transparent 18%);
  color: #fff;
}

.services-signature-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 23, 38, 0.34), rgba(7, 23, 38, 0.62)),
    url("../images/hero-clean.webp") center/cover no-repeat;
  opacity: 0.24;
}

.services-signature-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
}

.services-signature-hero__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-signature-hero__panel strong {
  display: block;
  color: var(--navy-main);
}

.services-command__grid,
.services-links__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.services-command__card {
  grid-column: span 4;
  min-height: 250px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.services-command__card:hover,
.signature-service-card:hover {
  transform: translateY(-6px);
}

.services-command__card--featured,
.services-command__card--accent {
  grid-column: span 6;
}

.services-command__card span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--gold-main);
  font-weight: 800;
}

.services-journey__layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.services-journey__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-links__grid > * {
  grid-column: span 4;
}

@media (max-width: 1180px) {
  .signature-service-card,
  .signature-service-card--wide,
  .signature-service-card--accent,
  .services-command__card,
  .services-command__card--featured,
  .services-command__card--accent {
    grid-column: span 6;
  }

  .signature-board__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .signature-hero__grid,
  .signature-board__layout,
  .signature-showcase__grid,
  .services-signature-hero__grid,
  .services-journey__layout,
  .signature-cta__block {
    grid-template-columns: 1fr;
  }

  .signature-hero__panel,
  .services-signature-hero__panel,
  .signature-audience__grid,
  .services-journey__steps {
    grid-template-columns: 1fr 1fr;
  }

  .services-links__grid > *,
  .services-command__card,
  .services-command__card--featured,
  .services-command__card--accent {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .signature-hero,
  .services-signature-hero {
    padding-top: 6.6rem;
  }

  .signature-hero__content h1,
  .services-signature-hero__copy h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .signature-service-grid,
  .services-command__grid,
  .services-links__grid {
    grid-template-columns: 1fr;
  }

  .signature-service-card,
  .signature-service-card--wide,
  .signature-service-card--accent,
  .services-command__card,
  .services-command__card--featured,
  .services-command__card--accent,
  .services-links__grid > * {
    grid-column: auto;
  }

  .signature-hero__panel,
  .services-signature-hero__panel,
  .signature-audience__grid,
  .signature-showcase__footer,
  .services-journey__steps,
  .signature-cta__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .signature-board__intro,
  .signature-cta__block {
    padding: 1.4rem;
  }

  .signature-service-card {
    min-height: 300px;
  }
}

/* About Signature Page */
.about-signature-page {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 22%),
    radial-gradient(circle at 12% 82%, rgba(0, 35, 71, 0.08), transparent 20%),
    linear-gradient(180deg, #f5f1e8 0%, #fbfaf7 34%, #f3ede3 100%);
}

.about-signature-hero__grid,
.about-manifest__grid,
.about-vision__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
}

.estate-studio-hero--about {
  position: relative;
  min-height: calc(84svh - var(--header-height));
  background:
    radial-gradient(circle at 18% 22%, rgba(197, 160, 89, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(7, 23, 38, 0.18), rgba(7, 23, 38, 0.08));
  overflow: hidden;
}

.estate-studio-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 30, 0.08), rgba(6, 18, 30, 0.08)),
    url("../images/hero-clean.webp") center center/cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.05) brightness(0.92);
}

.estate-studio-hero--about::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 23, 38, 0.14), rgba(7, 23, 38, 0.34)),
    linear-gradient(92deg, rgba(7, 23, 38, 0.88) 0%, rgba(7, 23, 38, 0.68) 28%, rgba(7, 23, 38, 0.3) 55%, rgba(7, 23, 38, 0.1) 74%, transparent 90%),
    radial-gradient(circle at 26% 34%, rgba(255, 255, 255, 0.05), transparent 20%);
}

.estate-studio-hero--about .estate-studio-hero__inner {
  direction: ltr;
  width: 100%;
  min-height: calc(84svh - var(--header-height));
  justify-content: flex-start;
  align-items: center;
  padding-block: clamp(7.2rem, 10vh, 8.2rem) clamp(2rem, 4vh, 2.7rem);
  padding-inline: clamp(1.4rem, 4vw, 3.6rem) clamp(10%, 13vw, 10.5rem);
}

.estate-studio-hero--about .estate-studio-hero__copy {
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 640px);
  max-width: 640px;
  margin-right: auto;
  margin-left: 0;
  padding: 0 1.5rem 0 0;
  gap: 0.8rem;
  text-align: right;
}

.estate-studio-hero--about .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.82rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f0d596;
  background: linear-gradient(180deg, rgba(17, 30, 42, 0.22), rgba(17, 30, 42, 0.12));
  border: 1px solid rgba(236, 210, 145, 0.3);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(6, 18, 30, 0.1);
  backdrop-filter: blur(8px);
}

.estate-studio-hero--about .estate-studio-hero__title,
.estate-studio-hero--about .estate-studio-hero__copy h1 {
  max-width: 520px;
  font-size: clamp(2rem, 2.7vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 0.04rem;
  text-shadow: 0 18px 34px rgba(5, 16, 27, 0.24);
  text-wrap: balance;
}

.estate-studio-hero--about .estate-studio-hero__copy p:not(.eyebrow),
.estate-studio-hero--about .estate-studio-hero__copy p {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.72;
  text-shadow: 0 10px 22px rgba(6, 18, 30, 0.22);
}

.about-manifest,
.about-framework,
.about-vision,
.about-values-signature,
.about-pathways {
  position: relative;
}

.about-manifest__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.about-manifest__intro,
.about-vision__statement {
  max-width: 650px;
}

.about-manifest__intro h2,
.about-vision__statement h2,
.about-framework .section-heading h2,
.about-values-signature .section-heading h2,
.about-pathways .section-heading h2 {
  text-wrap: balance;
}

.about-manifest__list,
.about-vision__cards,
.about-values-signature__grid,
.about-pathways__grid,
.about-framework__grid {
  display: grid;
  gap: 1rem;
}

.about-manifest__list {
  margin-top: 1.4rem;
}

.about-manifest__list article,
.about-board-card,
.about-framework__card,
.about-vision__cards article,
.about-values-signature__grid article,
.about-pathway-card {
  padding: 1.45rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-manifest__list article strong,
.about-board-card strong,
.about-values-signature__grid h3,
.about-pathway-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.about-manifest__list article span,
.about-board-card span,
.about-values-signature__grid p,
.about-pathway-card p {
  color: var(--text-muted);
}

.about-manifest__board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-board-card--quote {
  grid-column: 1 / -1;
  background: linear-gradient(160deg, rgba(6, 27, 47, 0.97), rgba(10, 42, 70, 0.94));
  color: #fff;
  box-shadow: 0 26px 52px rgba(10, 31, 51, 0.16);
}

.about-board-card--quote h3,
.about-board-card--quote p,
.about-board-card--quote .eyebrow {
  color: #fff;
}

.about-board-card--quote p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.about-framework {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(216, 181, 100, 0.08)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.06), transparent 24%);
}

.about-framework__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-framework__card span,
.about-vision__cards span,
.about-pathway-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--gold-main);
  font-weight: 800;
}

.about-framework__card h3,
.about-vision__cards h3 {
  margin: 0 0 0.75rem;
  font-size: 1.24rem;
  line-height: 1.55;
}

.about-framework__card p,
.about-vision__cards p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.88;
}

.about-framework__card--featured {
  background: linear-gradient(160deg, rgba(10, 31, 51, 0.98), rgba(18, 43, 67, 0.95));
  box-shadow: 0 26px 54px rgba(10, 31, 51, 0.18);
}

.about-framework__card--featured h3,
.about-framework__card--featured p,
.about-framework__card--featured span {
  color: #fff;
}

.about-framework__card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.about-vision__grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: start;
}

.about-vision__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-values-signature__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-values-signature__grid article {
  min-height: 100%;
}

.about-values-signature__grid h3 {
  margin-top: 0;
  color: var(--navy-dark);
}

.about-pathways__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-pathway-card {
  color: var(--brand-dark);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-pathway-card--accent {
  background: linear-gradient(160deg, rgba(6, 27, 47, 0.97), rgba(10, 42, 70, 0.94));
}

.about-pathway-card--accent strong,
.about-pathway-card--accent span,
.about-pathway-card--accent p {
  color: #fff;
}

.about-pathway-card--accent p {
  color: rgba(255, 255, 255, 0.8);
}

.about-pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(11, 34, 56, 0.14);
  border-color: rgba(197, 160, 89, 0.22);
}

@media (max-width: 1180px) {
  .about-framework__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-vision__cards,
  .about-values-signature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .about-manifest__grid,
  .about-vision__grid {
    grid-template-columns: 1fr;
  }

  .about-manifest__intro,
  .about-vision__statement {
    max-width: none;
  }

  .about-manifest__board,
  .about-vision__cards,
  .about-values-signature__grid,
  .about-pathways__grid {
    grid-template-columns: 1fr 1fr;
  }

  .estate-studio-hero--about .estate-studio-hero__inner {
    padding-inline: 7%;
    min-height: auto;
    padding-block: 7.2rem 1.8rem;
  }

  .estate-studio-hero--about .estate-studio-hero__copy {
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: 0;
    padding: 0 0.8rem 0 0;
  }

  .estate-studio-hero--about .estate-studio-hero__title,
  .estate-studio-hero--about .estate-studio-hero__copy h1 {
    max-width: 470px;
    font-size: clamp(1.82rem, 3.6vw, 2.4rem);
  }

  .estate-studio-hero--about .estate-studio-hero__copy p:not(.eyebrow),
  .estate-studio-hero--about .estate-studio-hero__copy p {
    max-width: 37ch;
    font-size: 0.94rem;
  }
}

@media (max-width: 760px) {
  .about-manifest__board,
  .about-framework__grid,
  .about-vision__cards,
  .about-values-signature__grid,
  .about-pathways__grid {
    grid-template-columns: 1fr;
  }

  .about-manifest__list article,
  .about-board-card,
  .about-framework__card,
  .about-vision__cards article,
  .about-values-signature__grid article,
  .about-pathway-card {
    padding: 1.2rem;
  }

  .estate-studio-hero--about {
    min-height: 100svh;
  }

  .estate-studio-hero--about::before {
    background-position: 64% center;
  }

  .estate-studio-hero--about::after {
    background:
      linear-gradient(180deg, rgba(7, 23, 38, 0.24) 0%, rgba(7, 23, 38, 0.5) 42%, rgba(7, 23, 38, 0.86) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  }

  .estate-studio-hero--about .estate-studio-hero__inner {
    width: min(100%, calc(100% - 1.1rem));
    min-height: 100svh;
    padding-inline: 0;
    padding-block: 7rem 2.55rem;
    align-items: flex-end;
  }

  .estate-studio-hero--about .estate-studio-hero__copy {
    width: calc(100% - 1rem);
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    margin-top: auto;
    padding: 0.95rem 1rem 1.05rem;
    gap: 0.48rem;
    position: relative;
  }

  .estate-studio-hero--about .estate-studio-hero__copy::after {
    content: "";
    position: absolute;
    inset: -0.6rem -0.5rem -0.55rem;
    z-index: -1;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(8, 21, 34, 0.08), rgba(8, 21, 34, 0.34) 42%, rgba(8, 21, 34, 0.52) 100%),
      radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 62%);
    box-shadow: 0 14px 34px rgba(6, 18, 30, 0.12);
    pointer-events: none;
  }

  .estate-studio-hero--about .eyebrow {
    padding: 0.28rem 0.66rem;
    font-size: 0.68rem;
  }

  .estate-studio-hero--about .estate-studio-hero__title,
  .estate-studio-hero--about .estate-studio-hero__copy h1 {
    max-width: none;
    font-size: clamp(1.56rem, 5.9vw, 1.94rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    text-shadow: 0 10px 22px rgba(6, 18, 30, 0.52);
  }

  .estate-studio-hero--about .estate-studio-hero__copy p:not(.eyebrow),
  .estate-studio-hero--about .estate-studio-hero__copy p {
    max-width: none;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.58;
    text-shadow: 0 8px 18px rgba(6, 18, 30, 0.46);
  }
}

/* Unified inner-page hero system */
.estate-studio-hero--inner {
  --inner-hero-image: url("../images/hero-clean.webp");
  --inner-hero-position: center center;
  --inner-hero-mobile-position: 64% center;
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  background: linear-gradient(180deg, rgba(7, 23, 38, 0.18), rgba(7, 23, 38, 0.08));
  overflow: hidden;
}

.estate-studio-hero--inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 30, 0.08), rgba(6, 18, 30, 0.08)),
    var(--inner-hero-image);
  background-position: var(--inner-hero-position);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1);
  filter: saturate(1.06) contrast(1.07) brightness(0.94);
}

.estate-studio-hero--inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 23, 38, 0.12), rgba(7, 23, 38, 0.28)),
    linear-gradient(92deg, rgba(7, 23, 38, 0.84) 0%, rgba(7, 23, 38, 0.62) 28%, rgba(7, 23, 38, 0.26) 55%, rgba(7, 23, 38, 0.08) 74%, transparent 90%);
  z-index: 0;
}

.estate-studio-hero--inner .estate-studio-hero__inner {
  direction: ltr;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  justify-content: flex-start;
  align-items: center;
  padding-block: clamp(6.9rem, 9vh, 7.8rem) clamp(1.8rem, 3.6vh, 2.4rem);
  padding-inline: clamp(1.4rem, 4vw, 3.6rem) clamp(10%, 13vw, 10.5rem);
}

.estate-studio-hero--inner .estate-studio-hero__copy {
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 640px);
  max-width: 640px;
  margin-right: auto;
  margin-left: 0;
  padding: 0 1.5rem 0 0;
  gap: 0.8rem;
  text-align: right;
}

.estate-studio-hero--inner .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.82rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f0d596;
  background: linear-gradient(180deg, rgba(17, 30, 42, 0.22), rgba(17, 30, 42, 0.12));
  border: 1px solid rgba(236, 210, 145, 0.3);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(6, 18, 30, 0.1);
  backdrop-filter: blur(8px);
}

.estate-studio-hero--inner .estate-studio-hero__title,
.estate-studio-hero--inner .estate-studio-hero__copy h1 {
  max-width: 520px;
  font-size: clamp(2rem, 2.7vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 0.04rem;
  text-shadow: 0 18px 34px rgba(5, 16, 27, 0.24);
  text-wrap: balance;
}

.estate-studio-hero--inner .estate-studio-hero__copy p:not(.eyebrow),
.estate-studio-hero--inner .estate-studio-hero__copy p {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.72;
  text-shadow: 0 10px 22px rgba(6, 18, 30, 0.22);
}

.estate-studio-hero--about-page {
  --inner-hero-image: url("../images/about-hero-bayan-clean.webp?v=20260425heroimg4");
  --inner-hero-position: 54% center;
  --inner-hero-mobile-position: 58% center;
  min-height: 100svh;
  background-image: var(--inner-hero-image);
  background-size: cover;
  background-position: var(--inner-hero-position);
  background-repeat: no-repeat;
}

.estate-studio-hero--about-page::before {
  filter: saturate(1.02) contrast(1.01) brightness(1.05);
  background-size: cover, 96.5% auto;
  background-position: var(--inner-hero-position), var(--inner-hero-position);
}

.estate-studio-hero--about-page::after {
  background:
    linear-gradient(92deg, rgba(7, 23, 38, 0.14) 0%, rgba(7, 23, 38, 0.07) 20%, rgba(7, 23, 38, 0.02) 38%, transparent 58%),
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.02), transparent 22%);
}


.estate-studio-hero--about-page .estate-studio-hero__inner {
  position: relative;
  z-index: 4;
  min-height: 100svh;
  padding-block: clamp(6.9rem, 9.4vh, 8rem) clamp(1.8rem, 3vh, 2.2rem);
}

.estate-studio-hero--about-page .estate-studio-hero__copy {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - clamp(8.7rem, 12vh, 10.2rem));
  position: relative;
  padding: 0;
  margin: 0;
  gap: 0;
}

.estate-studio-hero--about-page .eyebrow {
  min-height: 42px;
  padding: 0.42rem 1rem;
  color: #f3d68f;
  background: linear-gradient(180deg, rgba(17, 30, 42, 0.26), rgba(17, 30, 42, 0.14));
  border-color: rgba(236, 210, 145, 0.34);
}

.estate-studio-hero--about-page .estate-studio-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 18, 29, 0.34) 0%, rgba(7, 18, 29, 0.14) 22%, rgba(7, 18, 29, 0.08) 42%, rgba(7, 18, 29, 0.22) 100%),
    linear-gradient(90deg, rgba(7, 18, 29, 0.08) 0%, rgba(7, 18, 29, 0.08) 22%, rgba(7, 18, 29, 0.02) 42%, rgba(7, 18, 29, 0.26) 100%);
}

.about-hero-stage {
  position: relative;
  isolation: isolate;
}


.about-hero-stage__wall {
  position: absolute;
  top: 3.7%;
  right: 16.4%;
  width: min(25.2vw, 404px);
  display: grid;
  justify-items: center;
  max-width: 404px;
  padding: 1rem 0.56rem 0.22rem;
  --about-ink: #3f3428;
  --about-ink-soft: #4f4132;
  --about-accent: #b89457;
  --about-accent-soft: rgba(184, 148, 87, 0.34);
  --about-accent-strong: rgba(184, 148, 87, 0.88);
  color: var(--about-ink);
  text-align: center;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  z-index: 1;
  transform: none;
  overflow: visible;
}

.about-hero-stage__wall::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.28rem 0.14rem;
  pointer-events: none;
  z-index: 0;
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(226, 191, 126, 0.26),
    inset 0 20px 34px rgba(255, 236, 196, 0.24),
    inset 0 -16px 26px rgba(144, 103, 47, 0.16),
    inset 12px 0 22px rgba(243, 215, 154, 0.14),
    inset -12px 0 22px rgba(243, 215, 154, 0.14);
}

.about-hero-stage__wall > * {
  position: relative;
  z-index: 1;
}


.hero-title,
.about-hero-stage__brand-ar {
  margin: 0.42rem 0 0;
  color: #d8b974 !important;
  font-size: clamp(2.45rem, 3.2vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 800;
  text-shadow:
    0 1px 0 rgba(255, 250, 235, 0.5),
    0 2px 0 rgba(246, 223, 165, 0.34),
    0 8px 16px rgba(71, 49, 18, 0.28),
    0 16px 28px rgba(0, 0, 0, 0.2);
  background:
    linear-gradient(
      180deg,
      #fff0c8 0%,
      #f0cf8a 16%,
      #d8ae60 34%,
      #b8863d 52%,
      #f1d79f 68%,
      #aa7936 86%,
      #6f4d20 100%
    ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  filter: none !important;
  background: none !important;
  background-image: none !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 0.78rem;
  transform: translateY(1.62rem) !important;
}

.estate-studio-hero--about-page h1.about-hero-stage__brand-ar {
  margin: 0.42rem 0 0;
  color: #d8b974 !important;
  font-size: clamp(2.45rem, 3.2vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 800;
  text-shadow:
    0 1px 0 rgba(255, 250, 235, 0.5),
    0 2px 0 rgba(246, 223, 165, 0.34),
    0 8px 16px rgba(71, 49, 18, 0.28),
    0 16px 28px rgba(0, 0, 0, 0.2);
  background:
    linear-gradient(
      180deg,
      #fff0c8 0%,
      #f0cf8a 16%,
      #d8ae60 34%,
      #b8863d 52%,
      #f1d79f 68%,
      #aa7936 86%,
      #6f4d20 100%
    ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  filter: none !important;
  background: none !important;
  background-image: none !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 0.78rem;
  transform: translateY(1.62rem) !important;
  opacity: 1 !important;
}

.hero-subtitle,
.about-hero-stage__brand-en {
  margin: 0.42rem 0 0;
  color: #d7b66f !important;
  font-size: clamp(1.72rem, 2.3vw, 2.55rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-shadow:
    0 1px 0 rgba(255, 250, 235, 0.42),
    0 6px 14px rgba(71, 49, 18, 0.24),
    0 10px 20px rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(
      180deg,
      #ffefc2 0%,
      #e7c57c 30%,
      #bb8d43 56%,
      #e9ca8f 76%,
      #785526 100%
    ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 1.02rem;
  transform: translate(0.28rem, 0.98rem) !important;
}

.estate-studio-hero--about-page p.about-hero-stage__brand-en {
  color: #d7b66f !important;
  font-size: clamp(1.72rem, 2.3vw, 2.55rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-shadow:
    0 1px 0 rgba(255, 250, 235, 0.42),
    0 6px 14px rgba(71, 49, 18, 0.24),
    0 10px 20px rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(
      180deg,
      #ffefc2 0%,
      #e7c57c 30%,
      #bb8d43 56%,
      #e9ca8f 76%,
      #785526 100%
    ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 0.42rem 0 1.02rem;
  transform: translate(0.28rem, 0.98rem) !important;
}

.hero-text,
.about-hero-stage__wall {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.hero-text p,
.about-hero-stage__subtitle {
  margin: 0.92rem auto 0;
  max-width: 15.5ch;
  color: #e9c97d !important;
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  line-height: 1.66;
  font-weight: 600;
  padding-bottom: 0.25rem;
  text-shadow:
    0 1px 0 rgba(255, 247, 224, 0.36),
    0 2px 8px rgba(70, 47, 17, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.2);
}

.estate-studio-hero--about-page p.about-hero-stage__subtitle {
  margin: 0.78rem auto 0;
  max-width: 14ch;
  color: #e9c97d !important;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.6;
  font-weight: 600;
  padding-bottom: 0.18rem;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 247, 224, 0.36),
    0 2px 8px rgba(70, 47, 17, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.2);
}

.about-hero-stage__divider {
  position: relative;
  width: min(76%, 270px);
  height: 1px;
  margin: 0.88rem auto 0;
  background: linear-gradient(90deg, transparent 0%, var(--about-accent-soft) 14%, var(--about-accent-strong) 50%, var(--about-accent-soft) 86%, transparent 100%);
}

.about-hero-stage__divider::after {
  content: "";
  position: absolute;
  inset-inline-start: calc(50% - 0.46rem);
  inset-block-start: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border: 1px solid var(--about-accent-strong);
  background: rgba(252, 244, 230, 0.98);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 3px rgba(255, 248, 235, 0.78);
}

.about-hero-stage__divider--lower {
  width: min(80%, 286px);
  margin-top: 0.68rem;
}

.about-hero-stage__mini {
  display: grid;
  grid-template-columns: repeat(3, 92px);
  justify-content: center;
  align-items: start;
  column-gap: 0.3rem;
  width: fit-content;
  max-width: none;
  margin: 0.7rem auto 0;
  padding-top: 0.05rem;
  transform: none;
}

.about-hero-stage__mini-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
  width: 92px;
  min-height: auto;
  padding: 0;
  color: #ddb66a;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
  transform: none;
  text-align: center;
  text-wrap: balance;
}

.about-hero-stage__mini-item:not(:first-child) {
  border-inline-start: 0;
}

.about-hero-stage__mini-item:nth-child(2) {
  transform: translateX(-1px);
}

.about-hero-stage__mini-item:nth-child(2) .about-hero-stage__mini-icon {
  transform: none;
}

.about-hero-stage__mini-item:nth-child(1) {
  transform: translateX(-10px);
}

.about-hero-stage__mini-icon {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  align-items: center;
  justify-content: center;
  color: #dfbc74;
}

.about-hero-stage__mini-item:nth-child(1) .about-hero-stage__mini-icon {
  width: 1.1rem;
  height: 1.1rem;
  transform: none;
  transform-origin: center;
}

.about-hero-stage__mini-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1px 0 rgba(255, 246, 219, 0.3)) drop-shadow(0 4px 10px rgba(64, 43, 16, 0.2));
}

/* About mural unified luxury bronze tone */
.about-hero-stage__brand-ar,
.estate-studio-hero--about-page h1.about-hero-stage__brand-ar,
.about-hero-stage__brand-en,
.estate-studio-hero--about-page p.about-hero-stage__brand-en,
.about-hero-stage__subtitle,
.estate-studio-hero--about-page p.about-hero-stage__subtitle,
.about-hero-stage__mini-item,
.about-hero-stage__mini-icon {
  color: #4b2f18 !important;
}


.about-hero-stage__brand-ar,
.estate-studio-hero--about-page h1.about-hero-stage__brand-ar,
.about-hero-stage__brand-en,
.estate-studio-hero--about-page p.about-hero-stage__brand-en {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #4b2f18 !important;
}


.about-hero-stage__subtitle,
.estate-studio-hero--about-page p.about-hero-stage__subtitle,
.about-hero-stage__mini-item,
.about-hero-stage__mini-icon {
  color: #5b3b21 !important;
}


.hero-wall-panel {
  position: absolute;
  isolation: isolate;
  z-index: 2;
}

.hero-wall-panel::before {
  content: none;
}

.hero-wall-panel::after {
  content: none;
}

.hero-wall-panel__spotlight {
  display: none;
}

.hero-wall-panel > :not(.hero-wall-panel__spotlight) {
  position: relative;
  z-index: 1;
}


.estate-studio-hero--services-page {
  isolation: isolate;
  background: #071b2e;
}

.estate-studio-hero--services-page::before {
  content: none !important;
}

.estate-studio-hero--services-page::after {
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.025) 48% 49%, transparent 49% 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.035), transparent 52%);
}

.estate-studio-hero--services-page.services-hero--slider-phase::before,
.estate-studio-hero--services-page.services-hero--slider-phase::after {
  opacity: 0;
  pointer-events: none;
}

.services-hero-heading-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.estate-studio-hero--services-page .estate-studio-hero__inner {
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100svh;
  position: relative;
  width: 100%;
  max-width: none;
  padding-block: clamp(7.8rem, 10.8vh, 9rem) 0;
  padding-inline: clamp(1rem, 3.6vw, 2.75rem);
}

.estate-studio-hero--services-page .estate-studio-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100%, 520px);
  max-width: 520px;
  margin-right: auto;
  margin-left: 0;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0.9rem 0.95rem 0.82rem;
  gap: 0.62rem;
  text-align: right;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.estate-studio-hero--services-page .services-hero-copy--minimal {
  gap: 0;
  padding: 0;
}

@media (min-width: 761px) {
  .estate-studio-hero--services-page .estate-studio-hero__copy {
    position: absolute !important;
    left: clamp(1.4rem, 4.2vw, 4.8rem) !important;
    right: auto !important;
    bottom: clamp(0.75rem, 2vh, 1.4rem) !important;
    top: auto !important;
    margin: 0 !important;
    width: min(38vw, 520px) !important;
    max-width: min(38vw, 520px) !important;
    padding: 0.72rem 0.82rem 0.68rem !important;
    transform: none !important;
  }

  #services-hero-copy.services-hero-copy--minimal {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: clamp(5.4rem, 10vh, 7.4rem) !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    transform: none !important;
    z-index: 3 !important;
  }
}

.estate-studio-hero--services-page .estate-studio-hero__copy p:not(.eyebrow),
.estate-studio-hero--services-page .estate-studio-hero__copy p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(0.94rem, 1.05vw, 1.05rem);
  font-weight: 600;
  line-height: 1.72;
  text-shadow:
    0 2px 8px rgba(6, 18, 30, 0.28),
    0 6px 14px rgba(6, 18, 30, 0.2);
}

#services-hero-copy {
  border-radius: 0;
}

#services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.62rem;
  width: min(100%, 980px);
  max-width: min(100%, 980px);
  margin-inline: auto;
  padding: 0;
  border-radius: 0;
  text-align: center;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#services-hero-copy.services-hero-copy--minimal,
.estate-studio-hero--services-page .estate-studio-hero__copy,
.estate-studio-hero--services-page .estate-studio-hero__copy::after {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.estate-studio-hero--services-page .estate-studio-hero__copy::after {
  content: none !important;
}

#services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel .eyebrow {
  margin: 0;
  padding: 0;
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff !important;
  background: none;
  background-color: transparent !important;
  background-image: none !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-page--luxury #services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel .eyebrow,
.services-page--luxury .estate-studio-hero--services-page .services-hero-focus-panel .eyebrow {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.services-page--luxury #services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel .eyebrow::before,
.services-page--luxury #services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel .eyebrow::after {
  content: none !important;
}

#services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel .services-hero-intro {
  margin: 0;
  max-width: min(62ch, 100%);
  width: 100%;
  color: rgba(255, 252, 248, 0.98);
  font-size: clamp(1.02rem, 1.18vw, 1.2rem);
  font-weight: 700;
  line-height: 1.82;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.services-page--luxury .hero-scroll-cue--bottom {
  bottom: clamp(0.5rem, 1.3vh, 1rem);
}

/* Services hero: sector image slider after initial static hero */
.services-hero-sector-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.05s ease, visibility 0s linear 1.05s;
}

.estate-studio-hero--services-page.services-hero--slider-phase .services-hero-sector-slider {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.05s ease, visibility 0s linear 0s;
}

.services-hero-sector-slider__slides {
  position: absolute;
  inset: 0;
}

.services-hero-sector-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s ease;
}

.services-hero-sector-slide.is-active {
  opacity: 1;
}

.services-hero-sector-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}

.services-hero-sector-slider__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.05s ease;
  background:
    linear-gradient(180deg, rgba(7, 23, 38, 0.08), rgba(7, 23, 38, 0.14)),
    linear-gradient(
      92deg,
      rgba(7, 23, 38, 0.46) 0%,
      rgba(7, 23, 38, 0.28) 32%,
      rgba(7, 23, 38, 0.12) 58%,
      rgba(7, 23, 38, 0.04) 76%,
      transparent 92%
    );
}

.estate-studio-hero--services-page.services-hero--slider-phase .services-hero-sector-slider__scrim {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .estate-studio-hero--services-page::before,
  .estate-studio-hero--services-page::after {
    transition: none;
  }

  .services-hero-sector-slider,
  .services-hero-sector-slide,
  .services-hero-sector-slider__scrim {
    transition: none !important;
  }

  .estate-studio-hero--services-page.services-hero--slider-phase .services-hero-sector-slider {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .estate-studio-hero--services-page.services-hero--slider-phase::before,
  .estate-studio-hero--services-page.services-hero--slider-phase::after {
    opacity: 1 !important;
  }
}

@media (max-width: 760px) {
  .estate-studio-hero--services-page .estate-studio-hero__copy,
  #services-hero-copy {
    width: min(100%, 420px) !important;
    max-width: min(100%, 420px) !important;
    padding: 0.9rem 0.9rem 0.86rem !important;
    gap: 0.5rem;
  }

  #services-hero-copy.services-hero-copy--minimal {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    bottom: clamp(4.8rem, 9vh, 6.6rem) !important;
    top: auto !important;
    margin: 0 !important;
    z-index: 3 !important;
  }

  #services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel {
    gap: 0.52rem;
    padding: 0;
    border-radius: 0;
  }

  #services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel .eyebrow {
    padding: 0;
    font-size: 1.14rem;
  }

  #services-hero-copy.services-hero-copy--minimal .services-hero-focus-panel .services-hero-intro {
    font-size: 0.94rem;
    line-height: 1.78;
    font-weight: 700;
  }
}

.estate-studio-hero--contact-page {
  --inner-hero-image: none;
  --inner-hero-position: center center;
  --inner-hero-mobile-position: 62% center;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 241, 214, 0.11), transparent 24%),
    radial-gradient(circle at 72% 34%, rgba(255, 223, 170, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(12, 28, 42, 0.94), rgba(15, 33, 49, 0.9));
}

.estate-studio-hero--contact-page .estate-studio-hero__veil {
  overflow: hidden;
}

.estate-studio-hero--contact-page .estate-studio-hero__veil::before,
.estate-studio-hero--contact-page .estate-studio-hero__veil::after {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
}

.estate-studio-hero--contact-page .estate-studio-hero__veil::before {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 241, 214, 0.1), transparent 28%),
    radial-gradient(circle at 68% 38%, rgba(255, 223, 170, 0.08), transparent 26%);
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: contactGlowDrift 22s ease-in-out infinite alternate;
}

.estate-studio-hero--contact-page .estate-studio-hero__veil::after {
  background:
    radial-gradient(ellipse at center, rgba(255, 248, 233, 0.07), transparent 58%);
  opacity: 0.55;
  transform: scale(1.02);
  animation: contactDepthFloat 26s ease-in-out infinite alternate;
}

@keyframes contactGlowDrift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    opacity: 0.52;
  }
  50% {
    transform: translate3d(1%, 0.8%, 0) scale(1.04);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(2.2%, -0.6%, 0) scale(1.02);
    opacity: 0.58;
  }
}

@keyframes contactDepthFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1.01);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(0.8%, -1.2%, 0) scale(1.05);
    opacity: 0.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .estate-studio-hero--contact-page .estate-studio-hero__veil::before,
  .estate-studio-hero--contact-page .estate-studio-hero__veil::after,
  .contact-hero-panel article {
    animation: none;
  }
}

.services-page--luxury .service-map-card,
.services-page--luxury .brand-link-card,
.services-page--luxury .service-flow__steps article,
.services-page--luxury .services-luxury-card {
  box-shadow: 0 22px 50px rgba(10, 31, 51, 0.08);
}

.services-page--luxury .service-map__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.services-page--luxury .service-map {
  padding-bottom: clamp(4.2rem, 8vh, 5.8rem);
  position: relative;
}

.services-page--luxury .service-map > .container > .section-heading {
  margin-bottom: 0.7rem;
}

.services-page--luxury .service-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(212, 177, 108, 0.14), transparent 30%),
    radial-gradient(circle at 82% 84%, rgba(11, 43, 72, 0.1), transparent 36%);
}

.services-page--luxury .service-map-card {
  min-height: 230px;
  padding: 1.15rem;
  border: 1px solid rgba(170, 137, 76, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(250, 244, 233, 0.96));
  box-shadow:
    0 24px 60px rgba(10, 31, 51, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.82) inset;
}

.services-page--luxury .service-map-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(20, 36, 53, 0.92);
}

.services-page--luxury .service-map-card--featured .service-map-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff !important;
  text-shadow: none;
}

.services-page--luxury .service-map-card span {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #b8914f;
}

.services-page--luxury .service-map__grid .service-map-card:last-child {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 172px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 1.3rem;
  row-gap: 0.4rem;
  align-items: center;
  padding: 1.35rem 1.45rem;
  border-radius: 30px;
  border: 1px solid rgba(213, 178, 108, 0.45);
  background:
    linear-gradient(132deg, rgba(4, 18, 33, 0.72), rgba(8, 32, 54, 0.52)),
    var(--service-card-image);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 30px 66px rgba(10, 31, 51, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.services-page--luxury .service-map__grid .service-map-card:last-child > span {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.services-page--luxury .service-map-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 167, 99, 0.24), rgba(201, 167, 99, 0.08));
  border: 1px solid rgba(201, 167, 99, 0.35);
}

.services-page--luxury .service-map-card__icon svg {
  width: 18px;
  height: 18px;
  color: #a88346;
}

.services-page--luxury .service-map__grid .service-map-card:last-child > h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(1.75rem, 2.3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(5, 18, 30, 0.45);
}

.services-page--luxury .service-map__grid .service-map-card:last-child > p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(245, 250, 255, 0.97);
  text-shadow: 0 2px 10px rgba(5, 18, 30, 0.34);
}

.services-page--luxury .service-map__grid .service-map-card:last-child > .service-map-card__cta {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  min-height: 46px;
  padding-inline: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #efd39b 0%, #d6ae68 52%, #c89c57 100%);
  border-color: rgba(150, 113, 52, 0.52);
  color: #17314e;
  box-shadow:
    0 14px 28px rgba(0, 35, 71, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.services-page--luxury .service-map__grid .service-map-card:last-child > .service-map-card__cta:hover {
  background: linear-gradient(180deg, #f4dcae 0%, #dfbc7d 52%, #d0a966 100%);
  color: #102743;
  border-color: rgba(132, 95, 40, 0.66);
  transform: translateY(-2px);
}

.services-page--luxury .service-map-card--featured h3,
.services-page--luxury .service-map-card--featured p,
.services-page--luxury .service-map-card--featured .service-map-card__cta {
  color: var(--brand-dark);
  text-shadow: none;
}

.services-page--luxury .section-heading.section-heading-tight h2 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 0.85rem;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
}

.services-page--luxury .service-map .section-heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to left, #c7a356, rgba(199, 163, 86, 0.08));
}

.services-page--luxury .service-map .section-heading > p:last-child {
  max-width: 76ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
  line-height: 1.9;
}

.services-page--luxury .service-map-card {
  background:
    linear-gradient(160deg, rgba(6, 22, 38, 0.48), rgba(10, 36, 58, 0.25)),
    var(--service-card-image, linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,231,0.92)));
}

.services-page--luxury .service-map__grid .service-map-card:last-child {
  min-height: 190px;
  padding-block: 1.55rem;
  background:
    linear-gradient(132deg, rgba(4, 18, 33, 0.64), rgba(8, 32, 54, 0.4)),
    var(--service-card-image);
}

@media (max-width: 1400px) {
  .services-page--luxury .service-map__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-page--luxury .service-map__grid .service-map-card:last-child {
    grid-column: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem;
  }

  .services-page--luxury .service-map__grid .service-map-card:last-child > .service-map-card__cta {
    align-self: flex-start;
  }
}

@media (max-width: 980px) {
  .services-page--luxury .service-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-luxury-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-luxury-card,
  .services-luxury-card--estate {
    grid-column: auto;
    min-height: 245px;
  }
}

.services-luxury-overview {
  padding-top: clamp(1.7rem, 3vw, 2.4rem);
  padding-bottom: clamp(2.6rem, 4.5vw, 4rem);
  margin-top: clamp(0.8rem, 1.5vw, 1.2rem);
  border-top: 0;
}

.services-luxury-overview__intro {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  max-width: 820px;
  margin: 0 auto clamp(1.3rem, 2.2vw, 1.8rem);
  text-align: center;
}

.services-luxury-overview__intro .eyebrow {
  margin: 0;
  color: #7d5c20;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.28);
}

.services-luxury-overview__intro h2 {
  position: relative;
  margin: 0;
  padding-bottom: 0.8rem;
  color: var(--brand-dark);
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  line-height: 1.35;
  text-wrap: balance;
}

.services-luxury-overview__intro h2::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 62px;
  height: 2px;
  transform: translateX(50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #c7a356, transparent);
}

.services-luxury-overview__intro .services-luxury-overview__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.services-luxury-overview__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.2vw, 1rem);
}

.services-luxury-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: clamp(0.85rem, 1.1vw, 1rem);
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 234, 0.94));
  border: 1px solid rgba(16, 42, 67, 0.075);
  border-top: 3px solid rgba(197, 160, 89, 0.62);
  box-shadow:
    0 15px 32px rgba(10, 31, 51, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

a.services-luxury-card {
  color: inherit;
  text-decoration: none;
}

.services-luxury-card--estate {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(280px, 1fr) auto;
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(1.4rem, 3vw, 3rem);
  row-gap: 0.25rem;
  align-items: center;
  min-height: 210px;
  padding: clamp(1.15rem, 1.8vw, 1.55rem);
  border-top-color: #c7a356;
  background:
    radial-gradient(circle at 4% 90%, rgba(197, 160, 89, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.995), rgba(244, 237, 224, 0.97));
  box-shadow:
    0 20px 42px rgba(10, 31, 51, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-luxury-card--estate .services-luxury-card__head,
.services-luxury-card--estate h3,
.services-luxury-card--estate > p {
  grid-column: 1;
}

.services-luxury-card--estate .services-luxury-card__head {
  grid-row: 1;
}

.services-luxury-card--estate h3 {
  grid-row: 2;
}

.services-luxury-card--estate > p {
  grid-row: 3;
}

.services-luxury-card--estate ul {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  margin: 0;
  padding: 0.85rem 1rem;
  border-inline-start: 1px solid rgba(197, 160, 89, 0.25);
}

.services-luxury-card--estate .services-luxury-card__link {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  margin-top: 0;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.services-luxury-card__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.services-luxury-card__head > span:last-child {
  color: #a77e3c;
  font-weight: 800;
}

.services-luxury-card__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  color: #b58b45;
  border: 1px solid rgba(197, 160, 89, 0.28);
  background: rgba(197, 160, 89, 0.09);
}

.services-luxury-card__icon svg {
  width: 17px;
  height: 17px;
}

.services-luxury-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 0.55rem;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.services-luxury-card__link b {
  color: #b58b45;
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.services-luxury-card:hover .services-luxury-card__link b {
  transform: translateX(-4px);
}

a.services-luxury-card:focus-visible {
  outline: 2px solid rgba(181, 143, 80, 0.9);
  outline-offset: 3px;
}

.services-luxury-card span,
.contact-presence__card span,
.estate-curation-band__grid article span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: #b58f50;
  font-weight: 800;
}

.services-luxury-card h3,
.estate-curation-band__grid article h3 {
  color: var(--brand-dark);
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.services-luxury-card ul {
  display: grid;
  gap: 0.24rem;
  margin: 0.5rem 0 0.55rem;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.services-luxury-card ul li {
  position: relative;
  padding-inline-start: 1rem;
}

.services-luxury-card ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c7a356;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.services-luxury-card p {
  margin-bottom: 0;
  font-size: 0.89rem;
  line-height: 1.58;
  color: rgba(20, 36, 53, 0.9);
}

.services-luxury-card h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.45;
}

.services-page--luxury .service-map-card {
  min-height: 292px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(6, 22, 38, 0.56), rgba(10, 36, 58, 0.34)),
    var(--service-card-image, linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,231,0.92)));
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) brightness(1.03);
  box-shadow:
    0 24px 60px rgba(10, 31, 51, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.services-page--luxury .service-map-card::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.55), transparent);
  opacity: 0;
  transform: scaleX(0.78);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.services-page--luxury .service-map-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(197, 160, 89, 0.32);
}

.services-page--luxury .service-map-card h3 {
  font-size: 1.36rem;
  line-height: 1.35;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(7, 24, 40, 0.35);
}

.services-page--luxury .service-map-card p {
  line-height: 1.9;
  color: rgba(248, 251, 255, 0.98);
  text-shadow: 0 2px 8px rgba(7, 24, 40, 0.3);
}

.services-page--luxury .service-map-card__cta {
  position: relative;
  padding-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding-inline: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0c2943, #1a456d);
  color: #fff;
  border: 1px solid rgba(207, 172, 106, 0.26);
  box-shadow: 0 12px 24px rgba(10, 31, 51, 0.22);
}

.services-page--luxury .service-map-card__cta::after {
  content: "←";
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.services-page--luxury .service-map-card:hover .service-map-card__cta::after {
  transform: translateX(-4px);
}

.services-page--luxury .service-map-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(201, 167, 99, 0.55);
  box-shadow:
    0 34px 75px rgba(10, 31, 51, 0.16),
    0 0 0 1px rgba(210, 177, 110, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.services-page--luxury .service-map-card span {
  color: rgba(238, 208, 145, 0.98);
}

.services-page--luxury .service-map-card--featured h3,
.services-page--luxury .service-map-card--featured p,
.services-page--luxury .service-map-card--featured .service-map-card__cta {
  color: #fff;
}

.services-page--luxury .service-map-card--construction {
  --service-card-image: url("../images/projects/redcrescent-training-riyadh.png");
}

.services-page--luxury .service-map-card--infrastructure {
  --service-card-image: url("../images/services-final/infra-project-03-road-trench%20%282%29.png");
}

.services-page--luxury .service-map-card--maintenance {
  --service-card-image: url("../images/maintenance-project-06-field-ops-clean.png");
}

.services-page--luxury .service-map-card--steel {
  --service-card-image: url("../images/services-final/steel-4.webp");
}

.services-page--luxury .service-map-card--real-estate {
  --service-card-image: url("../images/service-real-estate.webp");
}

.services-page--luxury .service-map-card {
  background:
    linear-gradient(160deg, rgba(6, 22, 38, 0.48), rgba(10, 36, 58, 0.25)),
    var(--service-card-image, linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,241,231,0.92)));
  background-color: #102b43;
  background-size: 100% 100%, 100% auto;
  background-position: center, center;
  background-repeat: no-repeat;
}

.services-page--luxury .service-map__grid .service-map-card:last-child {
  background:
    linear-gradient(132deg, rgba(4, 18, 33, 0.64), rgba(8, 32, 54, 0.4)),
    var(--service-card-image);
  background-size: 100% 100%, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.services-page--luxury .service-map__grid .service-map-card:not(:last-child) {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: 74px 1fr 58px;
  align-items: center;
  min-height: 292px;
  padding: 0;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      #0d2a43 0,
      #0d2a43 74px,
      transparent 74px,
      transparent calc(100% - 58px),
      #0d2a43 calc(100% - 58px),
      #0d2a43 100%
    ),
    var(--service-card-image);
  background-color: #dfe5e8;
  background-size: 100% 100%, 100% auto;
  background-position: center, center;
  background-repeat: no-repeat;
}

.services-page--luxury .service-map__grid .service-map-card:not(:last-child) > span {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  margin: 0;
  padding-inline-start: 1rem;
  color: #d6ae68;
  font-size: 0.88rem;
}

.services-page--luxury .service-map__grid .service-map-card:not(:last-child) > h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  margin: 0;
  padding-inline-start: 0.55rem;
  color: #fff;
  font-size: 1.1rem;
  text-shadow: none;
}

.services-page--luxury .service-map__grid .service-map-card:not(:last-child) > .service-map-card__cta {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: center;
  justify-self: center;
  min-height: 36px;
  margin: 0;
  padding: 0.38rem 1rem;
  border-color: rgba(214, 174, 104, 0.58);
  background: linear-gradient(135deg, rgba(214, 174, 104, 0.14), rgba(255, 255, 255, 0.055));
  color: #f2d89d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 5px 14px rgba(0, 12, 25, 0.12);
  font-size: 0.82rem;
}

.services-page--luxury .service-map__grid .service-map-card:not(:last-child)::after {
  display: none;
}

.services-page--luxury .service-map-card,
.services-page--luxury .services-luxury-card,
.services-page--luxury .brand-link-card,
.services-page--luxury .service-flow__steps article,
.estate-projects-page--luxury .estate-project-list-card,
.estate-curation-band__grid article,
.contact-page--luxury .contact-studio__card,
.contact-page--luxury .contact-studio__form,
.contact-page--luxury .brand-link-card,
.contact-presence__card,
.contact-socials a {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.services-page--luxury .button,
.estate-projects-page--luxury .button,
.contact-page--luxury .button,
.sector-page .button {
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
  box-shadow: 0 10px 22px rgba(10, 31, 51, 0.08);
}

.services-page--luxury .button::after,
.estate-projects-page--luxury .button::after,
.contact-page--luxury .button::after,
.sector-page .button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 35%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.06) 65%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.services-page--luxury .button:hover,
.estate-projects-page--luxury .button:hover,
.contact-page--luxury .button:hover,
.sector-page .button:hover {
  box-shadow: 0 14px 28px rgba(10, 31, 51, 0.12);
  filter: saturate(1.02) brightness(1.01);
}

.services-page--luxury .button:hover::after,
.estate-projects-page--luxury .button:hover::after,
.contact-page--luxury .button:hover::after,
.sector-page .button:hover::after {
  opacity: 1;
  animation: luxurySweep 1.25s ease forwards;
}

.services-page--luxury .button-primary:hover,
.estate-projects-page--luxury .button-primary:hover,
.contact-page--luxury .button-primary:hover,
.sector-page .button-primary:hover {
  background: linear-gradient(135deg, #efcf82, #cba553);
  color: var(--navy-dark);
}

.services-page--luxury .button-secondary:hover,
.estate-projects-page--luxury .button-secondary:hover,
.contact-page--luxury .button-secondary:hover,
.sector-page .button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(243, 221, 157, 0.3);
  color: #fff;
}

.services-page--luxury .service-map-card::before,
.services-page--luxury .services-luxury-card::before,
.services-page--luxury .brand-link-card::before,
.estate-projects-page--luxury .estate-project-list-card::before,
.estate-curation-band__grid article::before,
.contact-page--luxury .contact-studio__card::before,
.contact-page--luxury .contact-studio__form::after,
.contact-presence__card::before,
.contact-socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 32%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0.06) 64%, transparent 100%);
  transform: translateX(-130%);
  pointer-events: none;
}

.services-page--luxury .service-map-card:hover::before,
.services-page--luxury .services-luxury-card:hover::before,
.services-page--luxury .brand-link-card:hover::before,
.estate-projects-page--luxury .estate-project-list-card:hover::before,
.estate-curation-band__grid article:hover::before,
.contact-page--luxury .contact-studio__card:hover::before,
.contact-page--luxury .contact-studio__form:hover::after,
.contact-presence__card:hover::before,
.contact-socials a:hover::before {
  animation: luxurySweep 1.45s ease forwards;
}

.services-page--luxury .service-map-card:hover,
.services-page--luxury .services-luxury-card:hover,
.services-page--luxury .brand-link-card:hover,
.estate-projects-page--luxury .estate-project-list-card:hover,
.estate-curation-band__grid article:hover,
.contact-page--luxury .contact-studio__card:hover,
.contact-page--luxury .contact-studio__form:hover,
.contact-page--luxury .brand-link-card:hover,
.contact-presence__card:hover,
.contact-socials a:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(10, 31, 51, 0.16);
  border-color: rgba(197, 160, 89, 0.28);
}

@keyframes luxurySweep {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes luxuryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes luxuryPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.08); }
  50% { box-shadow: 0 0 0 8px rgba(197, 160, 89, 0); }
}

@keyframes luxuryLineDraw {
  0% {
    opacity: 0;
    transform: scaleX(0.08);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.luxury-line-heading {
  position: relative;
  width: fit-content;
  padding-bottom: 0.85rem;
}

.luxury-line-heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(132px, 42%);
  height: 1px;
  background: linear-gradient(90deg, rgba(197,160,89,0), rgba(197,160,89,0.92), rgba(240,213,150,0.28));
  transform: scaleX(0.08);
  transform-origin: right center;
  opacity: 0;
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.18);
}

.luxury-line-heading.is-revealed::after {
  animation: luxuryLineDraw 0.95s ease forwards;
}

@keyframes softPageEnter {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionReveal {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxuryImageDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.045) translate3d(-0.8%, -0.4%, 0);
  }
  100% {
    transform: scale(1.03) translate3d(0.55%, 0.2%, 0);
  }
}

@keyframes luxuryImageDriftAlt {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.042) translate3d(0.75%, -0.25%, 0);
  }
  100% {
    transform: scale(1.028) translate3d(-0.5%, 0.25%, 0);
  }
}

@keyframes pageEnterGlobal {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUpGlobal {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-page--luxury,
.estate-projects-page--luxury,
.contact-page--luxury,
.sector-page {
  animation: softPageEnter 0.58s ease both;
}

.page-enter {
  animation: pageEnterGlobal 0.72s ease both;
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  animation: revealUpGlobal 0.82s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

.premium-hero .reveal-up {
  opacity: 0;
  transform: translateY(24px);
}

.premium-hero.is-revealed .reveal-up {
  animation: revealUpGlobal 0.94s ease forwards;
}

.premium-hero.is-revealed .reveal-delay-1 {
  animation-delay: 0.12s;
}

.premium-hero.is-revealed .reveal-delay-2 {
  animation-delay: 0.22s;
}

.premium-hero.is-revealed .reveal-delay-3 {
  animation-delay: 0.3s;
}

.luxury-reveal-section {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.luxury-reveal-section.is-visible {
  animation: sectionReveal 0.7s ease forwards;
}

.luxury-pan-image {
  animation: luxuryImageDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.luxury-pan-image--alt {
  animation-name: luxuryImageDriftAlt;
  animation-duration: 20s;
}

.soft-parallax {
  animation: luxuryImageDrift 18s ease-in-out infinite alternate;
}

.soft-parallax--alt {
  animation: luxuryImageDriftAlt 20s ease-in-out infinite alternate;
}

.hover-lift {
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.hover-lift:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 68px rgba(10, 31, 51, 0.14);
  filter: saturate(1.01);
}

.hover-zoom {
  transform: scale(1);
  transition: transform 0.5s ease;
}

.hover-lift:hover .hover-zoom,
.hover-lift:hover.hover-zoom {
  transform: scale(1.04);
}

.luxury-button {
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.luxury-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 31, 51, 0.12);
}

.site-nav a {
  transition: color 0.24s ease, opacity 0.24s ease;
}

.site-footer .footer-grid > div {
  opacity: 1;
  transform: none;
}

.js-enhanced .site-footer .footer-grid > div {
  opacity: 0;
  transform: translateY(24px);
}

.js-enhanced .site-footer .footer-grid > div.is-visible {
  animation: revealUpGlobal 0.8s ease forwards;
}

.js-enhanced .site-footer .footer-bottom,
.js-enhanced .site-footer .footer-bottom p {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-enter,
  .reveal-up,
  .premium-hero .reveal-up,
  .site-footer .footer-grid > div,
  .site-footer .footer-bottom,
  .site-footer .footer-bottom p,
  .luxury-reveal-section,
  .luxury-pan-image,
  .luxury-pan-image--alt,
  .soft-parallax,
  .soft-parallax--alt {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hover-lift,
  .hover-lift:hover,
  .luxury-button,
  .luxury-button:hover,
  .hover-zoom,
  .hover-lift:hover .hover-zoom,
  .hover-lift:hover.hover-zoom {
    transition: none !important;
    transform: none !important;
  }
}

.sector-projects__grid--expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-page .sector-project-card {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  cursor: pointer;
}

.sector-page .sector-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(10, 31, 51, 0.14);
  border-color: rgba(197, 160, 89, 0.28);
}

.sector-page .sector-project-card:focus-visible {
  outline: none;
  border-color: rgba(197, 160, 89, 0.48);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12), 0 28px 60px rgba(10, 31, 51, 0.14);
}

.sector-project-card__detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transition: max-height 0.34s ease, opacity 0.28s ease, margin-top 0.28s ease, padding-top 0.28s ease, border-color 0.28s ease;
}

.sector-project-card__detail p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.sector-project-card__detail-meta {
  display: grid;
  gap: 0.45rem;
}

.sector-project-card__detail-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  width: fit-content;
  background: rgba(197, 160, 89, 0.1);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.sector-project-card.is-active {
  transform: translateY(-10px);
  box-shadow: 0 32px 70px rgba(10, 31, 51, 0.16);
  border-color: rgba(197, 160, 89, 0.34);
}

.sector-project-card.is-active .sector-project-card__detail {
  max-height: 460px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-color: rgba(197, 160, 89, 0.22);
}

.estate-projects-page--luxury .estate-projects-grid-section {
  padding-bottom: 2rem;
}

.estate-projects-page--luxury .estate-project-list-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(10, 31, 51, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.estate-projects-page--luxury .estate-project-list-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(9, 26, 42, 0.66));
}

.estate-project-list-card__media {
  position: relative;
}

.estate-project-list-card__media img,
.sector-project-card img {
  transform: scale(1);
  transition: transform 0.45s ease;
}

.estate-projects-page--luxury .estate-project-list-card__body {
  padding: 1.25rem 1.2rem 1.3rem;
}

.estate-projects-page--luxury .estate-project-list-card__head h3 {
  font-size: 1.4rem;
}

.estate-projects-page--luxury .estate-project-list-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(10, 31, 51, 0.16);
}

.estate-projects-page--luxury .estate-project-list-card:hover .estate-project-list-card__media img,
.sector-page .sector-project-card:hover img,
.sector-page .sector-project-card.is-active img {
  transform: scale(1.035);
}

.estate-curation-band {
  padding-top: 0;
}

.estate-curation-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.estate-curation-band__grid article {
  padding: 1.35rem;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(247, 242, 232, 0.92));
  border: 1px solid rgba(16, 42, 67, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.estate-curation-band__grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(10, 31, 51, 0.12);
}

.estate-project-detail-page .estate-selected-unit__head {
  align-items: flex-start;
}

.estate-project-detail-page .estate-unit-table--inventory .estate-unit-row {
  grid-template-columns: 1.2fr 0.85fr 0.95fr 0.85fr;
}

.contact-page--luxury .estate-studio-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 1.4rem;
  align-items: center;
}

/* contact-page-luxury.html inspired contact layout */
.contact-page--luxury-v2 {
  background: linear-gradient(180deg, #061426 0%, #081a2f 42%, #0a1f37 100%);
}

.hero-luxury {
  position: relative;
  min-height: min(76vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-luxury__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 19, 34, 0.78), rgba(8, 19, 34, 0.34)),
    url("../images/service-real-estate.webp");
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
}

.hero-luxury__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(225, 185, 109, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(4, 11, 21, 0.16), rgba(4, 11, 21, 0.66));
}

.hero-luxury__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-luxury__label {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.36rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(227, 195, 133, 0.52);
  background: rgba(227, 195, 133, 0.12);
  color: #f3dd9d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero-luxury__title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
  color: #f7f9fc;
  text-shadow: 0 14px 30px rgba(3, 10, 20, 0.45);
}

.hero-luxury__line {
  width: min(170px, 48vw);
  height: 1px;
  margin: 1.12rem auto 1rem;
  background: linear-gradient(90deg, transparent, rgba(227, 195, 133, 0.9), transparent);
}

.hero-luxury__subtitle {
  margin: 0 auto;
  max-width: 64ch;
  color: rgba(241, 246, 255, 0.92);
  line-height: 1.9;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.contact-luxury {
  position: relative;
  padding: clamp(3.5rem, 8vh, 5.2rem) 0;
}

.contact-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(227, 195, 133, 0.12), transparent 28%),
    radial-gradient(circle at 84% 86%, rgba(111, 164, 227, 0.08), transparent 35%);
}

.container-luxury {
  position: relative;
  z-index: 1;
}

.section-header-luxury {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vh, 2.4rem);
}

.section-header-luxury__label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: #e3c385;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-header-luxury__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.contact-grid-luxury {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 0.82rem;
}

.info-card {
  padding: 1.1rem 1.12rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(2, 10, 18, 0.25);
  backdrop-filter: blur(10px);
}

.info-card__label {
  color: rgba(227, 195, 133, 0.95);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.32rem;
}

.info-card__value {
  display: inline-flex;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.info-card__detail {
  margin-top: 0.35rem;
  color: rgba(240, 246, 255, 0.78);
  font-size: 0.92rem;
}

.form-luxury {
  padding: clamp(1.1rem, 2.6vw, 1.7rem);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(251, 247, 238, 0.95));
  border: 1px solid rgba(210, 178, 115, 0.35);
  box-shadow: 0 28px 64px rgba(2, 10, 18, 0.25);
}

.form-luxury__header {
  margin-bottom: 1rem;
}

.form-luxury__title {
  margin: 0 0 0.42rem;
  color: #0e2a45;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.form-luxury__subtitle {
  margin: 0;
  color: rgba(18, 43, 68, 0.75);
  line-height: 1.75;
}

.form-row-luxury {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.form-group-luxury {
  display: grid;
  gap: 0.33rem;
  margin-bottom: 0.72rem;
}

.form-group-luxury label {
  color: #113454;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-group-luxury input,
.form-group-luxury select,
.form-group-luxury textarea {
  width: 100%;
  border-radius: 13px;
  border: 1px solid rgba(16, 42, 67, 0.18);
  padding: 0.67rem 0.75rem;
  background: #fff;
  color: #113454;
  font-family: inherit;
}

.form-group-luxury textarea {
  resize: vertical;
  min-height: 126px;
}

.form-group-luxury input:focus,
.form-group-luxury select:focus,
.form-group-luxury textarea:focus {
  outline: none;
  border-color: rgba(210, 178, 115, 0.72);
  box-shadow: 0 0 0 4px rgba(210, 178, 115, 0.14);
}

.btn-luxury {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  background: linear-gradient(135deg, #c8a15f, #b18847);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(177, 136, 71, 0.35);
}

.btn-luxury:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.contact-page--luxury-v2 .contact-form-status {
  margin-top: 0.72rem;
}

.map-luxury {
  padding: 0 0 clamp(3rem, 8vh, 4.6rem);
}

.map-container-luxury {
  padding: 0;
}

.map-placeholder-luxury {
  min-height: 220px;
  border-radius: 26px;
  border: 1px dashed rgba(227, 195, 133, 0.42);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  text-align: center;
}

.map-placeholder-luxury__icon {
  font-size: 1.35rem;
  color: #e3c385;
}

.map-placeholder-luxury__text {
  margin: 0.35rem 0 0;
  color: rgba(245, 250, 255, 0.85);
}

.contact-page--luxury .estate-studio-hero--contact-page {
  position: relative;
  isolation: isolate;
}

.contact-page--luxury .estate-studio-hero--contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(243, 221, 157, 0.2), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(243, 221, 157, 0.14), transparent 34%);
  opacity: 0.72;
}

.contact-page--luxury .estate-studio-hero--contact-page .estate-studio-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-page--luxury .estate-studio-hero--contact-page .estate-studio-hero__copy {
  max-width: 660px;
}

.contact-page--luxury .estate-studio-hero--contact-page .estate-studio-hero__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(243, 221, 157, 0.24), rgba(243, 221, 157, 0.08));
  border: 1px solid rgba(243, 221, 157, 0.4);
  color: #f7e8bc;
  letter-spacing: 0.02em;
}

.contact-page--luxury .estate-studio-hero--contact-page .estate-studio-hero__title {
  font-size: clamp(1.95rem, 3.25vw, 3.25rem);
  line-height: 1.2;
  max-width: 22ch;
  margin-bottom: 0.95rem;
  text-shadow: 0 10px 28px rgba(5, 18, 30, 0.38);
}

.contact-page--luxury .estate-studio-hero--contact-page .estate-studio-hero__copy > p:not(.eyebrow) {
  max-width: 60ch;
  color: rgba(241, 247, 255, 0.95);
  line-height: 1.9;
}

.contact-page--luxury .estate-studio-hero--contact-page .hero-trust-points {
  margin-top: 1rem;
  gap: 0.55rem;
}

.contact-page--luxury .estate-studio-hero--contact-page .hero-trust-points span {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.contact-page--luxury .estate-studio-hero--contact-page .hero-actions {
  margin-top: 1.35rem;
}

.contact-page--luxury .estate-studio-hero--contact-page .hero-actions .button {
  min-width: 168px;
}

.contact-hero-panel {
  display: grid;
  gap: 1rem;
}

.contact-hero-panel article,
.contact-presence__card {
  padding: 1.25rem 1.3rem;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(7, 24, 38, 0.16);
  backdrop-filter: blur(12px);
  color: #fff;
}

.contact-hero-panel article {
  animation: luxuryFloat 7s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.contact-hero-panel article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(243, 221, 157, 0.95), rgba(243, 221, 157, 0.08));
  opacity: 0.9;
}

.contact-hero-panel article:nth-child(2) {
  animation-delay: 1.2s;
}

.contact-hero-panel span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: #f3dd9d;
  font-weight: 800;
}

.contact-hero-panel strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.contact-hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-page--luxury .contact-studio__card,
.contact-page--luxury .contact-studio__form,
.contact-page--luxury .brand-link-card,
.contact-presence__card {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.contact-page--luxury .contact-studio__card:hover,
.contact-page--luxury .contact-studio__form:hover,
.contact-page--luxury .brand-link-card:hover,
.contact-presence__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(10, 31, 51, 0.16);
}

.contact-page--luxury .contact-studio__form {
  position: relative;
  overflow: hidden;
}

.contact-page--luxury .contact-studio__form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 96, 0.95), transparent);
}

.contact-page--luxury .contact-studio__form input:focus,
.contact-page--luxury .contact-studio__form select:focus,
.contact-page--luxury .contact-studio__form textarea:focus {
  outline: none;
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
  animation: luxuryPulse 1.8s ease;
}

.contact-icon {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.55rem;
  color: #f3dd9d;
  vertical-align: middle;
}

.contact-icon svg,
.contact-socials__icon svg {
  width: 100%;
  height: 100%;
}

.contact-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-socials__item {
  display: grid;
  gap: 0.18rem;
  padding: 0.95rem 0.85rem;
  margin: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-socials__icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  color: #f3dd9d;
}

.contact-socials strong {
  color: #fff;
}

.contact-socials small {
  color: rgba(255, 255, 255, 0.72);
}

.contact-presence {
  padding-top: 0;
}

.contact-presence__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-presence__card {
  background: linear-gradient(160deg, rgba(15, 42, 68, 0.94), rgba(26, 57, 87, 0.92));
  border-color: rgba(197, 160, 89, 0.18);
}

.contact-presence__card h2,
.contact-presence__card p {
  color: #fff;
}

.contact-presence__card--accent {
  background: linear-gradient(160deg, rgba(197, 160, 89, 0.18), rgba(255, 255, 255, 0.96));
}

.contact-presence__card--accent h2 {
  color: var(--brand-dark);
}

.contact-presence__card--accent p {
  color: var(--text-muted);
}

@media (max-width: 1180px) {
  .services-luxury-overview__grid,
  .estate-curation-band__grid,
  .contact-presence__grid,
  .contact-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-luxury-card {
    grid-column: auto;
  }

  .services-luxury-card--estate {
    grid-column: 1 / -1;
  }

  .contact-page--luxury .estate-studio-hero__inner {
    grid-template-columns: 1fr;
  }

  .contact-grid-luxury {
    grid-template-columns: 1fr;
  }

  .contact-page--luxury .estate-studio-hero--contact-page .estate-studio-hero__copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .services-luxury-overview__grid,
  .estate-curation-band__grid,
  .contact-presence__grid,
  .contact-socials {
    grid-template-columns: 1fr;
  }

  .services-luxury-card,
  .services-luxury-card--estate {
    min-height: auto;
    padding: 0.95rem;
  }

  .services-luxury-card--estate {
    display: flex;
  }

  .services-luxury-card--estate ul {
    margin: 0.5rem 0 0.55rem;
    padding: 0;
    border-inline-start: 0;
  }

  .services-luxury-card--estate .services-luxury-card__link {
    margin-top: auto;
    padding: 0.55rem 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .services-luxury-overview__intro {
    margin-bottom: 1.25rem;
  }

  .hero-luxury {
    min-height: 62vh;
  }

  .form-row-luxury {
    grid-template-columns: 1fr;
  }

  .contact-page--luxury .estate-studio-hero--contact-page .estate-studio-hero__title {
    max-width: none;
  }

  .contact-page--luxury .estate-studio-hero--contact-page .hero-actions .button {
    min-width: 0;
  }
}

.estate-studio-hero--real-estate-page {
  --inner-hero-image: url("../images/service-real-estate.webp");
  --inner-hero-position: center center;
  --inner-hero-mobile-position: 66% center;
}



.estate-studio-hero--infrastructure-page {
  --inner-hero-image: none;
  --inner-hero-position: center center;
  --inner-hero-mobile-position: 64% center;
}

.estate-studio-hero--maintenance-page {
  --inner-hero-image: url("../images/maintenance-new.jpg");
  --inner-hero-position: center center;
  --inner-hero-mobile-position: 64% center;
}

.estate-studio-hero--steel-page {
  --inner-hero-image: url("../images/steel-new.jpg");
  --inner-hero-position: center center;
  --inner-hero-mobile-position: 64% center;
}

@media (max-width: 960px) {
  .estate-studio-hero--inner .estate-studio-hero__inner {
    padding-inline: 7%;
    min-height: auto;
    padding-block: 7.2rem 1.8rem;
  }

  .estate-studio-hero--inner .estate-studio-hero__copy {
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: 0;
    padding: 0 0.8rem 0 0;
  }

  .estate-studio-hero--inner .estate-studio-hero__title,
  .estate-studio-hero--inner .estate-studio-hero__copy h1 {
    max-width: 470px;
    font-size: clamp(1.82rem, 3.6vw, 2.4rem);
  }

  .estate-studio-hero--inner .estate-studio-hero__copy p:not(.eyebrow),
  .estate-studio-hero--inner .estate-studio-hero__copy p {
    max-width: 37ch;
    font-size: 0.94rem;
  }

  .estate-studio-hero--about-page .estate-studio-hero__copy {
    min-height: auto;
    padding-bottom: 0.4rem;
  }

  .about-hero-stage {
    display: grid;
    gap: 1rem;
  }

  .about-hero-stage__eyebrow,
  .about-hero-stage__wall {
    position: static;
  }

  .about-hero-stage__wall {
    width: min(100%, 360px);
    margin-inline: auto 0;
  }

}

@media (max-width: 760px) {
  .estate-studio-hero--inner {
    min-height: 100svh;
  }

  .estate-studio-hero--inner::before {
    background-position: var(--inner-hero-mobile-position);
  }

  .estate-studio-hero--inner::after {
    background:
      linear-gradient(180deg, rgba(7, 23, 38, 0.24) 0%, rgba(7, 23, 38, 0.5) 42%, rgba(7, 23, 38, 0.86) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  }

  .estate-studio-hero--services-page::after {
    background:
      linear-gradient(180deg, rgba(7, 23, 38, 0.08) 0%, rgba(7, 23, 38, 0.24) 42%, rgba(7, 23, 38, 0.48) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
  }

  .about-hero-stage__mini {
    margin: 0.62rem auto 0;
    padding-top: 0.05rem;
  }


  .estate-studio-hero--inner .estate-studio-hero__inner {
    width: min(100%, calc(100% - 1.1rem));
    min-height: 100svh;
    padding-inline: 0;
    padding-block: 7rem 2.55rem;
    align-items: flex-end;
  }

  .estate-studio-hero--inner .estate-studio-hero__copy {
    width: calc(100% - 1rem);
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    margin-top: auto;
    padding: 0.95rem 1rem 1.05rem;
    gap: 0.48rem;
    position: relative;
  }

  .estate-studio-hero--inner .estate-studio-hero__copy::after {
    content: "";
    position: absolute;
    inset: -0.6rem -0.5rem -0.55rem;
    z-index: -1;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(8, 21, 34, 0.08), rgba(8, 21, 34, 0.34) 42%, rgba(8, 21, 34, 0.52) 100%),
      radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 62%);
    box-shadow: 0 14px 34px rgba(6, 18, 30, 0.12);
    pointer-events: none;
  }

  .estate-studio-hero--inner .eyebrow {
    padding: 0.28rem 0.66rem;
    font-size: 0.68rem;
  }

  .estate-studio-hero--inner .estate-studio-hero__title,
  .estate-studio-hero--inner .estate-studio-hero__copy h1 {
    max-width: none;
    font-size: clamp(1.56rem, 5.9vw, 1.94rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    text-shadow: 0 10px 22px rgba(6, 18, 30, 0.52);
  }

  .estate-studio-hero--inner .estate-studio-hero__copy p:not(.eyebrow),
  .estate-studio-hero--inner .estate-studio-hero__copy p {
    max-width: none;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.58;
    text-shadow: 0 8px 18px rgba(6, 18, 30, 0.46);
  }
}

/* About Page Sections */
.about-company-panel {
  margin-top: 0;
  padding-top: clamp(3.15rem, 4.2vw, 4.2rem);
  padding-bottom: clamp(2.25rem, 3.2vw, 3rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 160, 89, 0.07), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(16, 42, 67, 0.05), transparent 32%);
}

.about-company-panel__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(1.2rem, 2.1vw, 1.95rem);
  padding: clamp(1.65rem, 2.5vw, 2.2rem);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.96)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.09), transparent 40%);
  border: 1px solid rgba(16, 42, 67, 0.09);
  box-shadow:
    0 12px 28px rgba(11, 34, 56, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.62) inset;
}

.about-company-panel__copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.about-company-panel__history {
  display: grid;
  gap: 0.85rem;
}

.about-company-panel__story-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0.24rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 86, 0.28);
  background: rgba(199, 163, 86, 0.1);
  color: #7d5c20 !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.about-company-panel__history h2 {
  margin: 0 0 0.1rem;
  max-width: 22ch;
  color: var(--navy-main);
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  font-weight: 800;
  line-height: 1.38;
  text-wrap: balance;
}

.about-company-panel__history p {
  margin: 0;
  color: #4d5d6b;
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  font-weight: 500;
  line-height: 1.9;
}

.about-company-panel__history .about-company-panel__history-lead {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d2d46, #153f5d);
  color: #fff;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 600;
  line-height: 1.85;
  box-shadow: 0 16px 32px rgba(9, 35, 55, 0.16);
}

.about-company-panel__history-lead .home-company-panel__brand {
  color: #efd17d;
}

.about-company-panel__note {
  margin: 0;
  padding-inline-start: 1.05rem;
  border-inline-start: 2px solid rgba(197, 160, 89, 0.4);
  color: #53606d;
  font-size: 0.96rem;
  line-height: 1.86;
}

.about-company-panel__copy h2,
.about-story-stage__copy h2,
.about-values-stage__copy h2 {
  margin: 0;
  font-size: clamp(1.62rem, 2.28vw, 2.2rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: 21ch;
  font-weight: 800;
}

.about-chip-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem 0.78rem;
}

.about-chip-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.36rem 0.84rem;
  border-radius: 999px;
  background: rgba(199, 163, 86, 0.12);
  border: 1px solid rgba(199, 163, 86, 0.28);
  color: #7d5c20;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.about-company-panel__stats,
.about-company-panel__insight,
.about-story-stage__cards,
.about-vision-stage__grid,
.about-framework-stage__grid,
.about-values-stage__grid {
  display: grid;
  gap: 1rem;
}

.about-company-panel__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-company-panel__insight {
  align-content: start;
  gap: 0.95rem;
  padding: clamp(1.2rem, 2vw, 1.95rem) clamp(0.95rem, 1.3vw, 1.3rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5));
  border-radius: 20px;
  border: 1px solid rgba(16, 42, 67, 0.09);
  box-shadow: 0 8px 20px rgba(11, 34, 56, 0.06);
}

.about-company-panel__label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0.28rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 86, 0.28);
  background: rgba(199, 163, 86, 0.1);
  color: #7d5c20;
  font-size: 0.9rem;
  font-weight: 700;
}

.about-company-panel__insight h3 {
  margin: 0;
  color: var(--navy-main);
  font-size: clamp(1.75rem, 2.55vw, 2.25rem);
  line-height: 1.3;
  text-wrap: balance;
}

.about-company-panel__insight > p:not(.about-company-panel__label) {
  margin: 0;
  max-width: 36ch;
  color: #4d5b68;
  font-size: 1rem;
  line-height: 1.85;
}

.about-company-panel__points {
  display: grid;
  gap: 0.7rem;
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
}

.about-company-panel__points li {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 42, 67, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-main);
  font-weight: 700;
  font-size: 0.98rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.about-company-panel__points li::before {
  content: "—";
  margin-left: 0.55rem;
  color: var(--gold-main);
}

.about-company-stat,
.about-story-stage__cards article,
.about-vision-stage__card,
.about-framework-stage__card,
.about-values-stage__grid article {
  padding: 1.35rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-company-stat strong,
.about-values-stage__grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-main);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.about-company-stat span,
.about-story-stage__cards span,
.about-vision-stage__card p,
.about-framework-stage__card p,
.about-values-stage__grid span {
  color: var(--text-muted);
  line-height: 1.8;
}

.about-story-stage,
.about-framework-stage,
.about-values-stage {
  position: relative;
}

.about-values-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(216, 181, 100, 0.05)),
    radial-gradient(circle at 88% 12%, rgba(197, 160, 89, 0.08), transparent 40%);
  padding-top: clamp(2.2rem, 3.6vw, 3rem);
  padding-bottom: clamp(2rem, 3.2vw, 2.8rem);
}

.about-story-stage__layout,
.about-values-stage__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(1.4rem, 2.2vw, 2.2rem);
  align-items: start;
}

.about-values-stage__copy {
  display: grid;
  align-content: start;
  gap: 0.82rem;
}

.about-values-stage__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.18rem;
  padding: 0.26rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  background: rgba(197, 160, 89, 0.1);
  color: #7d5c20;
  font-weight: 700;
}

.about-values-stage__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 38ch;
  color: #4f5c69;
  font-size: 1.01rem;
  line-height: 1.9;
}

.about-story-stage__cards,
.about-values-stage__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-values-stage__grid {
  gap: clamp(0.88rem, 1.4vw, 1.12rem);
}

.about-story-stage__cards article::before,
.about-values-stage__grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 0.9rem;
  background: linear-gradient(90deg, var(--gold-main), rgba(197, 160, 89, 0));
}

.about-identity-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(194, 160, 86, 0.08)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.12), transparent 30%);
}

.about-identity-stage .section-heading {
  max-width: 860px;
}

.about-identity-stage .section-heading p:last-child {
  max-width: 70ch;
  color: var(--text-muted);
}

.about-identity-stage__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.about-identity-stage__card {
  min-height: 100%;
  padding: 1.3rem 1.15rem 1.2rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 234, 0.92)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 40%);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-identity-stage__card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--gold-main);
  font-weight: 800;
}

.about-identity-stage__card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.14rem;
  line-height: 1.55;
}

.about-identity-stage__card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.about-identity-stage__card--featured {
  background: linear-gradient(160deg, rgba(10, 31, 51, 0.98), rgba(18, 43, 67, 0.95));
  box-shadow: 0 26px 54px rgba(10, 31, 51, 0.18);
}

.about-identity-stage__card--featured span,
.about-identity-stage__card--featured h3 {
  color: #fff;
}

.about-identity-stage__card--featured p {
  color: rgba(255, 255, 255, 0.8);
}

.about-story-stage__cards strong,
.about-vision-stage__card h3,
.about-framework-stage__card h3 {
  display: block;
  margin: 0 0 0.55rem;
}

.about-vision-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(197, 160, 89, 0.1), transparent 27%),
    radial-gradient(circle at 88% 86%, rgba(16, 42, 67, 0.06), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f6f2ea 100%);
  padding-top: clamp(2.8rem, 4.6vw, 3.8rem);
  padding-bottom: clamp(2.8rem, 4.4vw, 3.7rem);
}

.about-vision-stage::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: -220px;
  left: 8%;
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(197, 160, 89, 0.025),
    0 0 0 108px rgba(197, 160, 89, 0.018);
  pointer-events: none;
}

.about-vision-stage .container {
  position: relative;
  z-index: 1;
}

.about-vision-stage .section-heading {
  margin-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

.about-vision-stage .section-heading h2 {
  position: relative;
  max-width: 900px;
  padding-bottom: 1rem;
}

.about-vision-stage .section-heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to left, #c7a356, rgba(199, 163, 86, 0.08));
}

.about-vision-stage__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.45rem);
  align-items: stretch;
}

.about-vision-stage__card {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  padding: clamp(1.45rem, 2.1vw, 1.85rem);
  overflow: hidden;
  border-radius: 24px;
  border-color: rgba(16, 42, 67, 0.1);
  border-top: 3px solid rgba(197, 160, 89, 0.72);
  background:
    radial-gradient(circle at 0 100%, rgba(197, 160, 89, 0.08), transparent 38%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(250, 248, 243, 0.96));
  box-shadow:
    0 20px 45px rgba(12, 35, 58, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-vision-stage__card::after {
  content: "";
  position: absolute;
  left: -42px;
  bottom: -58px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(197, 160, 89, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1), transparent 68%);
  box-shadow: 0 0 0 26px rgba(197, 160, 89, 0.025);
}

.about-vision-stage__card--accent::after {
  border-color: rgba(216, 179, 94, 0.18);
  background: radial-gradient(circle, rgba(216, 179, 94, 0.12), transparent 68%);
  box-shadow: 0 0 0 26px rgba(216, 179, 94, 0.035);
}

.about-vision-stage__card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 56px rgba(12, 35, 58, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.about-vision-stage__card h3 {
  margin-bottom: 0.75rem;
  line-height: 1.58;
}

.about-vision-stage__card p {
  color: rgba(34, 50, 68, 0.82);
  line-height: 1.85;
}

.about-chairman-stage {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 86% 12%, rgba(197, 160, 89, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(216, 181, 100, 0.07));
}

.about-chairman-stage__card {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 241, 232, 0.94)),
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 34%);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow:
    0 28px 65px rgba(11, 34, 56, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.76) inset;
}

.about-chairman-stage__visual {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.about-chairman-stage__portrait {
  position: relative;
  margin: 0;
  height: auto;
  aspect-ratio: 843 / 1264;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(242, 236, 225, 0.95), rgba(223, 213, 194, 0.88));
  box-shadow: var(--shadow-soft);
}

.about-chairman-stage__portrait::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 27%;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 24, 45, 0.88), #021426 76%);
  pointer-events: none;
}

.about-chairman-stage__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: inherit;
  box-shadow:
    inset 0 -120px 110px rgba(2, 20, 39, 0.18),
    inset 0 0 0 1px rgba(197, 160, 89, 0.12);
  pointer-events: none;
  z-index: 3;
}

.about-chairman-stage__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.075);
  transform-origin: center 58%;
  filter: contrast(1.04) saturate(1.04) sepia(0.025);
}

.about-chairman-stage__content {
  position: relative;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: clamp(0.65rem, 1.4vw, 1.2rem) clamp(0.9rem, 2.2vw, 2rem);
}

.about-chairman-stage__content::before {
  content: "“";
  position: absolute;
  top: 0.15rem;
  left: 0.65rem;
  color: rgba(197, 160, 89, 0.12);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 1;
  pointer-events: none;
}

.about-chairman-stage__content .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.15rem;
  padding: 0.34rem 0.85rem;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.11);
  color: #7d5c20;
  font-size: 0.9rem;
  font-weight: 700;
}

.about-chairman-stage__content h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1.3;
  text-wrap: balance;
}

.about-chairman-stage__quote {
  margin: 0;
  max-width: 58ch;
  padding-inline-start: 1.25rem;
  border-inline-start: 2px solid rgba(197, 160, 89, 0.34);
  color: #596b82;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.92;
}

.about-chairman-stage__quote p {
  margin: 0;
}

.about-chairman-stage__quote p + p {
  position: relative;
  margin-top: 1.05rem;
  padding-top: 1.05rem;
}

.about-chairman-stage__quote p + p::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 64px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.92), rgba(197, 160, 89, 0.24));
}

.about-chairman-stage__quote p.is-typewriter-pending,
.about-chairman-stage__quote p.is-typewriter-running {
  white-space: pre-wrap;
}

.about-chairman-stage__signature strong.is-typewriter-pending,
.about-chairman-stage__signature strong.is-typewriter-running,
.about-chairman-stage__signature-title.is-typewriter-pending,
.about-chairman-stage__signature-title.is-typewriter-running {
  display: inline-block;
  white-space: pre-wrap;
  opacity: 0.18;
  transform: translateY(8px);
}

.about-chairman-stage__signature strong.is-typewriter-running,
.about-chairman-stage__signature-title.is-typewriter-running {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.66s ease,
    transform 0.66s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-chairman-stage__signature {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  width: 100%;
  gap: 0.1rem;
  margin: 0;
  padding: 0.66rem 1.25rem 0.72rem;
  border: 0;
  border-top: 1px solid rgba(197, 160, 89, 0.5);
  border-bottom: 1.5px solid rgba(197, 160, 89, 0.95);
  border-radius: 0 0 27px 27px;
  background:
    radial-gradient(circle at 50% 8%, rgba(197, 160, 89, 0.1), transparent 38%),
    linear-gradient(180deg, #03182d, #021426 100%);
  box-shadow: 0 -10px 24px rgba(2, 20, 39, 0.16);
  text-align: center;
}

.about-chairman-stage__signature::before,
.about-chairman-stage__signature::after {
  content: "";
  position: absolute;
  top: 2.18rem;
  width: 29%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.96));
}

.about-chairman-stage__signature::before {
  left: 8%;
}

.about-chairman-stage__signature::after {
  right: 8%;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.96), transparent);
}

.about-chairman-stage__signature-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 0.22rem;
  border-radius: 50%;
  overflow: hidden;
  background: #03182d;
  border: 1px solid rgba(246, 214, 128, 0.75);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.22),
    0 0 0 5px rgba(2, 20, 39, 0.34);
}

.about-chairman-stage__signature-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
  filter: saturate(1.05) contrast(1.04);
}

.about-chairman-stage__signature strong {
  color: #fff;
  font-size: clamp(1.48rem, 2.35vw, 2.05rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.about-chairman-stage__signature-title {
  color: #d7b66d;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.about-vision-stage__card span,
.about-framework-stage__card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--gold-main);
  font-weight: 800;
}

.about-vision-stage__card span {
  min-height: 30px;
  align-items: center;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.24);
  background: rgba(197, 160, 89, 0.08);
}

.about-vision-stage__card h3,
.about-framework-stage__card h3 {
  font-size: 1.22rem;
  line-height: 1.55;
}

.about-vision-stage__card--accent,
.about-framework-stage__card--featured {
  background: linear-gradient(160deg, rgba(10, 31, 51, 0.98), rgba(18, 43, 67, 0.95));
  box-shadow: 0 26px 54px rgba(10, 31, 51, 0.18);
}

.about-vision-stage__card--accent span,
.about-vision-stage__card--accent h3,
.about-vision-stage__card--accent p,
.about-framework-stage__card--featured span,
.about-framework-stage__card--featured h3,
.about-framework-stage__card--featured p {
  color: #fff;
}

.about-vision-stage__card--accent p,
.about-framework-stage__card--featured p {
  color: rgba(255, 255, 255, 0.8);
}

.about-vision-stage__card--accent {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: #d8b35e;
  background:
    radial-gradient(circle at 10% 90%, rgba(216, 179, 94, 0.14), transparent 38%),
    linear-gradient(155deg, #0a2035, #183952);
  box-shadow:
    0 30px 62px rgba(10, 31, 51, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.about-vision-stage__card--accent:hover {
  transform: translateY(-15px);
  box-shadow: 0 36px 70px rgba(10, 31, 51, 0.25);
}

.about-vision-stage__card--accent span {
  border-color: rgba(216, 179, 94, 0.42);
  background: rgba(216, 179, 94, 0.1);
  color: #f0d186;
}

.about-framework-stage__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-framework-stage {
  padding-top: clamp(2.7rem, 4.4vw, 3.7rem);
  padding-bottom: clamp(3rem, 4.8vw, 4rem);
  background:
    radial-gradient(circle at 12% 85%, rgba(16, 42, 67, 0.045), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(246, 242, 234, 0.82));
}

.about-framework-stage .section-heading {
  margin-bottom: clamp(1.8rem, 2.8vw, 2.35rem);
}

.about-framework-stage .section-heading h2 {
  position: relative;
  max-width: 1050px;
  padding-bottom: 0.95rem;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.3;
}

.about-framework-stage .section-heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to left, #c7a356, rgba(199, 163, 86, 0.08));
}

.about-framework-stage__grid {
  gap: clamp(0.95rem, 1.5vw, 1.25rem);
}

.about-framework-stage__card {
  min-height: 230px;
  padding: clamp(1.25rem, 1.8vw, 1.55rem);
  border-top: 3px solid rgba(197, 160, 89, 0.72);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 100%, rgba(197, 160, 89, 0.06), transparent 38%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(12, 35, 58, 0.075);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-framework-stage__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(12, 35, 58, 0.11);
}

.about-framework-stage__card span,
.about-framework-stage__card--featured span {
  color: #c7a356;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.about-framework-stage__card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
}

.about-framework-stage__card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.85;
}

.about-framework-stage__card--featured {
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: #d3ad58;
  background:
    radial-gradient(circle at 8% 90%, rgba(211, 173, 88, 0.1), transparent 40%),
    linear-gradient(155deg, #0a2035, #1a3851);
  box-shadow: 0 18px 38px rgba(10, 31, 51, 0.14);
}

.about-framework-stage__card--featured:hover {
  box-shadow: 0 24px 46px rgba(10, 31, 51, 0.18);
}

.about-values-stage {
  padding-top: clamp(3.2rem, 5.2vw, 4.5rem);
  border-top: 1px solid rgba(16, 42, 67, 0.055);
}

.about-values-stage__layout {
  align-items: center;
  gap: clamp(2rem, 3.5vw, 3.5rem);
}

.about-values-stage__copy {
  align-content: center;
  padding-inline: clamp(0rem, 1vw, 0.7rem);
}

.about-values-stage__copy h2 {
  position: relative;
  max-width: 18ch;
  padding-bottom: 0.9rem;
}

.about-values-stage__copy h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to left, #c7a356, rgba(199, 163, 86, 0.08));
}

.about-values-stage__grid article {
  min-height: 100%;
  padding: clamp(1.15rem, 1.6vw, 1.35rem);
  border-color: rgba(16, 42, 67, 0.085);
  border-top: 2px solid rgba(197, 160, 89, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.92)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.06), transparent 42%);
  box-shadow: 0 12px 28px rgba(12, 35, 58, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-values-stage__grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(12, 35, 58, 0.09);
}

.about-values-stage__grid strong {
  margin-bottom: 0.45rem;
  font-size: clamp(1.24rem, 1.72vw, 1.55rem);
  line-height: 1.45;
}

.about-values-stage__grid span {
  color: rgba(34, 50, 68, 0.84);
  line-height: 1.86;
}

.about-cta-stage {
  padding-top: 1.1rem;
  padding-bottom: 1.55rem;
}

.about-cta-stage .cta-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.about-cta-stage .cta-block {
  gap: 1.1rem;
  min-height: 284px;
  padding: 1.45rem 1.65rem;
  border-color: rgba(146, 175, 198, 0.18);
  background:
    linear-gradient(158deg, rgba(16, 44, 70, 0.74), rgba(8, 31, 50, 0.8)),
    radial-gradient(circle at 84% 12%, rgba(230, 200, 120, 0.12), transparent 42%);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.about-cta-stage .cta-block__content {
  gap: 0.62rem;
  padding-top: 1rem;
  align-self: end;
}

.about-cta-stage .cta-block__content .eyebrow {
  background: rgba(230, 200, 120, 0.1);
  border-color: rgba(230, 200, 120, 0.22);
  color: rgba(246, 222, 176, 0.96);
}

.about-cta-stage .cta-block__content h2 {
  max-width: min(100%, 30rem);
  font-size: clamp(1.32rem, 1.58vw, 1.62rem);
  line-height: 1.42;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
}

.about-cta-stage .cta-block__content p:last-child {
  max-width: min(100%, 34rem);
  color: rgba(238, 245, 252, 0.88);
  font-size: clamp(1rem, 1.02vw, 1.06rem);
  line-height: 1.9;
  text-wrap: pretty;
}

.about-cta-stage .cta-block__actions {
  max-width: 332px;
  padding: 0.62rem;
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.085),
    0 9px 18px rgba(0, 0, 0, 0.07);
}

.about-cta-stage .cta-block__actions .cta-actions {
  gap: 0.5rem;
}

.about-cta-stage .cta-block__actions .button {
  min-height: 46px;
}

.about-cta-stage .cta-actions .button-primary.light {
  color: #061a2e;
  border-color: rgba(240, 213, 150, 0.44);
  box-shadow: 0 8px 18px rgba(230, 200, 120, 0.16);
}

.about-cta-stage .cta-actions .button-secondary.light {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(248, 252, 255, 0.92);
  background: rgba(255, 255, 255, 0.022);
}

.about-cta-stage .cta-actions .button-secondary.light:hover {
  border-color: rgba(230, 200, 120, 0.28);
  color: #ffffff;
  background: rgba(230, 200, 120, 0.06);
}

.about-signature-page + .site-footer {
  padding-top: 2.1rem;
  padding-bottom: 1.3rem;
  background:
    linear-gradient(180deg, rgba(6, 30, 52, 0.98), rgba(4, 23, 40, 1)),
    #072340;
}

.about-signature-page + .site-footer::after {
  background:
    radial-gradient(circle at 14% 18%, rgba(197, 160, 89, 0.08), transparent 24%),
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.035), transparent 20%);
}

.about-signature-page + .site-footer .footer-grid {
  gap: 2.4rem;
}

.about-signature-page + .site-footer .footer-column--brand p {
  line-height: 1.96;
  color: rgba(239, 246, 252, 0.86);
}

.about-signature-page + .site-footer .footer-column h3 {
  color: rgba(255, 255, 255, 0.96);
}

.about-signature-page + .site-footer .footer-column--links a,
.about-signature-page + .site-footer .footer-column--contact a {
  color: rgba(242, 248, 255, 0.9);
}

.about-signature-page + .site-footer .footer-column--links a:hover,
.about-signature-page + .site-footer .footer-column--contact a:hover {
  color: #ecd7a7;
}

.about-signature-page + .site-footer .footer-column--contact p,
.about-signature-page + .site-footer .footer-bottom p {
  color: rgba(227, 236, 245, 0.78);
}

.about-signature-page + .site-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  margin-top: 1.7rem;
  padding-top: 1.15rem;
  padding-bottom: 1rem;
}

@media (max-width: 1180px) {
  .about-identity-stage__grid,
  .about-story-stage__cards,
  .about-vision-stage__grid,
  .about-values-stage__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-framework-stage__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .about-company-panel__card,
  .about-chairman-stage__card,
  .about-story-stage__layout,
  .about-values-stage__layout {
    grid-template-columns: 1fr;
  }

  .about-identity-stage__grid,
  .about-company-panel__stats,
  .about-story-stage__cards,
  .about-vision-stage__grid,
  .about-framework-stage__grid,
  .about-values-stage__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .about-company-panel {
    margin-top: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
  }

  .about-company-panel__card {
    border-radius: 26px;
    padding: 1rem;
  }

  .about-vision-stage__card,
  .about-vision-stage__card--accent,
  .about-vision-stage__card--accent:hover {
    min-height: auto;
    transform: none;
  }

  .about-vision-stage .section-heading h2::after {
    width: 56px;
  }

  .about-framework-stage .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .about-framework-stage__card {
    min-height: auto;
  }

  .about-values-stage__layout {
    gap: 1.5rem;
  }

  .about-chairman-stage__card {
    border-radius: 26px;
    padding: 1rem;
  }

  .about-chairman-stage__portrait {
    height: auto;
  }

  .about-chairman-stage__signature {
    padding: 0.64rem 0.9rem 0.7rem;
  }

  .about-chairman-stage__signature strong {
    font-size: 1.35rem;
  }

  .about-chairman-stage__signature::before,
  .about-chairman-stage__signature::after {
    top: 1.85rem;
    width: 27%;
  }

  .about-chairman-stage__signature-mark {
    width: 47px;
    height: 47px;
    margin-top: 0;
  }

  .about-chairman-stage__content {
    padding: 1rem 0.35rem 0.45rem;
  }

  .about-chairman-stage__content::before {
    top: 0.3rem;
    left: 0;
    font-size: 5rem;
  }

  .about-chairman-stage__portrait img {
    min-height: 0;
  }

  .about-chairman-stage__quote {
    padding-inline-start: 0.9rem;
    font-size: 0.93rem;
    line-height: 1.9;
  }

  .about-company-panel__note {
    padding-inline-start: 0.85rem;
    font-size: 0.92rem;
  }

  .about-identity-stage__grid,
  .about-company-panel__stats,
  .about-story-stage__cards,
  .about-vision-stage__grid,
  .about-framework-stage__grid,
  .about-values-stage__grid {
    grid-template-columns: 1fr;
  }

  .about-company-stat,
  .about-story-stage__cards article,
  .about-vision-stage__card,
  .about-framework-stage__card,
  .about-values-stage__grid article {
    padding: 1.15rem;
  }
}

.values-wall-panel {
position: absolute;
right: -118px;
top: 32.5%;
transform: translate(0, -50%) perspective(1450px) rotateY(-60deg) rotateX(.2deg) scale(.84);
transform-origin: right center;
width: clamp(292px, 21.6vw, 360px);
padding: 22px 18px 20px;
direction: rtl;
text-align: center;
border-radius: 2px;
background: linear-gradient(180deg, rgba(248, 237, 214, 0.12), rgba(248, 237, 214, 0.06));
border: 3px solid rgba(255, 244, 220, 0.95);
box-shadow:
0 10px 22px rgba(12, 11, 10, .2),
inset 0 0 0 1px rgba(236, 230, 219, .46),
inset 0 14px 22px rgba(255, 248, 234, 0.12);
z-index: 8;
backdrop-filter: blur(1.5px);
-webkit-backdrop-filter: blur(1.5px);
}

.values-wall-panel::before {
content: "";
position: absolute;
inset: 10px;
border: 1px solid #fffaf2;
pointer-events: none;
}

.values-wall-panel::after {
content: "";
position: absolute;
inset: 15px;
border: 1px solid rgba(255, 250, 242, .82);
pointer-events: none;
}

.values-wall-panel h3 {
margin: 0 0 15px;
font-size: clamp(31px, 2.35vw, 42px);
font-weight: 900;
letter-spacing: .004em;
color: #fffaf2;
text-shadow: 0 1px 2px rgba(0, 0, 0, .16);
text-shadow: 0 1px 0 rgba(255, 255, 255, .55);
text-rendering: geometricPrecision;
transform: none;
backface-visibility: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.values-wall-panel ul {
list-style: none;
margin: 0 auto;
padding: 0;
display: grid;
gap: 11px;
width: fit-content;
}

.values-wall-panel li {
display: grid;
grid-template-columns: 32px auto;
align-items: center;
justify-content: start;
column-gap: 16px;
padding-inline: 0;
font-size: clamp(21px, 1.5vw, 28px);
font-weight: 800;
line-height: 1.42;
color: #fffaf2;
text-shadow:
0 1px 2px rgba(0,0,0,.14);
text-rendering: geometricPrecision;
transform: none;
backface-visibility: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.values-wall-panel li span:last-child {
min-width: clamp(118px, 9.5vw, 156px);
text-align: right;
}

.values-wall-panel__icon {
width: 32px;
height: 32px;
display: inline-grid;
place-items: center;
flex: 0 0 32px;
border-radius: 50%;
color: #0f0d0b;
border: 1px solid rgba(146, 137, 121, .95);
background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(239, 236, 229, .94));
font-size: 16px;
font-weight: 900;
box-shadow: 0 1px 3px rgba(16, 14, 11, .20), inset 0 1px 0 rgba(255,255,255,.92);
transform: translateZ(0);
filter: none;
}

.about-bottom-values-strip {
position: absolute;
right: auto;
right: 110px;
left: auto;
bottom: 68px;
transform: none;
width: min(49%, 900px);
padding: 20px 24px;
direction: rtl;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0;
border-radius: 1px;
background: transparent !important;
border: 0;
box-shadow:
none;
z-index: 6;
isolation: isolate;
}

.about-bottom-values-strip::before {
content: "";
position: absolute;
left: 10%;
right: 10%;
bottom: 8px;
height: 14px;
border: 0;
background: radial-gradient(
  ellipse at center,
  rgba(255, 215, 132, 0.28) 0%,
  rgba(255, 215, 132, 0.12) 46%,
  rgba(255, 215, 132, 0) 78%
);
opacity: 1;
box-shadow: 0 0 18px rgba(255, 206, 112, 0.2);
pointer-events: none;
z-index: 0;
}

.about-bottom-values-strip::after {
content: "";
position: absolute;
left: 9%;
right: 9%;
bottom: 11px;
height: 4px;
border-radius: 999px;
background:
linear-gradient(
  90deg,
  rgba(255, 224, 158, 0.01) 0%,
  rgba(255, 205, 106, 0.9) 16%,
  rgba(255, 250, 232, 0.94) 50%,
  rgba(255, 205, 106, 0.9) 84%,
  rgba(255, 224, 158, 0.01) 100%
);
box-shadow:
0 0 8px rgba(255, 206, 112, 0.58),
0 0 16px rgba(255, 206, 112, 0.36),
0 0 28px rgba(255, 206, 112, 0.2),
0 1px 0 rgba(255, 246, 220, 0.44);
pointer-events: none;
z-index: 1;
}

.estate-model,
.hero-model,
.estate-studio-hero__model {
position: relative;
z-index: 10;
}

.about-bottom-value-card {
position: relative;
min-height: 82px;
display: grid;
place-items: center;
justify-items: center;
align-content: center;
gap: 7px;
text-align: center;
color: #2f261b;
z-index: 2;
overflow: hidden;
}

.about-bottom-value-card:not(:last-child)::after {
content: none;
}

.about-bottom-value-card,
.about-bottom-value-card:not(:last-child) {
border: 0 !important;
box-shadow: none !important;
background: transparent !important;
}

.about-bottom-value-card::before,
.about-bottom-value-card::after,
.about-bottom-value-card:not(:last-child)::after {
display: none !important;
}

.about-bottom-value-card::before {
content: "";
display: block !important;
position: absolute;
left: 14%;
right: 14%;
bottom: -4px;
height: 34px;
pointer-events: none;
z-index: 0;
background: radial-gradient(
  ellipse at center bottom,
  rgba(255, 220, 145, 0.62) 0%,
  rgba(255, 220, 145, 0.22) 42%,
  rgba(255, 220, 145, 0) 78%
);
}

.about-bottom-value-card__icon {
width: clamp(27px, 2.05vw, 35px);
height: clamp(27px, 2.05vw, 35px);
display: inline-flex;
align-items: center;
justify-content: center;
margin-inline: auto;
line-height: 1;
color: #3f301f;
text-shadow: none;
position: relative;
z-index: 1;
}

.about-bottom-value-card__icon svg {
width: 100%;
height: 100%;
display: block;
margin: 0 auto;
stroke-width: 1.9;
filter:
drop-shadow(0 0 10px rgba(255, 215, 128, 0.72))
drop-shadow(0 0 16px rgba(255, 215, 128, 0.3))
drop-shadow(0 1px 0 rgba(255, 244, 214, 0.58));
}


.about-bottom-value-card h4 {
margin: 0;
width: 100%;
font-size: clamp(12px, .92vw, 15px);
font-weight: 900;
color: #2d2419;
letter-spacing: -.01em;
transform: none;
text-shadow:
0 0 12px rgba(255, 215, 128, 0.46),
0 0 18px rgba(255, 215, 128, 0.22),
0 1px 0 rgba(255, 244, 214, 0.46);
text-align: center;
position: relative;
z-index: 1;
}

.about-bottom-value-card__icon {
color: #3f301f !important;
}

@media (max-width: 900px) {
.about-hero-stage {
display: grid;
gap: 0.85rem;
justify-items: center;
}

.about-hero-stage__wall {
position: relative;
top: auto;
right: auto;
width: min(100%, 420px);
max-width: 420px;
margin: 0 auto;
padding: 0.75rem 0.5rem 0.2rem;
}

.values-wall-panel {
position: relative;
right: auto;
top: auto;
transform: none;
width: min(92%, 360px);
margin: 24px auto 0;
}

.about-bottom-values-strip {
position: relative;
right: auto;
left: auto;
bottom: auto;
transform: none;
width: min(92%, 560px);
margin: 28px auto 0;
grid-template-columns: repeat(2, 1fr);
padding: 22px;
gap: 14px;
}

.about-bottom-value-card {
min-height: 96px;
border: 1px solid rgba(190, 150, 76, 0.18);
border-radius: 12px;
background: rgba(255,255,255,0.34);
}

.about-bottom-value-card::after {
display: none;
}

.about-bottom-value-card:last-child {
grid-column: 1 / -1;
}
}

@media (max-width: 520px) {
.about-hero-stage__wall {
width: min(100%, 360px);
}

.about-hero-stage__mini {
grid-template-columns: 1fr;
gap: 0.38rem;
}

.about-bottom-values-strip {
grid-template-columns: 1fr;
}

.about-bottom-value-card:last-child {
grid-column: auto;
}
}

/* Cinematic construction hero override */
.estate-studio-hero--construction-page {
  position: relative;
  min-height: 100svh;
  background-color: #071726;
  background-image: var(--construction-current-image);
  background-size: cover;
  background-position: center;
}

.estate-studio-hero--construction-page::before {
  content: none;
  background: none;
}

.estate-studio-hero--construction-page::after {
  background: transparent;
}

.estate-studio-hero--construction-page .construction-cinematic-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #071726;
  background-image: var(--construction-current-image);
  background-size: cover;
  background-position: center;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.estate-studio-hero--construction-page .construction-cinematic-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--construction-current-image);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.05) brightness(0.95);
  transform: scale(1.08);
  opacity: 0.6;
}

.estate-studio-hero--construction-page .construction-cinematic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.estate-studio-hero--construction-page .construction-cinematic-media__layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease;
  filter: brightness(1.12) contrast(1.06) saturate(1.05);
}

.estate-studio-hero--construction-page .construction-cinematic-media__layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.estate-studio-hero--construction-page:not(.estate-studio-hero--infrastructure-page) {
  background-image: none;
}

.estate-studio-hero--construction-page:not(.estate-studio-hero--infrastructure-page) .construction-cinematic-media {
  background-image: none;
}

.estate-studio-hero--construction-page:not(.estate-studio-hero--infrastructure-page) .construction-cinematic-media::before {
  content: none;
  background-image: none;
}

.estate-studio-hero--construction-page .estate-studio-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  align-items: stretch;
  justify-content: flex-start;
  padding-block: clamp(6.8rem, 11vh, 8.2rem) clamp(0.8rem, 2vh, 1.4rem);
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.estate-studio-hero--construction-page .construction-cinematic-copy {
  width: min(100%, 300px);
  max-width: 300px;
  text-align: right;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: absolute;
  left: clamp(0.35rem, 1.1vw, 0.85rem);
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  align-self: auto;
  display: grid;
  gap: 0.55rem;
  z-index: 3;
  justify-items: center;
  padding: 0.45rem 0.4rem 0.55rem;
}

.estate-studio-hero--construction-page .construction-cinematic-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 24, 40, 0.24), rgba(7, 24, 40, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.estate-studio-hero--construction-page .construction-cinematic-copy::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 0.5rem;
  left: 0.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 210, 145, 0.78), transparent);
  opacity: 0.85;
}

.estate-studio-hero--construction-page .construction-right-watermark {
  position: absolute;
  top: 50%;
  right: clamp(2.2rem, 4vw, 3.4rem);
  transform: translateY(-50%);
  width: min(13vw, 160px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.estate-studio-hero--construction-page .construction-right-watermark img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) contrast(1.05);
}

.estate-studio-hero--construction-page .construction-cinematic-pill {
  margin: 0;
  width: fit-content;
  align-self: center;
  padding: 0.42rem 1rem;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  background: rgba(7, 24, 40, 0.62);
  border: 1px solid rgba(245, 220, 164, 0.55);
  box-shadow: 0 10px 24px rgba(4, 15, 25, 0.28);
}

.estate-studio-hero--construction-page .construction-cinematic-paragraph {
  margin: 0;
  max-width: 19ch;
  color: #ffffff;
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 16px rgba(4, 15, 25, 0.38);
  justify-self: center;
  text-align: right;
}

.estate-studio-hero--construction-page .construction-cinematic-copy--plain::before,
.estate-studio-hero--construction-page .construction-cinematic-copy--plain::after {
  content: none;
}

.estate-studio-hero--construction-page .construction-cinematic-copy--plain {
  padding: 0;
  gap: 0.7rem;
  left: clamp(0.12rem, 0.65vw, 0.45rem);
  width: min(100%, 250px);
  max-width: 250px;
}

.estate-studio-hero--construction-page .construction-cinematic-button {
  padding: 0.45rem 0.95rem;
  font-size: 0.84rem;
  border-radius: 999px;
  min-height: auto;
}

.estate-studio-hero--construction-page .construction-cinematic-copy--plain .construction-cinematic-paragraph {
  max-width: 18ch;
  text-align: right;
}

@media (max-width: 960px) {
  /* Sector cinematic hero: stack copy + logo in normal flow — absolute center + static text caused overlap on phones. */
  .estate-studio-hero--construction-page .estate-studio-hero__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0.75rem;
    padding-block: 7.2rem 2rem;
  }

  .estate-studio-hero--construction-page .construction-cinematic-copy {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    bottom: auto;
    gap: 0.55rem;
    padding: 0;
    justify-items: stretch;
    z-index: 3;
  }

  .estate-studio-hero--construction-page .construction-cinematic-copy--plain {
    width: 100%;
    max-width: none;
    left: auto;
  }

  .estate-studio-hero--construction-page .construction-cinematic-copy::before {
    content: none;
  }

  .estate-studio-hero--construction-page .construction-cinematic-copy::after {
    content: none;
  }

  .estate-studio-hero--construction-page .construction-right-watermark {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    width: min(112px, 34vw);
    margin: 0 auto;
    opacity: 0.88;
    order: -1;
    align-self: center;
    z-index: 2;
  }

  .estate-studio-hero--construction-page .construction-cinematic-pill {
    padding: 0.32rem 0.78rem;
    font-size: 0.76rem;
  }

  .estate-studio-hero--construction-page .construction-cinematic-button {
    align-self: center;
    text-align: center;
    max-width: 100%;
  }

  .estate-studio-hero--construction-page .construction-cinematic-paragraph {
    max-width: 100% !important;
    justify-self: stretch;
    text-align: center;
    font-size: clamp(0.95rem, 4.6vw, 1.35rem);
    line-height: 1.5;
  }

  .estate-studio-hero--construction-page .construction-cinematic-media__layer {
    object-fit: cover;
    object-position: center;
  }
}

/* Infrastructure hero: ~16:9 stills vs ~4:3 on construction — need wide side gutters so the
   copy block (~250px) and watermark sit on the dark margin, not over the photo. */
.estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-cinematic-media {
  inset: clamp(1rem, 3.5vh, 2.75rem) clamp(1rem, 18vw, 24rem) clamp(1.25rem, 4vh, 3rem) clamp(1rem, 18vw, 24rem);
}

.estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page {
  background-image: none;
}

.estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-cinematic-media {
  background-image: none;
}

.estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-cinematic-media::before {
  background-image: none;
  opacity: 0;
}

.estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-cinematic-copy,
.estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-cinematic-copy--plain {
  left: clamp(0.75rem, 2.4vw, 1.75rem);
  right: auto;
}

.estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-right-watermark {
  right: clamp(0.75rem, 2.4vw, 1.75rem);
  width: min(11vw, 132px);
}

/* Maintenance hero: use fuller photo framing and slightly wider copy/logo
   so it matches the visual balance used in other sector pages. */
.estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-cinematic-media {
  inset: clamp(1rem, 3.5vh, 2.75rem) clamp(1rem, 18vw, 24rem) clamp(1.25rem, 4vh, 3rem) clamp(1rem, 18vw, 24rem);
}

.estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-cinematic-copy,
.estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-cinematic-copy--plain {
  left: clamp(0.75rem, 2.4vw, 1.75rem);
  right: auto;
}

.estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-right-watermark {
  right: clamp(0.75rem, 2.4vw, 1.75rem);
  width: min(11vw, 132px);
}

/* Steel sector hero: shrink the photo frame so copy + logo sit on the dark band, not inside busy stills. */
.estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-cinematic-media {
  inset: clamp(1.25rem, 4.5vh, 3.25rem) clamp(1rem, 24vw, 30rem) clamp(1.5rem, 5vh, 3.5rem) clamp(1rem, 24vw, 30rem);
}

.estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-cinematic-copy,
.estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-cinematic-copy--plain {
  left: clamp(0.65rem, 2.2vw, 1.5rem);
  right: auto;
}

.estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-right-watermark {
  right: clamp(0.65rem, 2.2vw, 1.5rem);
  width: min(10.5vw, 124px);
}

.estate-studio-hero--steel-page.estate-studio-hero--construction-page {
  min-height: min(100svh, 860px);
}

@media (max-width: 600px) {
  .estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-cinematic-media {
    inset: clamp(0.5rem, 2vh, 1rem) clamp(0.35rem, 5vw, 1.25rem) clamp(0.75rem, 3vh, 1.5rem) clamp(0.35rem, 5vw, 1.25rem);
  }

  .estate-studio-hero--infrastructure-page.estate-studio-hero--construction-page .construction-right-watermark {
    right: clamp(0.5rem, 3vw, 1rem);
    width: min(20vw, 96px);
  }

  .estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-cinematic-media {
    inset: clamp(0.5rem, 2vh, 1rem) clamp(0.35rem, 5vw, 1.25rem) clamp(0.75rem, 3vh, 1.5rem) clamp(0.35rem, 5vw, 1.25rem);
  }

  .estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-cinematic-copy,
  .estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-cinematic-copy--plain {
    left: clamp(0.5rem, 3vw, 1rem);
    right: auto;
  }

  .estate-studio-hero--maintenance-page.estate-studio-hero--construction-page .construction-right-watermark {
    right: clamp(0.5rem, 3vw, 1rem);
    width: min(20vw, 96px);
  }

  .estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-cinematic-media {
    inset: clamp(0.55rem, 2.2vh, 1.1rem) clamp(0.4rem, 7.5vw, 1.6rem) clamp(0.8rem, 3.2vh, 1.65rem) clamp(0.4rem, 7.5vw, 1.6rem);
  }

  .estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-cinematic-copy,
  .estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-cinematic-copy--plain {
    left: clamp(0.45rem, 2.8vw, 0.95rem);
    right: auto;
  }

  .estate-studio-hero--steel-page.estate-studio-hero--construction-page .construction-right-watermark {
    right: clamp(0.45rem, 2.8vw, 0.95rem);
    width: min(18vw, 92px);
  }

  .estate-studio-hero--steel-page.estate-studio-hero--construction-page {
    min-height: min(100svh, 780px);
  }
}

/* Force visible motion for construction gallery images */
.sector-gallery__grid .construction-gallery-motion {
  animation: constructionGalleryMotion 8s ease-in-out infinite alternate !important;
  animation-play-state: running !important;
  transform-origin: center center;
  transition: transform 320ms ease, filter 260ms ease;
}

.sector-gallery__grid figure:nth-child(2) .construction-gallery-motion {
  animation-delay: -2.6s;
}

.sector-gallery__grid figure:nth-child(3) .construction-gallery-motion {
  animation-delay: -5.2s;
}

@keyframes constructionGalleryMotion {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.14);
  }
}

/* Responsive QA stability patch (no visual redesign) */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
}

.container,
.container-luxury,
.map-container-luxury {
  margin-inline: auto;
}

@media (min-width: 1400px) {
  .container {
    width: min(1280px, calc(100% - 4rem));
  }

  .container-luxury,
  .map-container-luxury {
    width: min(1320px, calc(100% - 4rem));
  }
}

@media (min-width: 1920px) {
  .container {
    width: min(1340px, calc(100% - 5rem));
  }

  .container-luxury,
  .map-container-luxury {
    width: min(1380px, calc(100% - 5rem));
  }
}

@media (max-width: 760px) {
  .site-header--home .site-nav {
    display: none !important;
    position: fixed;
    top: calc(var(--header-height) + 0.35rem);
    right: 0.75rem;
    left: 0.75rem;
    max-height: calc(100svh - var(--header-height) - 1.25rem);
    overflow-y: auto;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header {
    z-index: 1002;
  }

  body.is-nav-open .site-header {
    z-index: 1002;
  }

  .site-header--home .site-nav.open,
  body.is-nav-open .site-header--home .site-nav {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .estate-studio-hero,
  .brand-hero,
  .sector-hero,
  .estate-projects-hero,
  .hero-luxury {
    min-height: clamp(520px, 100svh, 760px);
  }

  .estate-studio-hero__inner,
  .brand-hero__inner,
  .sector-hero__inner,
  .estate-projects-hero__inner {
    width: min(100%, calc(100% - 1rem));
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .home-service-deck__grid,
  .services-showcase-grid,
  .estate-curation-band__grid,
  .estate-project-grid,
  .project-grid,
  .footer-grid {
    gap: clamp(0.9rem, 3.2vw, 1.2rem);
  }
}

@media (max-width: 480px) {
  .estate-studio-hero__title,
  .brand-hero h1,
  .sector-hero h1,
  .estate-projects-hero h1,
  .hero-luxury__title {
    line-height: 1.22;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    position: relative;
  }

  body.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5, 12, 22, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  body.is-nav-open .site-nav,
  .site-nav.open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed !important;
    top: calc(var(--header-height, 72px) + 0.35rem) !important;
    right: 0.75rem !important;
    left: 0.75rem !important;
    z-index: 1001 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    max-height: calc(100svh - var(--header-height, 72px) - 1.25rem);
    overflow-y: auto;
    padding: 0.8rem;
    gap: 0.2rem;
    background: rgba(10, 26, 41, 0.97) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 36px rgba(5, 18, 30, 0.35) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  body.is-nav-open .site-nav a,
  .site-nav.open a {
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    text-align: right;
  }

  body.is-nav-open .site-nav a::after,
  .site-nav.open a::after {
    display: none;
  }

  body.is-nav-open .site-nav a:hover,
  body.is-nav-open .site-nav a.active,
  .site-nav.open a:hover,
  .site-nav.open a.active {
    background: rgba(255, 255, 255, 0.06);
    color: #ecd493 !important;
  }

  .site-header--home .site-nav:not(.open),
  .site-header .site-nav:not(.open) {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
  }
}

@media (max-width: 430px) {
  .site-header--home .site-nav {
    right: 0.5rem;
    left: 0.5rem;
    border-radius: 18px;
    padding: 0.68rem;
  }

  .estate-studio-hero--home .estate-studio-hero__copy {
    width: calc(100% - 0.4rem);
    padding-inline: 0.72rem;
  }
}

@media (max-width: 520px) {
  .estate-studio-hero--about-page .estate-studio-hero__inner {
    padding-block: 6.35rem 1.4rem !important;
    align-items: flex-start !important;
  }

  .estate-studio-hero--about-page .estate-studio-hero__copy {
    min-height: auto !important;
    width: 100% !important;
    padding: 0.4rem 0.4rem 0.9rem !important;
  }

  .about-hero-stage,
  .about-hero-stage__wall,
  .values-wall-panel,
  .about-bottom-values-strip {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin-inline: auto !important;
  }

  .about-hero-stage {
    gap: 0.65rem !important;
    width: 100%;
  }

  .about-hero-stage__wall {
    width: min(100%, 338px) !important;
    max-width: 338px !important;
    padding: 0.7rem 0.45rem 0.2rem !important;
  }

  .about-hero-stage__brand-ar,
  .estate-studio-hero--about-page h1.about-hero-stage__brand-ar,
  .about-hero-stage__brand-en,
  .estate-studio-hero--about-page p.about-hero-stage__brand-en,
  .about-hero-stage__subtitle,
  .estate-studio-hero--about-page p.about-hero-stage__subtitle {
    transform: none !important;
  }

  .values-wall-panel {
    width: min(100%, 338px) !important;
    max-width: 338px !important;
    margin-top: 0.7rem !important;
    padding: 0.95rem 0.8rem 0.8rem !important;
  }

  .values-wall-panel h3 {
    margin-bottom: 0.55rem !important;
    font-size: clamp(2.05rem, 10vw, 2.45rem) !important;
  }

  .values-wall-panel ul {
    width: 100% !important;
    gap: 0.52rem !important;
  }

  .values-wall-panel li {
    grid-template-columns: 28px 1fr !important;
    column-gap: 0.55rem !important;
    font-size: clamp(1.45rem, 7.2vw, 1.9rem) !important;
    line-height: 1.2 !important;
  }

  .values-wall-panel li span:last-child {
    min-width: 0 !important;
  }

  .values-wall-panel__icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
  }

  .about-bottom-values-strip {
    width: min(100%, 338px) !important;
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
    margin-top: 0.85rem !important;
    padding: 0.9rem 0.8rem !important;
  }
}

/* About page hard mobile lock: prevent hero overlap on real devices */
@media (max-width: 900px) {
  body.about-page .site-header--home .site-nav {
    display: none !important;
  }

  body.about-page.is-nav-open .site-header--home .site-nav,
  body.about-page .site-header--home .site-nav.open,
  body.about-page .site-header--home .nav-toggle[aria-expanded="true"] + .site-nav {
    display: flex !important;
  }
}

@media (max-width: 520px) {
  body.about-page .estate-studio-hero--about-page {
    min-height: auto !important;
  }

  body.about-page .estate-studio-hero--about-page .estate-studio-hero__inner {
    min-height: auto !important;
    padding-block: 6.3rem 1.1rem !important;
    align-items: flex-start !important;
  }

  body.about-page .estate-studio-hero--about-page .estate-studio-hero__copy {
    min-height: auto !important;
    width: 100% !important;
    padding: 0.35rem 0.35rem 0.85rem !important;
  }

  body.about-page .about-hero-stage {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
  }

  body.about-page .about-hero-stage__wall {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: min(100%, 350px) !important;
    max-width: 350px !important;
    margin-inline: auto !important;
  }

  body.about-page .about-hero-stage__brand-ar,
  body.about-page .estate-studio-hero--about-page h1.about-hero-stage__brand-ar,
  body.about-page .about-hero-stage__brand-en,
  body.about-page .estate-studio-hero--about-page p.about-hero-stage__brand-en,
  body.about-page .about-hero-stage__subtitle,
  body.about-page .estate-studio-hero--about-page p.about-hero-stage__subtitle {
    transform: none !important;
  }
}

/* Narrow screens: sector inner pages — no page-scale entrance, flat card hovers (motion handled in main.js). */
@media (max-width: 900px) {
  .sector-page {
    animation: none;
  }

  .sector-page .hover-lift {
    transition: none;
  }

  .sector-page .hover-lift:hover,
  .sector-page .hover-lift:active {
    transform: none;
  }
}

/* ── Dark Mode Theme Toggle Button ──────────────────────────────────────────── */

/* ── Inner pages header: clean spacing ───────────────────────────────────── */
.site-header:not(.site-header--home) .nav-wrap {
  gap: 2rem;
  padding-inline: clamp(1.5rem, 3vw, 3rem);
}
/* In RTL: margin-inline-start = right side → pushes nav away from logo */
.site-header:not(.site-header--home) .site-nav {
  margin-inline-start: auto;
  gap: clamp(1.2rem, 1.8vw, 2rem);
}
/* ── Homepage: prevent absolute logo (right side) overlapping centered nav ─── */
.site-header--home .nav-wrap {
  padding-inline-start: clamp(110px, 10vw, 150px);
}

.bc-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.32);
  background: rgba(197, 160, 89, 0.08);
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  order: 3;
}
.bc-theme-toggle:hover {
  background: rgba(197, 160, 89, 0.18);
  border-color: rgba(197, 160, 89, 0.55);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.18);
}
.bc-theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}
.bc-theme-toggle:hover svg {
  transform: rotate(20deg);
}
.bc-theme-toggle .icon-sun { display: none; }
.bc-theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .bc-theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .bc-theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .bc-theme-toggle {
  background: rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.38);
  color: #D4A96A;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DARK MODE — Warm Luxury Dark
   RULE #1: Dark background + CLEARLY READABLE text. No "soft dim" effect.
   RULE #2: All text inherits from --text / --heading-dark (cream, not navy).
   RULE #3: Sections darken their bg, cards float above.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── GLOBAL: body background + force text color cascade ─────────────────── */
[data-theme="dark"] body {
  background:
    radial-gradient(circle at 85% 8%, rgba(197, 160, 89, 0.055), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(197, 160, 89, 0.03), transparent 20%),
    var(--bg) !important;
  color: var(--text) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   GLOBAL DARK MODE TEXT SYSTEM
   Layer 1 (variables): navy/brand tokens remapped in :root override above.
   Layer 2 (selectors): !important on all text elements to beat specificity.
   This is the definitive fix for invisible text in dark mode.
   ══════════════════════════════════════════════════════════════════════════ */

/* Headings — crisp warm cream */
[data-theme="dark"] h1, [data-theme="dark"] h2,
[data-theme="dark"] h3, [data-theme="dark"] h4,
[data-theme="dark"] h5, [data-theme="dark"] h6 {
  color: var(--heading-dark) !important;
  opacity: 1 !important;
}

/* Body text — warm cream, full opacity */
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] td,
[data-theme="dark"] th,
[data-theme="dark"] label {
  color: var(--text) !important;
  opacity: 1 !important;
}

/* Spans — exclude decorative badges/icons */
[data-theme="dark"] span:not(.bc-badge):not([class*="tag"]):not([class*="status"]):not([class*="icon"]) {
  color: var(--text) !important;
  opacity: 1 !important;
}

/* Strong/bold — heading weight */
[data-theme="dark"] strong,
[data-theme="dark"] b {
  color: var(--heading-dark) !important;
  opacity: 1 !important;
}

/* Statistics numbers — gold accent for visual hierarchy */
[data-theme="dark"] .hero-stat strong,
[data-theme="dark"] .stat-number,
[data-theme="dark"] .bc-stat__number,
[data-theme="dark"] .home-stat__value,
[data-theme="dark"] .counter-value,
[data-theme="dark"] [class*="stat"] strong,
[data-theme="dark"] [class*="count"] strong {
  color: var(--gold-light) !important;
  opacity: 1 !important;
}

/* Anchors — warm sand, clearly visible */
[data-theme="dark"] a:not([class*="btn"]):not([class*="button"]):not(.brand) {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}
[data-theme="dark"] a:not([class*="btn"]):not([class*="button"]):not(.brand):hover {
  color: var(--gold-light) !important;
}

/* Small labels and overlines — gold accent */
[data-theme="dark"] small,
[data-theme="dark"] .eyebrow,
[data-theme="dark"] .overline,
[data-theme="dark"] .section-label {
  color: var(--gold-main) !important;
  opacity: 1 !important;
}
[data-theme="dark"] .section-label::before {
  background: var(--gold-main);
}

/* Dividers */
[data-theme="dark"] hr, [data-theme="dark"] .divider {
  border-color: var(--border-grey);
}

/* Restore opacity: 1 on any container that dims children */
[data-theme="dark"] section,
[data-theme="dark"] article,
[data-theme="dark"] .card,
[data-theme="dark"] [class*="panel"],
[data-theme="dark"] [class*="section"],
[data-theme="dark"] [class*="-card"] {
  opacity: 1 !important;
}

/* ── CARDS: background + ensure text is readable ─────────────────────────── */
[data-theme="dark"] .brand-panel,
[data-theme="dark"] .home-company-panel,
[data-theme="dark"] .services-luxury-card,
[data-theme="dark"] .sector-project-card,
[data-theme="dark"] .estate-project-list-card,
[data-theme="dark"] .contact-studio__card,
[data-theme="dark"] .contact-studio__form,
[data-theme="dark"] .brand-values__grid article,
[data-theme="dark"] .brand-link-card,
[data-theme="dark"] .estate-sidebar-card,
[data-theme="dark"] .estate-hero-aside__card,
[data-theme="dark"] .contact-presence__card,
[data-theme="dark"] .brand-panel--sector,
[data-theme="dark"] .about-bottom-values-strip {
  background: var(--surface) !important;
  border-color: var(--border-grey) !important;
  color: var(--text);
}

/* ── SECTION BACKGROUNDS: hierarchy via subtle alternation ───────────────── */
[data-theme="dark"] section.home-services,
[data-theme="dark"] section.home-sectors,
[data-theme="dark"] section.brand-values,
[data-theme="dark"] .services-page-modern {
  background: var(--light-grey);
}
[data-theme="dark"] .home-cta-stage,
[data-theme="dark"] .section-dark {
  background: #0E1622 !important;
  color: var(--text) !important;
}
[data-theme="dark"] .home-services-luxury {
  background: var(--bg);
}

/* ── BACKGROUND FIXES: elements that use --navy/--brand as backgrounds ───── */
/* These 5 selectors used navy as bg. After remapping navy→cream in tokens,   */
/* we restore them to proper dark-mode backgrounds.                            */
[data-theme="dark"] .nav-toggle {
  background: rgba(197, 160, 89, 0.12) !important;
  color: var(--gold-light) !important;
  border-color: rgba(197, 160, 89, 0.3) !important;
}
[data-theme="dark"] .accent-card {
  background: linear-gradient(160deg, #1E2A3A, #253345 96%) !important;
  color: var(--text) !important;
}
[data-theme="dark"] .estate-filter.is-active,
[data-theme="dark"] .estate-filter:hover {
  background: var(--gold-main) !important;
  color: #fff !important;
  border-color: var(--gold-main) !important;
}
[data-theme="dark"] .estate-project-list-card__cta {
  background: var(--gold-main) !important;
  color: #fff !important;
  border-color: var(--gold-main) !important;
}
[data-theme="dark"] .services-page--luxury .service-map-card--featured .service-map-card__cta {
  background: var(--gold-main) !important;
  color: #fff !important;
  border-color: var(--gold-main) !important;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
[data-theme="dark"] .site-footer {
  background: #0C1219 !important;
  border-top: 1px solid rgba(197, 160, 89, 0.16);
}
[data-theme="dark"] .footer-column h3 {
  color: var(--gold-light) !important;
  opacity: 1;
}
[data-theme="dark"] .footer-grid a {
  color: var(--text-muted) !important;
}
[data-theme="dark"] .footer-grid p,
[data-theme="dark"] .footer-grid li,
[data-theme="dark"] .footer-bottom p {
  color: var(--text-muted);
}
[data-theme="dark"] .footer-grid a:hover {
  color: var(--gold-light) !important;
}
[data-theme="dark"] .footer-brand {
  color: var(--text) !important;
}

/* ── FORMS ────────────────────────────────────────────────────────────────── */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: rgba(245, 241, 234, 0.05) !important;
  border-color: rgba(197, 160, 89, 0.30) !important;
  color: var(--text) !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}
[data-theme="dark"] select option,
[data-theme="dark"] select optgroup {
  background: #1E2A3A;
  color: var(--text);
}

/* ── MAP ──────────────────────────────────────────────────────────────────── */
[data-theme="dark"] .contact-presence__map {
  filter: brightness(0.65) sepia(0.15);
}

/* ── MOBILE NAV DROPDOWN ──────────────────────────────────────────────────── */
[data-theme="dark"] .site-nav {
  background: rgba(18, 24, 32, 0.98) !important;
  border-color: rgba(197, 160, 89, 0.25) !important;
  box-shadow: 0 16px 36px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .site-nav a {
  color: var(--text) !important;
}
[data-theme="dark"] .site-nav a:hover {
  color: var(--gold-light) !important;
  background: rgba(197, 160, 89, 0.08) !important;
}

/* ── BAYAN-1/2 project pages (originally light-themed) ───────────────────── */
[data-theme="dark"] .estate-studio-page.estate-project-detail-page {
  background: var(--bg) !important;
}
[data-theme="dark"] .estate-studio-page.estate-project-detail-page .b1p-section,
[data-theme="dark"] .estate-studio-page.estate-project-detail-page .b2p-section {
  background: var(--surface) !important;
  color: var(--text);
}
[data-theme="dark"] .b1p-info-bar,
[data-theme="dark"] .b2p-info-bar {
  background: var(--surface) !important;
  border-color: var(--border-grey);
}
[data-theme="dark"] .b1p-specs-table td, [data-theme="dark"] .b2p-specs-table td,
[data-theme="dark"] .b1p-specs-table th, [data-theme="dark"] .b2p-specs-table th {
  border-color: var(--border-grey);
  color: var(--text) !important;
}
[data-theme="dark"] .b1p-unit-card,
[data-theme="dark"] .b2p-unit-card {
  background: var(--surface) !important;
  border-color: var(--border-grey);
}

/* ── Dark Mode smooth transition (only after page load, not on initial paint) ── */
html.js-enhanced {
  transition: background-color 0.3s ease, color 0.3s ease;
}
body, .site-header, .site-footer,
.brand-panel, .services-luxury-card, .sector-project-card,
.home-company-panel, .brand-values__grid article, .brand-link-card,
.contact-studio__card, .contact-studio__form,
.footer-column, .footer-bottom,
input, textarea, select, button {
  transition-property: background-color, border-color, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* ══════════════════════════════════════════════════════════════════════════
   DARK MODE — SOFT DISABLED
   Toggle button hidden from UI. CSS & JS preserved for future reactivation.
   To re-enable: remove the rule below and uncomment theme-init.js logic.
   ══════════════════════════════════════════════════════════════════════════ */
.bc-theme-toggle {
  display: none !important;
}
/* Shared form protection field: available to bots, invisible to visitors. */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
  color: var(--text-muted, #5f6b78);
  font-size: 0.9rem;
  line-height: 1.7;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.3rem;
  accent-color: var(--primary, #c5a059);
}

.form-consent a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

button[aria-busy="true"],
button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* ── فوتر مؤسسي موحّد (كل الصفحات) ── */
.site-footer.site-footer--corp {
  padding-top: 1.45rem;
  padding-bottom: 1.35rem;
  overflow: visible;
  background: linear-gradient(180deg, #070c12 0%, #04080d 100%);
}

.site-footer.site-footer--corp::after {
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 168, 76, 0.06), transparent 24%),
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.02), transparent 20%);
}

.site-footer.site-footer--corp .footer-grid {
  grid-template-columns: minmax(220px, 1.15fr) repeat(4, minmax(128px, 1fr));
  gap: 1.65rem;
  align-items: start;
}

.site-footer.site-footer--corp .footer-column {
  padding-top: 0.15rem;
}

.site-footer.site-footer--corp .footer-column:not(.footer-column--brand) {
  padding-top: 0.35rem;
}

.site-footer.site-footer--corp .footer-column--brand p {
  line-height: 1.72;
  color: rgba(232, 238, 244, 0.88);
  margin-bottom: 0;
  font-size: 0.88rem;
  max-width: 26rem;
}

.site-footer.site-footer--corp .footer-column h3 {
  color: #f5f0e6;
  margin-bottom: 0.75rem;
  position: relative;
  width: fit-content;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer.site-footer--corp .footer-column h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  width: 1.55rem;
  height: 2px;
  background: #c9a84c;
}

.site-footer.site-footer--corp .footer-column--links a,
.site-footer.site-footer--corp .footer-column--services a,
.site-footer.site-footer--corp .footer-column--legal a,
.site-footer.site-footer--corp .footer-column--contact a {
  color: #aeb6c0;
  margin-bottom: 0.55rem;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 1;
  font-weight: 500;
}

.site-footer.site-footer--corp .footer-column--links a:hover,
.site-footer.site-footer--corp .footer-column--services a:hover,
.site-footer.site-footer--corp .footer-column--legal a:hover,
.site-footer.site-footer--corp .footer-column--contact a:hover {
  color: #c9a84c;
  transform: translateX(-3px);
}

.site-footer.site-footer--corp .footer-column--links a:last-child,
.site-footer.site-footer--corp .footer-column--services a:last-child,
.site-footer.site-footer--corp .footer-column--legal a:last-child,
.site-footer.site-footer--corp .footer-column--contact a:last-child {
  margin-bottom: 0;
}

.site-footer.site-footer--corp .footer-column--contact {
  gap: 0.35rem;
}

.site-footer.site-footer--corp .contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: fit-content;
  margin: 0.15rem 0 0;
}

.site-footer.site-footer--corp .contact-icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(230, 195, 111, 0.2);
  background: rgba(230, 195, 111, 0.08);
  color: #c9a84c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  line-height: 1;
  flex-shrink: 0;
}

.site-footer.site-footer--corp .contact-icon svg {
  width: 0.82rem;
  height: 0.82rem;
  stroke: #c9a84c;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer.site-footer--corp .contact-location-text {
  white-space: nowrap;
  font-size: 0.9rem;
}

.site-footer.site-footer--corp .footer-column--contact p,
.site-footer.site-footer--corp .footer-bottom p {
  color: #aeb6c0;
}

.site-footer.site-footer--corp .footer-bottom p {
  font-size: 0.86rem;
  opacity: 0.9;
}

.site-footer.site-footer--corp .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 0.45rem;
  padding-bottom: 0.65rem;
  position: relative;
  z-index: 2;
}

.site-footer.site-footer--corp .footer-bottom,
.site-footer.site-footer--corp .footer-bottom p,
.js-enhanced .site-footer .footer-bottom,
.js-enhanced .site-footer .footer-bottom p {
  opacity: 1;
  transform: none;
  animation: none;
}

.site-footer.site-footer--corp .footer-logo {
  width: min(88px, 100%);
  height: auto;
  margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
  .site-footer.site-footer--corp .footer-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 1.35rem;
  }

  .site-footer.site-footer--corp .footer-column--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer.site-footer--corp {
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .site-footer.site-footer--corp .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .site-footer.site-footer--corp .contact-location-text {
    white-space: normal;
  }

  .site-footer.site-footer--corp .footer-logo {
    width: 56px;
  }
}
