/* SLA Finance — logo colours
   Navy #000844 · Orange #FF9C00 */

:root {
  --navy: #000844;
  --navy-mid: #00115c;
  --navy-deep: #000322;
  --navy-soft: #e8ecf8;
  --gold: #ff9c00;
  --gold-deep: #e08a00;
  --gold-soft: rgba(255, 156, 0, 0.16);
  --ivory: #f7f4ec;
  --paper: #fffdf8;
  --ink: #000844;
  --muted: #5d6478;
  --line: rgba(255, 156, 0, 0.28);
  --shadow: 0 28px 60px rgba(0, 8, 68, 0.14);
  --radius: 18px;
  --header-h: 88px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

body.nav-open { overflow: hidden; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.container-wide {
  width: min(1360px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(255, 156, 0, 0.32);
}

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

.btn-line {
  background: transparent;
  color: var(--ivory);
  border-color: var(--gold);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--ivory);
}

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

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(16, 22, 40, 0.16);
}

.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

/* ---------- Type ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .kicker { justify-content: center; }

.section-head h2,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.15rem, 4.2vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-head h2 em,
.display em {
  font-style: italic;
  font-weight: 450;
  color: var(--gold-deep);
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 450;
  color: var(--gold);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy .kicker,
.page-hero .kicker { color: var(--gold); }

.section { padding: 100px 0; }

.section-dark {
  background: var(--navy);
  color: var(--ivory);
}

.section-dark .section-head h2 em { color: var(--gold); }
.section-dark .section-head p { color: rgba(247, 243, 234, 0.68); }
.section-dark .kicker { color: var(--gold); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
  transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 156, 0, 0.22);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-inner img {
  width: 92px;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(0, 8, 68, 0.42);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, height 0.35s;
}

.site-header.is-scrolled {
  background: rgba(0, 8, 68, 0.96);
  border-bottom-color: var(--line);
  height: 76px;
}

.header-inner {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  height: 62px;
}

.brand-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.site-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 10px 14px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--gold); }

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

.nav-portals { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 11px;
}

.header-actions .btn.is-on,
.header-actions .btn-line.is-on {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.3s;
}

.menu-toggle span { top: 21px; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--ivory);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 3, 34, 0.92) 0%, rgba(0, 8, 68, 0.7) 46%, rgba(0, 8, 68, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 3, 34, 0.35) 0%, transparent 42%, rgba(0, 3, 34, 0.78) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 156, 0, 0.4) 0.6px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.hero-orbit {
  position: absolute;
  right: -8%;
  top: 12%;
  width: min(520px, 46vw);
  height: min(520px, 46vw);
  border: 1px solid rgba(255, 156, 0, 0.18);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: spin 48s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 156, 0, 0.12);
  border-radius: 50%;
}

.hero-orbit::before { inset: 42px; }
.hero-orbit::after {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 0;
  top: 18px;
  left: 50%;
  border-radius: 50%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 64px) 0 150px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}

.hero-copy h1 {
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 520px;
  color: rgba(247, 243, 234, 0.74);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 156, 0, 0.22);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 22px;
}

.hero-seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.hero-seal small {
  display: block;
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-quick a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(247, 243, 234, 0.1);
  color: var(--ivory);
}

.hero-quick a:first-child { border-top: 0; }

.hero-quick i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
}

.hero-quick strong { display: block; font-size: 0.95rem; }
.hero-quick span { color: rgba(247, 243, 234, 0.62); font-size: 0.82rem; }

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(247, 243, 234, 0.28);
  cursor: pointer;
  padding: 0;
}

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

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 156, 0, 0.2);
  background: rgba(0, 3, 34, 0.72);
  backdrop-filter: blur(10px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 14px 28px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.marquee-track span::before {
  content: "◆";
  margin-right: 28px;
  opacity: 0.55;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.pillar {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 22, 40, 0.06);
  transition: transform 0.35s var(--ease);
}

.pillar:hover { transform: translateY(-6px); }

.pillar .num {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.4rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 8px 0 10px;
}

.pillar p { color: var(--muted); font-size: 0.95rem; }

.pillar ul {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.pillar li {
  padding-left: 18px;
  position: relative;
  font-size: 0.9rem;
  color: var(--ink);
}

.pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--gold-deep);
}

/* ---------- About / house ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.photo-stack {
  position: relative;
  min-height: 460px;
}

.photo-stack img {
  width: 78%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.photo-stack img:last-child {
  position: absolute;
  width: 54%;
  height: 240px;
  right: 0;
  bottom: 0;
  border: 8px solid var(--ivory);
}

.gold-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.gold-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

.house-values {
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}

.house-values li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 22, 40, 0.08);
}

.house-values em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.2rem;
}

.house-values h3 {
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 4px;
}

.house-values p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Services bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ivory);
  background: var(--navy-mid) center/cover no-repeat;
  isolation: isolate;
  transition: transform 0.35s var(--ease);
}

.service-tile:hover { transform: translateY(-4px); }

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 8, 68, 0.1), rgba(0, 8, 68, 0.86));
  z-index: -1;
}

.service-tile.wide { grid-column: span 3; grid-row: span 2; }
.service-tile.mid { grid-column: span 3; }
.service-tile.sm { grid-column: span 2; }

.service-tile i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 12px;
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.service-tile p {
  color: rgba(247, 243, 234, 0.72);
  font-size: 0.92rem;
  margin-top: 6px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--paper);
  border: 1px solid rgba(16, 22, 40, 0.07);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 8, 68, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-card p { color: var(--muted); }

/* ---------- Portals ---------- */
.portals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portal-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 32px 28px;
  min-height: 260px;
  background: linear-gradient(165deg, var(--navy-mid), var(--navy));
  color: var(--ivory);
  border: 1px solid rgba(255, 156, 0, 0.18);
  display: flex;
  flex-direction: column;
}

.portal-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 156, 0, 0.16);
}

.portal-card span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.portal-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin: 10px 0 12px;
}

.portal-card p {
  color: rgba(247, 243, 234, 0.68);
  flex: 1;
}

.portal-card .btn { align-self: flex-start; margin-top: 22px; min-height: 44px; }

/* ---------- Cases ---------- */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.case-card {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--navy) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 8, 68, 0.05), rgba(0, 8, 68, 0.88));
}

.case-card > * { position: relative; }

.case-card .tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.case-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.case-card p { color: rgba(247, 243, 234, 0.74); margin-top: 8px; }

/* ---------- Testimonials ---------- */
.quote-stage {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  min-height: 240px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
  pointer-events: none;
}

.quote-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.quote-slide p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-style: italic;
  line-height: 1.45;
}

.quote-slide h5 {
  margin-top: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.quote-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(247, 243, 234, 0.28);
  cursor: pointer;
  padding: 0;
}

.quote-nav button.is-active { background: var(--gold); }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-row div {
  padding: 36px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-row div:last-child { border-right: 0; }

.stats-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  color: var(--gold);
}

.stats-row span {
  color: rgba(247, 243, 234, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.light-stats {
  background: var(--paper);
  border-color: rgba(16, 22, 40, 0.08);
}

.light-stats div { border-color: rgba(16, 22, 40, 0.08); }
.light-stats strong { color: var(--navy); }
.light-stats span { color: var(--muted); }

/* ---------- CTA ---------- */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 120% at 100% 0%, rgba(255, 156, 0, 0.28), transparent 55%),
    linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: var(--ivory);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

.cta-band p { color: rgba(247, 243, 234, 0.68); margin-top: 6px; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: end start;
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: var(--navy-deep);
  color: var(--ivory);
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 3, 34, 0.9), rgba(0, 8, 68, 0.45));
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 500;
  margin: 10px 0 14px;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }

.crumbs {
  display: flex;
  gap: 10px;
  color: rgba(247, 243, 234, 0.65);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crumbs a { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
.contact-form-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid rgba(16, 22, 40, 0.07);
  box-shadow: 0 16px 40px rgba(0, 8, 68, 0.06);
}

.contact-ways {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-ways a,
.contact-ways div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  background: var(--ivory);
}

.contact-ways i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  flex-shrink: 0;
}

.contact-ways strong { display: block; font-size: 0.95rem; }
.contact-ways span { color: var(--muted); font-size: 0.88rem; }

.map-frame {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
}

.map-frame iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid rgba(16, 22, 40, 0.1);
  background: #fff;
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--ink);
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.form-note {
  min-height: 22px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-note.ok { color: #157347; }
.form-note.err { color: #b42318; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 72px 0 28px;
}

.footer-goldline {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(247, 243, 234, 0.64);
  max-width: 360px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.socials a:hover { background: var(--gold); color: var(--navy); }

.footer-links,
.footer-contact { display: grid; gap: 8px; align-content: start; }

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(247, 243, 234, 0.72);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 156, 0, 0.16);
  color: rgba(247, 243, 234, 0.5);
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.whatsapp-float img { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: translateY(-3px); }

/* ---------- Feature tabs (about) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.why-list button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(16, 22, 40, 0.1);
  padding: 18px 18px;
  cursor: pointer;
  color: var(--muted);
}

.why-list button.is-active {
  border-left-color: var(--gold-deep);
  color: var(--ink);
  background: linear-gradient(90deg, rgba(255, 156, 0, 0.12), transparent);
}

.why-list strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 4px;
}

.why-visual {
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  background: var(--navy) center/cover no-repeat;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .hero-layout,
  .about-grid,
  .contact-grid,
  .why-grid,
  .footer-top { grid-template-columns: 1fr; }
  .hero-orbit { display: none; }
  .photo-stack { min-height: 380px; }
  .service-tile.wide,
  .service-tile.mid { grid-column: span 6; }
  .service-tile.sm { grid-column: span 3; }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    background: rgba(0, 8, 68, 0.97);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    display: none;
  }

  body.nav-open .site-nav { display: block; }

  .site-nav ul { flex-direction: column; align-items: stretch; }
  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .nav-portals { display: list-item; }
  .nav-portals a {
    margin-top: 4px;
    text-align: center;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold) !important;
  }
  .nav-portals a::after { display: none; }

  .pillars,
  .portals-grid,
  .case-grid,
  .service-list,
  .stats-row { grid-template-columns: 1fr; }

  .stats-row div { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
  .bento { grid-auto-rows: 180px; }
  .service-tile.sm { grid-column: span 6; }
  .quote-stage { min-height: 280px; }
}

@media (max-width: 560px) {
  .hero-layout { padding-bottom: 130px; }
  .hero-actions .btn { width: 100%; }
  .brand-logo { height: 52px; padding: 4px 8px; }
  .brand-logo img { height: 42px; }
  .photo-stack img { height: 280px; width: 86%; }
  .photo-stack img:last-child { height: 160px; }
}
