/* ---------------------------------------------------------
   Roth Interim Management — Stylesheet
   Cinematic dark/glossy design system, multi-page site
   --------------------------------------------------------- */

:root {
  --bg: #ffffff;
  --bg-alt: #eef3fb;
  --surface: #ffffff;
  --text: #0e1626;
  --text-muted: #56637a;
  --border: #dbe4f1;

  --ink: #05070d;
  --ink-soft: #0b1220;
  --ink-border: rgba(255, 255, 255, 0.12);
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.7);

  --accent: #175ce0;
  --accent-2: #6fa1ff;
  --accent-dark: #0d3f9e;
  --accent-tint: rgba(23, 92, 224, 0.08);
  --accent-tint-strong: rgba(23, 92, 224, 0.16);

  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --max-width: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 88px;
  --shadow-soft: 0 14px 36px rgba(14, 22, 38, 0.08);
  --shadow-hover: 0 22px 48px rgba(14, 22, 38, 0.14);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  position: relative;
}

/* Film-grain overlay for depth, applied over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 112px 0; position: relative; }
section.alt { background: var(--bg-alt); }
section.tight { padding: 80px 0; }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1, h2 { font-family: var(--font-display); font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 16px; color: var(--text-muted); }

.section-head {
  max-width: 660px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head p { margin: 0; }
.section-head.left { margin: 0 0 56px; text-align: left; }
.section-head.wide { max-width: 820px; }

/* ---------- Buttons (glossy) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s cubic-bezier(0.16, 0.84, 0.44, 1);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent) 55%, var(--accent-dark));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 14px 30px rgba(23, 92, 224, 0.35);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 18px 40px rgba(23, 92, 224, 0.45); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled,
.site-header--light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(16, 26, 46, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: padding 0.3s ease;
}
.site-header.scrolled .nav,
.site-header--light .nav { padding: 14px 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent) 60%, var(--accent-dark));
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset, 0 10px 24px rgba(23, 92, 224, 0.35);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.55), transparent 45%);
}
.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.3s ease;
}
.brand-text span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-top: 3px;
  transition: color 0.3s ease;
}
.site-header.scrolled .brand-text strong,
.site-header--light .brand-text strong { color: var(--text); }
.site-header.scrolled .brand-text span,
.site-header--light .brand-text span { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  transition: color 0.2s ease;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: right 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.site-header.scrolled .nav-links a,
.site-header--light .nav-links a { color: var(--text-muted); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.site-header--light .nav-links a:hover,
.site-header--light .nav-links a.active { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.site-header .nav-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.site-header.scrolled .nav-cta .btn-ghost,
.site-header--light .nav-cta .btn-ghost {
  color: var(--text);
  border-color: var(--border);
}

.btn-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.site-header.scrolled .btn-linkedin,
.site-header--light .btn-linkedin {
  color: var(--accent);
  background: var(--accent-tint);
  border-color: var(--border);
}
.btn-linkedin:hover {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.2s ease;
}
.site-header.scrolled .nav-toggle span,
.site-header--light .nav-toggle span { background: var(--text); }

/* ---------- Dark cinematic surface (hero + page-banner + CTA band) ---------- */
.dark-surface {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--on-dark-muted);
  isolation: isolate;
}
.dark-surface .eyebrow { color: var(--accent-2); }
.dark-surface h1, .dark-surface h2, .dark-surface h3 { color: #fff; }
.dark-surface p { color: var(--on-dark-muted); }

.aurora {
  position: absolute;
  inset: -10%;
  z-index: -2;
  pointer-events: none;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite alternate;
}
.aurora span:nth-child(1) {
  width: 46vw; height: 46vw;
  top: -12%; left: -8%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation-delay: 0s;
}
.aurora span:nth-child(2) {
  width: 38vw; height: 38vw;
  bottom: -18%; right: -6%;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  animation-delay: -8s;
}
.aurora span:nth-child(3) {
  width: 28vw; height: 28vw;
  top: 30%; right: 20%;
  background: radial-gradient(circle, #3a7bff 0%, transparent 70%);
  animation-delay: -14s;
  opacity: 0.35;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 6%) scale(1.12); }
}

.dark-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(5, 7, 13, 0) 40%, var(--ink) 100%),
    radial-gradient(1200px 600px at var(--x, 50%) var(--y, 30%), var(--accent-tint-strong), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.dark-surface:hover::before { opacity: 1; }

/* ---------- Hero (home) ---------- */
.hero {
  padding: calc(var(--header-h) + 64px) 0 96px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-top {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-copy {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 460px;
}
.hero-copy h1 { font-size: clamp(1.9rem, 2.6vw, 2.6rem); }
.hero .lead { font-size: 1.1rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-portrait {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portrait-glow {
  position: absolute;
  inset: -36px;
  z-index: -1;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(111, 161, 255, 0.45), transparent 72%);
  filter: blur(8px);
  will-change: transform;
}
.hero-portrait .frame {
  position: relative;
  border-radius: var(--radius);
  padding: 3px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.5), rgba(111, 161, 255, 0.15) 40%, rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow-dark);
}
.hero-portrait img {
  width: 340px;
  height: 440px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
  display: block;
  filter: grayscale(0.15) contrast(1.06) saturate(1.05);
}
.hero-portrait .tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  white-space: nowrap;
  background: rgba(11, 18, 32, 0.75);
  border: 1px solid var(--ink-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-dark);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.hero-portrait .tag span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  margin-top: 2px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--on-dark-muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-cue .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ---------- Glass stat bar ---------- */
.stat-bar {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.stat-bar .stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-bar .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #fff, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-bar .stat span {
  font-size: 0.78rem;
  color: var(--on-dark-muted);
}

/* ---------- Glossy cards (light sections) ---------- */
.card-glossy {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card-glossy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}

/* ---------- Quick facts (home) ---------- */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-facts .fact {
  padding: 26px 24px;
  text-align: left;
}
.quick-facts .fact strong { display: block; font-size: 0.98rem; margin-bottom: 4px; }
.quick-facts .fact span { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 34px 28px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform;
  background: linear-gradient(165deg, #eef0f4, #e3e7ee);
  border-color: rgba(255, 255, 255, 0.08);
}
.service-card h3 { margin-bottom: 10px; color: var(--text); }
.service-card p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

.services-teaser-cta { text-align: center; margin-top: 44px; }

/* ---------- References ---------- */
.ref-featured {
  padding: 44px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.ref-featured .company-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.ref-logo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.ref-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; filter: saturate(1.25) contrast(1.08); }
.ref-logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #1f7a4d;
  letter-spacing: 0.02em;
}
.ref-logo--fallback .ref-logo-fallback { display: block; }
.ref-featured .company {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ref-featured .quote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.ref-featured .result {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}
.ref-featured .result strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--accent);
}
.ref-featured .result span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.mini-chart { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.mini-chart-row span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.mini-chart-track {
  height: 8px;
  border-radius: 999px;
  background: var(--accent-tint);
  overflow: hidden;
}
.mini-chart-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transition: width 1.4s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.ref-card { padding: 24px 28px; will-change: transform; min-height: 230px; }
.ref-card strong { display: block; font-size: 0.95rem; margin-bottom: 6px; }
.ref-card span { display: block; font-size: 0.82rem; color: var(--text-muted); padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.ref-card ul { list-style: none; margin: 0; padding: 0; }
.ref-card li {
  position: relative;
  padding-left: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ref-card li:last-child { margin-bottom: 0; }
.ref-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.ref-grid-more { margin-top: 20px; }
.ref-grid-more[hidden] { display: none; }
.ref-toggle { display: flex; margin: 32px auto 0; padding: 12px 26px; font-size: 0.86rem; }
.ref-note { margin-top: 20px; font-size: 0.82rem; color: var(--text-muted); text-align: center; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-grid .frame {
  border-radius: var(--radius);
  padding: 3px;
  background: linear-gradient(160deg, var(--accent-tint-strong), transparent 50%);
  box-shadow: var(--shadow-soft);
}
.about-grid img {
  border-radius: calc(var(--radius) - 3px);
  filter: saturate(1.05) contrast(1.03);
}
.about-facts {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-facts div { border-left: 2px solid var(--accent); padding-left: 14px; }
.about-facts strong { display: block; font-size: 0.9rem; }
.about-facts span { font-size: 0.82rem; color: var(--text-muted); }

.qual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 760px; margin: 0 auto; }
.qual-col h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
}
.qual-col ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
}
.qual-col ul li:last-child { border-bottom: none; }

.dark-surface .qual-col h3 { color: var(--accent-2); }
.dark-surface .qual-col ul li { color: var(--on-dark-muted); border-bottom-color: var(--ink-border); }

/* ---------- Skills marquee ticker ---------- */
.marquee-divider {
  max-width: var(--max-width);
  margin: 56px auto 28px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.marquee-divider::before,
.marquee-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-border), transparent);
}
.marquee-divider .eyebrow { margin: 0; white-space: nowrap; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

/* ---------- Contact teaser (home) ---------- */
.cta-band {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-band .eyebrow { display: block; }
.cta-band p { margin-bottom: 32px; }
.cta-band .btn { padding: 16px 40px; }

/* ---------- Booking banner ---------- */
.booking-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 44px;
  margin-bottom: 28px;
}
.booking-banner-text .eyebrow { display: block; }
.booking-banner-text h2 { margin: 4px 0 8px; font-size: 1.5rem; }
.booking-banner-text p { margin: 0; max-width: 520px; color: var(--text-muted); }
.booking-banner-cta { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 720px) {
  .booking-banner { flex-direction: column; text-align: center; padding: 32px 28px; }
  .booking-banner-text p { max-width: none; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info .item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px;
}
.contact-info .item .ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info .item strong { display: block; font-size: 0.92rem; }
.contact-info .item span, .contact-info .item a { font-size: 0.9rem; color: var(--text-muted); }
.contact-info .item a:hover { color: var(--accent); }

.contact-form {
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 0.92rem;
  background: var(--bg-alt);
  resize: vertical;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint-strong);
}
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-muted);
  padding: 48px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-row .legal-links { display: flex; gap: 20px; }
.footer-row .legal-links a { font-size: 0.85rem; color: var(--on-dark-muted); }
.footer-row .legal-links a:hover { color: #fff; }
.footer-row .copyright { font-size: 0.82rem; color: var(--on-dark-muted); }

/* ---------- Legal pages ---------- */
.legal-page {
  padding: calc(var(--header-h) + 56px) 0 96px;
  max-width: 780px;
  margin: 0 auto;
}
.legal-page h1 { margin-bottom: 8px; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-page h2 { font-size: 1.15rem; margin-top: 40px; font-family: var(--font-base); }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 0.95rem; }
.legal-page ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.legal-page .back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
              transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
  transition: clip-path 1.2s cubic-bezier(0.16, 0.84, 0.44, 1),
              transform 1.6s cubic-bezier(0.16, 0.84, 0.44, 1),
              opacity 0.6s ease;
}
.reveal-img.in-view { clip-path: inset(0 0 0 0); transform: scale(1); }

.services-grid .reveal:nth-child(2),
.ref-grid .reveal:nth-child(2),
.qual-grid .reveal:nth-child(2),
.quick-facts .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3),
.ref-grid .reveal:nth-child(3),
.qual-grid .reveal:nth-child(3),
.quick-facts .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4),
.ref-grid .reveal:nth-child(4),
.quick-facts .reveal:nth-child(4) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(5),
.ref-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services-grid .reveal:nth-child(6),
.ref-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; transition: none; }
  .mini-chart-bar { transition: none !important; }
  .dark-surface::before { display: none; }
  .aurora span, .scroll-cue .chevron, .marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1360px) {
  .hero .hero-top { flex-direction: column; min-height: auto; text-align: center; gap: 40px; }
  .hero-copy { position: relative; left: auto; top: auto; transform: none; max-width: 100%; }
  .hero-portrait { position: relative; left: auto; top: auto; transform: none; }
  .stat-bar { position: static; transform: none; width: 100%; max-width: 420px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 980px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .qual-grid, .ref-grid, .quick-facts { grid-template-columns: 1fr 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .ref-featured { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 76px 0; }
  .hero { min-height: unset; padding-bottom: 72px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--ink-border);
    gap: 20px;
  }
  .nav-links.open a { color: #fff; }
  .services-grid, .qual-grid, .ref-grid, .quick-facts { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-portrait .frame { width: min(300px, 78vw); }
  .hero-portrait img { width: 100%; height: auto; aspect-ratio: 3/4; }
  .hero-portrait .tag { max-width: min(300px, 78vw); white-space: normal; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .ref-featured .result { border-left: none; border-top: 2px solid var(--accent); padding-left: 0; padding-top: 14px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
