
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Slate & Saffron palette */
  --slate:        #1C2B3A;
  --slate-mid:    #243446;
  --slate-deep:   #111E2A;
  --slate-light:  #2E3F52;
  --saffron:      #D4922A;
  --saffron-warm: #C4831A;
  --saffron-pale: #F9F0E1;
  --saffron-muted:#EDD9B4;
  --white:        #FFFFFF;
  --ivory:        #FAF8F5;
  --warm-grey:    #F3F0EC;
  --border:       #E6E0D6;
  --border-dark:  rgba(255,255,255,0.09);
  --text-dark:    #1C2B3A;
  --text-body:    #3D4E5C;
  --text-muted:   #6B7C8D;
  --text-on-dark: rgba(255,255,255,0.82);

  --font-display: 'DM Serif Display', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Jost', sans-serif;
  --max:          1160px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }

/* ── LABEL ── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.64rem;
  font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--saffron);
}
.label::before { content: ''; width: 28px; height: 1px; background: var(--saffron); flex-shrink: 0; }
.label.light { color: #D4A55A; }
.label.light::before { background: #D4A55A; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 76px; display: flex; align-items: center;
  background: rgba(17, 30, 42, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(212, 146, 42, 0.18), 0 8px 32px rgba(0,0,0,0.22);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.navbar.solid {
  background: rgba(17, 30, 42, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(212, 146, 42, 0.18), 0 8px 32px rgba(0,0,0,0.22);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo */
.logo { display: flex; align-items: center; gap: 13px; cursor: pointer; }
.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo-words { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff; line-height: 1;
}
.logo-tagline {
  font-family: var(--font-sans); font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron); line-height: 1;
}

/* Nav links */
.nav-links { display: flex; align-items: center; list-style: none; gap: 0.2rem; }
.nav-links a {
  font-family: var(--font-sans); font-size: 0.69rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--saffron);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.ham span { width: 22px; height: 1px; background: #fff; display: block; transition: 0.3s; }

/* Mobile nav */
.mob-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(17,30,42,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,146,42,0.15);
  z-index: 899; padding: 1.5rem 2.5rem;
}
.mob-nav.open { display: block; }
.mob-nav ul { list-style: none; display: flex; flex-direction: column; }
.mob-nav a {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); display: block;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mob-nav a:hover { color: var(--saffron); }

/* ── PAGE SYSTEM ── */
.page { display: block; }

/* ════════════════════════════════════
   HOME
════════════════════════════════════ */

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--slate-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,146,42,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Radial glow */
.hero::after {
  content: '';
  position: absolute; top: -20%; right: -15%;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(212,146,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}
/* Corner ornament */
.hero-ornament {
  position: absolute; top: 88px; left: 2.5rem;
  width: 80px; height: 80px;
  border-top: 1px solid rgba(212,146,42,0.35);
  border-left: 1px solid rgba(212,146,42,0.35);
  pointer-events: none;
}
.hero-ornament-br {
  position: absolute; bottom: 48px; right: 2.5rem;
  width: 80px; height: 80px;
  border-bottom: 1px solid rgba(212,146,42,0.2);
  border-right: 1px solid rgba(212,146,42,0.2);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: center;
}

.hero-kicker { margin-bottom: 2rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--saffron);
}
.hero-desc {
  font-size: 1rem; font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}
.hero-divider {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--saffron), transparent);
  margin-bottom: 2rem;
}

/* Hero right panel */
.hero-panel {
  border: 1px solid rgba(212,146,42,0.2);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}
.hero-panel-head {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(212,146,42,0.15);
  display: flex; align-items: center; gap: 12px;
}
.hero-panel-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(212,146,42,0.3);
  background: rgba(212,146,42,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron); font-size: 1rem;
}
.hero-panel-title {
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-panel-sub { font-size: 0.65rem; color: rgba(255,255,255,0.38); margin-top: 2px; letter-spacing: 0.06em; }
.hero-panel-body { padding: 0.5rem 0; }
.hero-panel-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0.85rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem; color: rgba(255,255,255,0.82);
  transition: background 0.2s;
}
.hero-panel-item:last-child { border-bottom: none; }
.hero-panel-item:hover { background: rgba(212,146,42,0.05); }
.hero-panel-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--saffron); flex-shrink: 0; opacity: 0.7;
}

/* MARQUEE */
.marquee {
  background: var(--slate);
  border-top: 1px solid rgba(212,146,42,0.12);
  border-bottom: 1px solid rgba(212,146,42,0.12);
  padding: 15px 0; overflow: hidden;
}
.marquee-track {
  display: flex; animation: scroll 35s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 2.5rem;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.52); white-space: nowrap;
}
.marquee-diamond { color: var(--saffron); opacity: 0.5; font-size: 0.45rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* INTRO SECTION */
.intro-sec { padding: 100px 0; background: var(--ivory); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.intro-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--slate);
  line-height: 1.15; margin-top: 1.25rem; margin-bottom: 1.5rem;
}
.intro-left h2 em { font-style: italic; color: var(--saffron); }
.intro-left p {
  font-size: 0.95rem; color: var(--text-body);
  line-height: 1.9; font-weight: 300; margin-bottom: 1.1rem;
}
.intro-right { padding-top: 2.5rem; }
.intro-pillars { display: flex; flex-direction: column; gap: 0; }
.pillar {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s;
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar:hover { border-left-color: var(--saffron); background: var(--saffron-pale); }
.pillar-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--saffron-muted);
  background: var(--saffron-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; margin-top: 2px;
  transition: background 0.25s;
}
.pillar:hover .pillar-icon { background: var(--saffron-muted); }
.pillar-h { font-size: 0.85rem; font-weight: 600; color: var(--slate); margin-bottom: 3px; letter-spacing: 0.02em; }
.pillar-p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* APPROACH SECTION */
.approach-sec {
  background: var(--slate);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.approach-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,146,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,146,42,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.approach-sec::after {
  content: '';
  position: absolute; top: -30%; left: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(212,146,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.approach-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.approach-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; color: #fff;
  line-height: 1.15; margin-top: 1.25rem; margin-bottom: 1.5rem;
}
.approach-text h2 em { font-style: italic; color: var(--saffron); }
.approach-text p { font-size: 0.94rem; color: var(--text-on-dark); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
.approach-commitments { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.commitment {
  display: flex; gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(212,146,42,0.1);
  border-top: none;
  transition: background 0.2s;
}
.commitment:first-child { border-top: 1px solid rgba(212,146,42,0.1); }
.commitment:hover { background: rgba(212,146,42,0.05); }
.commitment-label {
  font-family: var(--font-sans); font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron); flex-shrink: 0; width: 115px; padding-top: 2px;
}
.commitment-text { font-size: 0.82rem; color: var(--text-on-dark); line-height: 1.7; font-weight: 300; }
.approach-right-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(212,146,42,0.1);
}
.arb-cell {
  background: rgba(255,255,255,0.03);
  padding: 2.25rem 1.75rem;
  transition: background 0.25s;
}
.arb-cell:hover { background: rgba(212,146,42,0.07); }
.arb-cell-n {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 300;
  color: var(--saffron); line-height: 1;
  letter-spacing: 0.02em; display: block; margin-bottom: 6px;
}
.arb-cell-l {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1.5;
}
.arb-cell.wide { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.75rem; }
.arb-cell.wide .arb-cell-n { font-size: 2rem; flex-shrink: 0; }
.arb-cell.wide .arb-cell-l { text-transform: none; letter-spacing: 0.02em; font-size: 0.8rem; color: rgba(255,255,255,0.68); }

/* ════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════ */
.page-hero {
  background: var(--slate-deep);
  padding: 148px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,146,42,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(212,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 5rem; align-items: end; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400; color: #fff;
  line-height: 1.1; margin-top: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--saffron); }
.page-hero-desc { font-size: 0.93rem; color: var(--text-on-dark); line-height: 1.9; font-weight: 300; padding-bottom: 6px; }
.page-hero-rule { height: 1px; background: linear-gradient(to right, rgba(212,146,42,0.5), transparent); margin-top: 56px; }

/* SERVICE BLOCKS */
.services-body { background: #fff; padding: 80px 0; }
.svc-block {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 5rem; align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:first-child { padding-top: 0; }
.svc-block:last-child { border-bottom: none; }
.svc-block.rev { direction: rtl; }
.svc-block.rev > * { direction: ltr; }
.svc-aside {
  background: var(--warm-grey);
  border-top: 2px solid var(--saffron);
  padding: 2.25rem 2rem;
  position: sticky; top: 96px;
}
.svc-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300; color: rgba(212,146,42,0.2); line-height: 1; display: block; margin-bottom: 1rem; }
.svc-aside h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--slate); margin-bottom: 1rem; line-height: 1.2; }
.svc-aside p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
.svc-tag {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.5rem;
}
.tag {
  padding: 3px 10px;
  background: var(--saffron-pale); border: 1px solid var(--saffron-muted);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--saffron-warm);
}
.svc-content {}
.svc-content h4 {
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 10px;
}
.svc-content h4::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.svc-points { list-style: none; display: flex; flex-direction: column; gap: 0; }
.svc-points li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-body);
  line-height: 1.75; font-weight: 300;
}
.svc-points li:last-child { border-bottom: none; }
.svc-point-arrow { color: var(--saffron); flex-shrink: 0; font-size: 0.75rem; margin-top: 4px; }
.svc-note {
  background: var(--saffron-pale);
  border-left: 2px solid var(--saffron);
  padding: 1rem 1.25rem; margin-top: 1.75rem;
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.7; font-weight: 300;
}
.svc-note strong { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--saffron-warm); margin-bottom: 4px; }

/* EXCLUSIONS SECTION */
.exclusions-sec { background: var(--warm-grey); padding: 72px 0; }
.excl-inner {
  border: 1px solid var(--border);
  border-left: 3px solid var(--saffron);
  background: #fff;
  padding: 2.75rem;
}
.excl-inner h3 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 10px;
}
.excl-inner > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem; }
.excl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.excl-cell {
  background: var(--warm-grey);
  padding: 1.25rem 1rem; text-align: center;
  font-size: 0.8rem; color: var(--text-muted);
  font-weight: 400; line-height: 1.5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.excl-x { display: none; }
.excl-icon-wrap {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(28,43,58,0.10);
  padding: 12px;
}
.excl-icon-wrap svg {
  width: 48px; height: 48px;
}

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.about-intro { background: #fff; padding: 96px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-vis {
  background: var(--slate);
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-vis::before { display: none; }
.about-vis-inner {
  position: absolute; inset: 16px;
  border: 1px solid rgba(212,146,42,0.12);
  display: flex; align-items: center; justify-content: center;
}
.about-vis-text {
  font-family: var(--font-serif);
  font-size: 5rem; font-weight: 300;
  color: rgba(212,146,42,0.12);
  letter-spacing: 0.08em;
  user-select: none;
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--slate);
  line-height: 1.15; margin-top: 1.25rem; margin-bottom: 1.5rem;
}
.about-text h2 em { font-style: italic; color: var(--saffron); }
.about-text p { font-size: 0.93rem; color: var(--text-body); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin-top: 2.25rem;
}
.about-hl {
  background: var(--warm-grey);
  padding: 1.25rem 1.5rem;
  border-top: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.about-hl:hover { border-top-color: var(--saffron); background: var(--saffron-pale); }
.about-hl h4 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron); margin-bottom: 5px; }
.about-hl p { font-size: 0.83rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; margin: 0; }

/* DIFFERENTIATORS */
.diff-sec { background: var(--slate); padding: 96px 0; position: relative; overflow: hidden; }
.diff-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,146,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,146,42,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(212,146,42,0.12);
  margin-top: 3.5rem; position: relative; z-index: 1;
}
.diff-card {
  background: var(--slate-mid);
  padding: 2.25rem 2rem;
  transition: background 0.25s;
}
.diff-card:hover { background: var(--slate-light); }
.diff-card-icon { font-size: 1.6rem; margin-bottom: 1.25rem; display: block; color: #ffffff; }
.diff-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: #fff; margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.diff-card p { font-size: 0.84rem; color: var(--text-on-dark); line-height: 1.8; font-weight: 300; }
.diff-sec .label { justify-content: center; }

/* ADVISORY MODEL */
.model-sec { background: var(--ivory); padding: 96px 0; }
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.model-left h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400; color: var(--slate);
  line-height: 1.2; margin-bottom: 1.25rem;
}
.model-left p { font-size: 0.92rem; color: var(--text-body); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
.model-points { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.model-pt {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border); border-top: none;
  transition: background 0.2s;
}
.model-pt:first-child { border-top: 1px solid var(--border); }
.model-pt:hover { background: var(--saffron-pale); }
.model-pt-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--saffron);
  flex-shrink: 0; width: 72px; padding-top: 2px;
}
.model-pt-text { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; font-weight: 300; }
.model-right {
  background: var(--slate);
  padding: 2.5rem;
  position: relative;
}
.model-right::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent);
}
.model-right h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: #fff; margin-bottom: 1.5rem; letter-spacing: 0.04em; }
.model-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.model-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.86rem; color: rgba(255,255,255,0.82);
  font-weight: 300;
}
.model-list li:last-child { border-bottom: none; }
.model-list li::before { content: '—'; color: var(--saffron); flex-shrink: 0; opacity: 0.7; }

/* ════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; position: relative; z-index: 2; isolation: isolate; }
.contact-left-panel {
  background: var(--slate);
  padding: 80px 56px; min-height: 700px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-left-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,146,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,146,42,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.contact-left-panel::after {
  content: '';
  position: absolute; bottom: -20%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.clp-inner { position: relative; z-index: 1; }
.clp-inner h2 {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 400; color: #fff;
  line-height: 1.15; margin-top: 1.25rem; margin-bottom: 1.25rem;
}
.clp-inner > p { font-size: 0.92rem; color: var(--text-on-dark); line-height: 1.9; font-weight: 300; margin-bottom: 2.75rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.ci { display: flex; align-items: flex-start; gap: 1rem; }
.ci-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(212,146,42,0.3);
  background: rgba(212,146,42,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron); font-size: 0.95rem; margin-top: 2px;
}
.ci-lbl { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.60); display: block; margin-bottom: 3px; }
.ci-val { font-size: 0.92rem; color: rgba(255,255,255,0.78); font-weight: 300; }

.contact-right-panel { padding: 80px 64px; background: var(--ivory); position: relative; z-index: 3; }
.contact-right-panel h3 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400; color: var(--slate);
  margin-bottom: 0.5rem;
}
.contact-right-panel > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2.25rem; font-weight: 300; line-height: 1.8; }

/* FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fg { display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 5; }
.fg.full { grid-column: 1 / -1; }
label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.req { color: var(--saffron); }
input:not([type="checkbox"]):not([type="radio"]), select, textarea {
  background: #fff; border: 1px solid var(--border);
  padding: 12px 15px; color: var(--text-dark);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300;
  outline: none; width: 100%; border-radius: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
input:not([type="checkbox"])::placeholder, textarea::placeholder { color: #B0A898; font-weight: 300; }
input:not([type="checkbox"]):not([type="radio"]):focus, select:focus, textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(212,146,42,0.1);
}
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B0A898' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; grid-column: 1 / -1; position: relative; z-index: 5; }
.form-check input[type="checkbox"] { width: 15px; height: 15px; margin-top: 3px; flex-shrink: 0; accent-color: var(--saffron); cursor: pointer; }
.form-check label { font-size: 0.78rem; color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 300; font-family: var(--font-sans); }
.form-check a { color: var(--slate); font-weight: 600; text-decoration: underline; }
.submit-btn {
  grid-column: 1 / -1; background: var(--slate);
  color: #fff; border: none; padding: 14px;
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; width: 100%;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.submit-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; bottom: 0; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,146,42,0.15), transparent);
  transition: left 0.45s;
  pointer-events: none;
}
.submit-btn:hover { background: var(--slate-mid); }
.submit-btn:hover::after { left: 100%; }
.success-note {
  display: none; background: #F0FAF4; border-left: 2px solid #3D9A6A;
  padding: 1rem 1.25rem; color: #246B45;
  font-size: 0.87rem; grid-column: 1 / -1; font-weight: 300;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: var(--slate-deep); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(212,146,42,0.1);
}
.footer-brand { }
.footer-brand .logo { margin-bottom: 1.5rem; display: inline-flex; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.58); line-height: 1.85; max-width: 280px; font-weight: 300; }
.footer-col h4 {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col li, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.58); font-weight: 300; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover, .footer-col li:hover { color: rgba(255,255,255,0.75); }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.58); font-weight: 300; margin-bottom: 0.5rem; line-height: 1.7; }
.footer-bottom {
  padding: 1.6rem 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.48); font-weight: 300; }

/* ════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════ */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1080px) {
  .hero-inner, .intro-grid, .approach-grid, .about-intro-grid, .model-grid, .page-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-panel { display: none; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .svc-block, .svc-block.rev { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .svc-aside { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left-panel { min-height: auto; padding: 60px 2.5rem; }
  .contact-right-panel { padding: 60px 2.5rem; }
  .excl-grid { grid-template-columns: 1fr 1fr; }
  .approach-right-block { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-links + * { display: none; }
  .ham { display: flex; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .approach-right-block { grid-template-columns: 1fr; }
  .excl-grid { grid-template-columns: 1fr 1fr; }
  .arb-cell.wide { grid-column: auto; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
