/* ============================================================
   NORRKUST KONSULT — DESIGN SYSTEM v4
   2025 Premium · Editorial · Sharp · No compromise
   ============================================================ */

/* === TOKENS ============================================== */
:root {
  --black:       #060606;
  --near-black:  #0E0E0E;
  --off-white:   #F2F1ED;
  --white:       #FFFFFF;
  --gold:        #BF9430;
  --gold-light:  #D4AA4A;
  --gold-faint:  rgba(191,148,48,0.07);
  --ink:         #0E0E0E;
  --ink-2:       #3A3A3A;
  --muted:       #888;
  --border:      rgba(14,14,14,0.09);
  --border-dark: rgba(255,255,255,0.07);

  --font-sans:   'Syne', 'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-serif:  'DM Serif Display', serif;

  --header-h:   68px;
  --container:  1320px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-theme="blue"] {
  --ink:       #113248;
  --ink-2:     #4c697b;
  --off-white: #eef6fb;
  --muted:     #7390a2;
  --border:    rgba(17,50,72,0.12);
  --gold:      #5d99bf;
  --gold-light:#7db5d7;
  --gold-faint: rgba(93,153,191,0.12);
}
[data-theme="blue"] body {
  background:
    radial-gradient(circle at 10% 16%, rgba(15, 91, 134, 0.08) 0 3px, transparent 4px),
    radial-gradient(circle at 31% 22%, rgba(15, 91, 134, 0.07) 0 3px, transparent 4px),
    radial-gradient(circle at 57% 27%, rgba(15, 91, 134, 0.06) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 24%, rgba(15, 91, 134, 0.06) 0 3px, transparent 4px),
    linear-gradient(118deg, transparent 9.7%, rgba(15, 91, 134, 0.05) 10%, transparent 10.3%),
    linear-gradient(147deg, transparent 29.7%, rgba(15, 91, 134, 0.05) 30%, transparent 30.3%),
    #ffffff;
  background-attachment: fixed;
}

/* === RESET =============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul   { list-style: none; }

/* === GRAIN =============================================== */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  z-index: 9990; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-a 0.85s steps(1) infinite;
}
@keyframes grain-a {
  0%,100%{ transform:translate(0,0); } 10%{ transform:translate(-3%,-2%); }
  20%{ transform:translate(-8%,4%); } 30%{ transform:translate(5%,-7%); }
  40%{ transform:translate(-4%,10%); } 50%{ transform:translate(7%,2%); }
  60%{ transform:translate(11%,-1%); } 70%{ transform:translate(-1%,8%); }
  80%{ transform:translate(-10%,0); } 90%{ transform:translate(8%,5%); }
}
@media(prefers-reduced-motion:reduce){ .grain{ animation:none; } }

/* === CUSTOM CURSOR ======================================= */
#cursor { display: none; }
#cursor-dot {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s, background .2s;
}
#cursor-ring {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid rgba(191,148,48,0.5);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .45s var(--ease), height .45s var(--ease), border-color .3s;
}
#cursor.hovering #cursor-dot  { width: 44px; height: 44px; background: rgba(191,148,48,0.15); }
#cursor.hovering #cursor-ring { width: 52px; height: 52px; border-color: rgba(191,148,48,0.7); }

/* === CANVAS ============================================== */
#heroCanvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity 1.2s;
}
#heroCanvas.visible { opacity: 1; }
[data-theme="blue"] #heroCanvas {
  opacity: 0.92;
}

/* === CONTAINER =========================================== */
.container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

/* === HEADER ============================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 500;
  transition: transform .45s var(--ease), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(6,6,6,0.94);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.05);
}
.header.hidden { transform: translateY(-100%); }

.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-line {
  display: block;
  line-height: 1;
}
.logo-line-primary {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.logo-line-secondary {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.logo:hover .logo-line-primary {
  color: var(--gold-light);
}

/* Nav */
.nav { display: flex; align-items: center; gap: 0; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 8px 15px; letter-spacing: 0.01em;
  transition: color .2s; white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 15px; right: 15px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown summary {
  list-style: none;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.nav-dropdown-toggle::before {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .25s var(--ease);
}
.nav-dropdown[open] .nav-dropdown-toggle {
  color: #fff;
}
.nav-dropdown[open] .nav-dropdown-toggle::after {
  transform: scaleX(1);
}
.nav-dropdown[open] .nav-dropdown-toggle::before {
  transform: rotate(-135deg) translateY(-1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 8px;
  min-width: 240px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}
.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: background .2s, color .2s, transform .2s;
}
.nav-dropdown-link:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  transform: translateX(2px);
}
.nav-link-cta {
  font-family: var(--font-sans);
  background: var(--gold); color: #fff !important; padding: 9px 22px;
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background .2s, transform .3s var(--ease);
  margin-left: 8px;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: rgba(255,255,255,0.35); border-radius: 1px;
  transition: color .2s, background .2s; position: relative;
}
.theme-toggle:hover { color: #fff; background: rgba(255,255,255,0.05); }
.theme-icon { position: absolute; transition: opacity .25s, transform .25s; }
.theme-icon-moon { opacity: 0; transform: rotate(-30deg) scale(0.8); }
[data-theme="blue"] .theme-icon-sun  { opacity: 0; transform: rotate(30deg) scale(0.8); }
[data-theme="blue"] .theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="blue"] .header.scrolled {
  background: rgba(238,246,251,0.92);
  border-bottom-color: rgba(17,50,72,0.08);
}
[data-theme="blue"] .header {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  border-bottom-color: rgba(17,50,72,0.06);
  box-shadow: 0 18px 34px rgba(14,43,69,0.06);
}
[data-theme="blue"] .logo-line-primary,
[data-theme="blue"] .nav-link,
[data-theme="blue"] .theme-toggle {
  color: #113248;
}
[data-theme="blue"] .logo-line-secondary {
  color: rgba(17,50,72,0.52);
}
[data-theme="blue"] .nav-link:hover,
[data-theme="blue"] .nav-link.active {
  color: #0f5b86;
}
[data-theme="blue"] .nav-link-cta {
  background: linear-gradient(180deg, #12527b, #0f4364);
  color: #fff !important;
}
[data-theme="blue"] .nav-link-cta:hover {
  background: linear-gradient(180deg, #1a648f, #115173);
}
[data-theme="blue"] .nav-dropdown[open] .nav-dropdown-toggle {
  color: #0f5b86;
}
[data-theme="blue"] .nav-dropdown-menu {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,50,72,0.08);
  box-shadow: 0 26px 44px rgba(14,43,69,0.12);
}
[data-theme="blue"] .nav-dropdown-link {
  color: rgba(17,50,72,0.72);
}
[data-theme="blue"] .nav-dropdown-link:hover {
  background: rgba(93,153,191,0.10);
  color: #0f5b86;
}
[data-theme="blue"] .theme-toggle:hover {
  color: #0f5b86;
  background: rgba(93,153,191,0.12);
}
[data-theme="blue"] .menu-btn span {
  background: rgba(17,50,72,0.72);
}
[data-theme="blue"] .hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(28,89,130,0.24), transparent 24%),
    radial-gradient(circle at 74% 30%, rgba(28,89,130,0.18), transparent 28%),
    linear-gradient(180deg, rgba(246,251,255,0.72) 0%, rgba(230,241,249,0.64) 58%, rgba(238,246,251,0.72) 100%);
}
[data-theme="blue"] .hero::before {
  background: radial-gradient(circle, rgba(24,84,124,0.26) 0%, transparent 70%);
  filter: blur(28px);
}
[data-theme="blue"] .hero::after {
  background: radial-gradient(circle, rgba(24,84,124,0.18) 0%, transparent 70%);
  filter: blur(44px);
}
[data-theme="blue"] .hero-grid {
  background-image:
    linear-gradient(rgba(17,50,72,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,50,72,0.1) 1px, transparent 1px);
  opacity: 1;
}
[data-theme="blue"] .hero-headline,
[data-theme="blue"] .hero-year,
[data-theme="blue"] .hero-sub {
  color: #113248;
}
[data-theme="blue"] .hero-label {
  color: rgba(17,50,72,0.68);
}
[data-theme="blue"] .hs-item {
  border-color: rgba(17,50,72,0.08);
  background: rgba(255,255,255,0.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
[data-theme="blue"] .hs-val {
  color: #113248;
}
[data-theme="blue"] .hs-lbl {
  color: rgba(17,50,72,0.6);
}
[data-theme="blue"] .btn-primary {
  background: linear-gradient(180deg, #12527b, #0f4364);
}
[data-theme="blue"] .btn-ghost {
  border-color: rgba(17,50,72,0.16);
  color: #113248;
}
[data-theme="blue"] .btn-ghost:hover {
  border-color: #0f5b86;
  color: #0f5b86;
}
[data-theme="blue"] .marquee-band {
  background: linear-gradient(180deg, #dcebf6, #d4e6f2);
  border-bottom-color: rgba(17,50,72,0.06);
}
[data-theme="blue"] .marquee-track span {
  color: rgba(17,50,72,0.48);
}

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 34px; height: 34px; align-items: center; justify-content: center;
}
.menu-btn span {
  display: block; width: 20px; height: 1px;
  background: rgba(255,255,255,0.65);
  transition: transform .35s var(--ease), opacity .2s, width .3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header-progress {
  position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .08s linear;
}

/* === HERO ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  display: grid;
  overflow: hidden;
}

/* Ambient orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero::before {
  width: clamp(380px, 52vw, 720px);
  height: clamp(380px, 52vw, 720px);
  right: -12%;
  top: -18%;
  background: radial-gradient(circle, rgba(191,148,48,0.09) 0%, transparent 70%);
  animation: orb-drift-a 18s ease-in-out infinite alternate;
  filter: blur(40px);
}
.hero::after {
  width: clamp(280px, 38vw, 560px);
  height: clamp(280px, 38vw, 560px);
  left: -8%;
  bottom: 15%;
  background: radial-gradient(circle, rgba(191,148,48,0.055) 0%, transparent 70%);
  animation: orb-drift-b 22s ease-in-out infinite alternate;
  filter: blur(60px);
}
@keyframes orb-drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-5%, 8%) scale(1.08); }
}
@keyframes orb-drift-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6%, -10%) scale(1.12); }
}

/* Fine grid mesh overlay */
.hero-grid {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 0;
  min-height: 100svh;
}

/* top label row */
.hero-top-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: auto;
  padding-top: clamp(24px, 4vh, 56px);
  opacity: 0; animation: fade-up .6s .1s forwards var(--ease);
}
.hero-label {
  font-family: var(--font-body);
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 10px;
}
.hero-label-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.6);} }
.hero-year {
  font-family: var(--font-body);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.14);
}

/* Main headline block */
.hero-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-end;
  padding-bottom: clamp(80px,12vh,130px);
  margin-top: auto;
}

.hero-headline-wrap {}

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #fff;
  margin-bottom: 0;
  overflow: hidden;
}
.hero-headline .lw { display: block; overflow: hidden; padding-bottom: 0.05em; }
.hero-headline .ll {
  display: block;
  transform: translateY(105%);
  animation: slide-up .9s forwards var(--ease);
}
.hero-headline .lw:nth-child(1) .ll { animation-delay: .1s; }
.hero-headline .lw:nth-child(2) .ll { animation-delay: .22s; }
.hero-headline .lw:nth-child(3) .ll { animation-delay: .34s; }
.hero-headline .ll-accent {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  color: var(--gold); letter-spacing: -0.03em;
}

.hero-aside {
  display: flex; flex-direction: column; gap: 32px; padding-bottom: 8px;
  opacity: 0; animation: fade-up .7s .55s forwards var(--ease);
}
.hero-sub {
  font-size: 0.96rem; line-height: 1.78;
  color: rgba(255,255,255,0.38); border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 20px;
}
.hero-actions { display: flex; flex-direction: column; gap: 10px; }

/* Stats strip inside hero bottom */
.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0; animation: fade-up .6s .85s forwards var(--ease);
  flex-shrink: 0;
}
.hs-item {
  flex: 1; padding: 22px clamp(16px,3vw,44px);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background .2s;
}
.hs-item:last-child { border-right: none; }
.hs-item:hover { background: rgba(255,255,255,0.02); }
.hs-val {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem,2.8vw,2.4rem);
  font-weight: 700; letter-spacing: -0.06em;
  color: #fff; line-height: 1; margin-bottom: 5px;
}
.hs-lbl {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
}

/* === BUTTONS ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 14px 28px;
  transition: background .18s, color .18s, border-color .18s,
              transform .4s var(--ease), box-shadow .2s;
  will-change: transform; white-space: nowrap; text-transform: uppercase;
}
.btn svg { transition: transform .25s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(5px); }

.btn-primary {
  background: var(--gold); color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
  transition: background .18s, clip-path .3s var(--ease), transform .4s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
}

.btn-white {
  background: #fff; color: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
  transition: background .18s, clip-path .3s var(--ease), transform .4s var(--ease);
}
.btn-white:hover {
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
}

.btn-outline {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.45); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.45);
  padding-left: 0; padding-right: 0; text-transform: none;
}
.btn-ghost:hover { color: #fff; }

/* === MARQUEE ============================================= */
.marquee-band {
  background: var(--near-black);
  overflow: hidden; padding-block: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-band[hidden] {
  display: none !important;
}
.marquee-band,
.nh-marquee {
  display: none !important;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
  padding: 0 30px; white-space: nowrap; flex-shrink: 0;
}
.marquee-dot { color: var(--gold) !important; padding: 0 10px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media(prefers-reduced-motion:reduce){ .marquee-track{ animation:none; } }

/* === SECTION BASE ======================================== */
.section { position: relative; padding-block: clamp(88px, 11vw, 148px); }
.section-dark { background: var(--black); color: #fff; }
[data-theme="blue"] .section-dark {
  background: linear-gradient(180deg, rgba(18,82,122,0.96), rgba(11,55,86,0.98));
  color: #fff;
}
[data-theme="blue"] .section-dark .s-title,
[data-theme="blue"] .section-dark .s-tag,
[data-theme="blue"] .section-dark .av-row strong,
[data-theme="blue"] .section-dark .av-num {
  color: #fff;
}
[data-theme="blue"] .section-dark p,
[data-theme="blue"] .about-lead,
[data-theme="blue"] .section-dark .av-row p {
  color: rgba(234,244,255,0.82);
}
[data-theme="blue"] .svc-row:hover,
[data-theme="blue"] .ps:hover {
  background: rgba(93,153,191,0.08);
}
[data-theme="blue"] .about-visual {
  box-shadow: 0 28px 54px rgba(14,43,69,0.16);
}

.s-tag {
  font-family: var(--font-body);
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.s-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.s-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 800; letter-spacing: -0.055em; line-height: 0.95;
  margin-bottom: 24px;
}
.s-title em {
  font-style: italic; font-family: var(--font-serif);
  font-weight: 400; color: var(--muted); letter-spacing: -0.03em;
}
.s-desc {
  font-size: 0.97rem; line-height: 1.76; color: var(--muted); max-width: 46ch;
}

/* === SERVICES ============================================ */
.services-section { background: var(--off-white); }
[data-theme="blue"] .services-section { background: #eaf4fb; }

.svc-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px); align-items: end;
  padding-bottom: clamp(48px,6vw,80px);
  border-bottom: 1px solid var(--border); margin-bottom: 0;
}

.services-list { border-top: 1px solid var(--border); }

.services-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(44px, 5vw, 72px);
}
.service-bento {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: clamp(28px, 3vw, 40px);
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: 0 18px 34px rgba(0,0,0,0.04);
  overflow: hidden;
  position: relative;
}
.service-bento-feature {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.service-bento-dark {
  grid-column: span 5;
  background: linear-gradient(180deg, #0f2030 0%, #173247 100%);
  color: #fff;
}
.service-bento-split {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 24px;
  align-items: center;
}
.service-bento-image {
  grid-column: span 4;
  padding: 0;
}
.service-bento-image-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}
.service-bento-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-bento-num {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.service-bento h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: 16px;
}
.service-bento p {
  font-size: 0.94rem;
  line-height: 1.74;
  color: var(--muted);
  max-width: 42ch;
}
.service-bento-dark h3,
.service-bento-dark p,
.service-bento-dark .service-bento-link {
  color: #f5fbff;
}
.service-bento-dark p {
  color: rgba(234,244,255,0.78);
}
.service-bullets {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
}
.service-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.service-bento-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.service-bento-link svg {
  transition: transform .25s var(--ease);
}
.service-bento:hover .service-bento-link svg {
  transform: translateX(4px);
}
.service-bento-media,
.service-bento-art {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
.service-bento-media img,
.service-bento-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-bento-media {
  align-self: stretch;
}
.service-bento-media-tall {
  min-height: 100%;
}
.service-bento-media-top {
  min-height: 260px;
}
.service-bento-image .service-bento-copy,
.service-bento-image-wide .service-bento-copy {
  padding: clamp(24px, 3vw, 34px);
}
.service-bento-art {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 54%;
  height: 62%;
  opacity: 0.22;
  filter: grayscale(20%) saturate(0.9);
  pointer-events: none;
}
[data-theme="blue"] .service-bento {
  background: rgba(255,255,255,0.82);
  border-color: rgba(17,50,72,0.08);
  box-shadow: 0 24px 40px rgba(14,43,69,0.08);
}
[data-theme="blue"] .service-bento-dark {
  background: linear-gradient(180deg, #12527b 0%, #0f4364 100%);
}
[data-theme="blue"] .service-bento-link {
  color: #113248;
}
[data-theme="blue"] .service-bento-dark .service-bento-link {
  color: #f5fbff;
}

.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr 0.9fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: padding-left .4s var(--ease);
}
.svc-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--gold-faint);
  transition: width .4s var(--ease);
}
.svc-row::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  height: 1px; width: 0; background: var(--gold);
  transition: width .45s var(--ease);
}
.svc-row:hover::before { width: 100%; }
.svc-row:hover::after  { width: 100%; }
.svc-row:hover { padding-left: 12px; }

.svc-num {
  font-family: var(--font-sans);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
  position: relative; z-index: 1;
}
.svc-title {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.1;
  color: var(--ink); position: relative; z-index: 1;
}
.svc-desc {
  font-size: 0.87rem; line-height: 1.68; color: var(--muted);
  position: relative; z-index: 1;
}
.svc-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background .2s, border-color .2s, transform .4s var(--ease);
}
.svc-row:hover .svc-arrow {
  background: var(--gold); border-color: var(--gold); color: #fff;
  transform: rotate(45deg);
}

/* === ABOUT =============================================== */
.about-section { background: var(--black); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,104px); align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: grayscale(25%);
  transition: filter .5s, transform .6s var(--ease);
}
.about-img-wrap:hover .about-img-main { filter: grayscale(0%); transform: scale(1.01); }
.about-img-sub {
  position: absolute; bottom: -28px; right: -28px;
  width: 46%; aspect-ratio: 1; object-fit: cover;
  border: 5px solid var(--black);
  filter: grayscale(20%);
}
.about-badge {
  position: absolute; top: 28px; left: -24px;
  background: var(--gold); color: #fff;
  padding: 18px 22px; z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
}
.about-badge-num {
  font-family: var(--font-sans);
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.06em;
  line-height: 1; display: block;
}
.about-badge-lbl {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.8;
}

.about-content { color: #fff; }
.about-content .s-title { color: #fff; }
.about-content .s-title em { color: rgba(255,255,255,0.3); }
.about-lead {
  font-size: 0.97rem; line-height: 1.78;
  color: rgba(255,255,255,0.42); margin-bottom: 36px;
}
.about-quote {
  padding-left: 22px; border-left: 2px solid var(--gold); margin-bottom: 40px;
}
.about-quote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.05rem,1.6vw,1.22rem);
  line-height: 1.58; color: rgba(255,255,255,0.72); margin: 0;
}
.about-values { border-top: 1px solid rgba(255,255,255,0.07); }
.av-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .2s;
}
.av-row:hover { background: rgba(255,255,255,0.015); padding-left: 8px; }
.av-num {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase;
  margin-top: 2px; flex-shrink: 0; width: 24px;
}
.av-row strong {
  display: block; font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 3px;
}
.av-row p { font-size: 0.83rem; color: rgba(255,255,255,0.32); line-height: 1.55; margin: 0; }

/* === PROCESS ============================================= */
.process-section { background: var(--off-white); }
[data-theme="blue"] .process-section { background: #eaf4fb; }

.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  margin-top: clamp(48px,6vw,88px);
}
.ps {
  padding: clamp(28px,3.5vw,44px) clamp(18px,2.5vw,32px);
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .2s;
}
.ps:last-child { border-right: none; }
.ps:hover { background: var(--gold-faint); }
.ps::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .45s var(--ease);
}
.ps:hover::after { width: 100%; }
.ps-num {
  font-family: var(--font-sans);
  font-size: 3rem; font-weight: 800; letter-spacing: -0.08em;
  color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 20px; display: block;
}
.ps-title {
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 10px; color: var(--ink);
}
.ps-desc { font-size: 0.85rem; line-height: 1.66; color: var(--muted); }

/* === EDITORIAL =========================================== */
.editorial-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.92));
}
[data-theme="blue"] .editorial-section {
  background: linear-gradient(180deg, rgba(234,244,251,0.76), rgba(245,250,255,0.96));
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
.editorial-story,
.editorial-quote,
.editorial-proof {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}
.editorial-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
  overflow: hidden;
}
.editorial-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.editorial-story-copy {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.editorial-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 42ch;
}
.editorial-side {
  display: grid;
  gap: 24px;
}
.editorial-quote,
.editorial-proof {
  padding: clamp(28px, 3vw, 38px);
}
.editorial-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.editorial-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.editorial-proof-list {
  display: grid;
  gap: 18px;
}
.editorial-proof-item {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.editorial-proof-item:first-child {
  padding-top: 0;
  border-top: 0;
}
.editorial-proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
  color: var(--ink);
}
.editorial-proof-item p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
}
[data-theme="blue"] .editorial-story,
[data-theme="blue"] .editorial-quote,
[data-theme="blue"] .editorial-proof {
  background: rgba(255,255,255,0.84);
  border-color: rgba(17,50,72,0.08);
  box-shadow: 0 22px 40px rgba(14,43,69,0.08);
}

/* === CTA ================================================= */
.cta-section {
  background: var(--black);
  padding-block: clamp(88px,11vw,148px);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(191,148,48,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem,5vw,5.2rem);
  font-weight: 800; letter-spacing: -0.055em; line-height: 0.95;
  color: #fff; max-width: 700px;
}
.cta-title em {
  font-style: italic; font-family: var(--font-serif);
  font-weight: 400; color: rgba(255,255,255,0.35); letter-spacing: -0.03em;
}

/* === CONTACT ============================================= */
.contact-section { background: var(--off-white); }
[data-theme="blue"] .contact-section { background: #e6f1f9; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px,7vw,104px); align-items: start;
}
.contact-intro-text {
  font-size: 0.95rem; line-height: 1.78; color: var(--muted); margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cdi {
  display: flex; align-items: center; gap: 16px;
  color: var(--ink); transition: opacity .2s;
}
.cdi:hover { opacity: 0.6; }
.cdi-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--muted);
  flex-shrink: 0; transition: border-color .2s, background .2s;
}
.cdi:hover .cdi-icon { border-color: var(--gold); background: var(--gold-faint); }
.cdi-lbl { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.cdi-val { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.contact-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ctag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 12px; border: 1px solid var(--border); color: var(--muted);
  transition: border-color .2s, color .2s;
}
.ctag:hover { border-color: var(--gold); color: var(--gold); }
[data-theme="blue"] .cdi-icon {
  background: rgba(255,255,255,0.72);
  border-color: rgba(17,50,72,0.10);
  box-shadow: 0 12px 24px rgba(14,43,69,0.06);
}
[data-theme="blue"] .ctag {
  background: rgba(255,255,255,0.68);
  border-color: rgba(17,50,72,0.10);
  color: #4c697b;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
[data-theme="blue"] .contact-form {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(17,50,72,0.08);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 40px rgba(14,43,69,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.form-input {
  width: 100%; padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.9rem;
  background: var(--white); border: 1px solid var(--border);
  color: var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none;
}
[data-theme="blue"] .form-input { background: rgba(255,255,255,0.82); }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(191,148,48,0.08); }
.form-input.invalid { border-color: #dc2626; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-select-wrap { position: relative; }
select.form-input { cursor: pointer; padding-right: 40px; }
.select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); }
.form-error { font-size: 0.72rem; color: #dc2626; min-height: 16px; }
.btn-form {
  background: var(--gold); color: #fff; border: none; position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 94% 100%, 0 100%);
  transition: background .18s, clip-path .3s var(--ease), transform .4s var(--ease);
}
.btn-form:hover {
  background: var(--gold-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
}
.btn-form.loading .btn-text,
.btn-form.loading .btn-arrow { opacity: 0; }
.btn-spinner {
  position: absolute; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite; opacity: 0; transition: opacity .2s;
}
.btn-form.loading .btn-spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: #16a34a;
  padding: 14px 18px;
  background: rgba(22,163,74,0.07); border: 1px solid rgba(22,163,74,0.18);
}

/* === FOOTER ============================================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: clamp(48px,6vw,80px);
}
[data-theme="blue"] .footer {
  background: linear-gradient(180deg, #d8e9f5 0%, #cfe2ef 100%);
  border-top-color: rgba(17,50,72,0.08);
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(28px,5vw,80px);
  padding-bottom: clamp(36px,4vw,56px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
[data-theme="blue"] .footer-inner {
  border-bottom-color: rgba(17,50,72,0.08);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.25); max-width: 32ch; }
[data-theme="blue"] .footer-tagline {
  color: rgba(17,50,72,0.62);
}
.fn-title {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 14px;
}
[data-theme="blue"] .fn-title {
  color: rgba(17,50,72,0.62);
}
.fn-group { display: flex; flex-direction: column; gap: 10px; }
.fn-group a { font-size: 0.86rem; color: rgba(255,255,255,0.38); transition: color .2s; }
.fn-group a:hover { color: rgba(255,255,255,0.85); }
[data-theme="blue"] .fn-group a {
  color: rgba(17,50,72,0.62);
}
[data-theme="blue"] .fn-group a:hover {
  color: #0f5b86;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px; font-size: 0.72rem;
  color: rgba(255,255,255,0.18); gap: 16px; flex-wrap: wrap;
}
[data-theme="blue"] .footer-bottom {
  color: rgba(17,50,72,0.54);
}

/* === PROCESS CARD GLOW =================================== */
.ps {
  position: relative;
}
.ps::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(191,148,48,0.06) 0%, transparent 65%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.ps:hover::before { opacity: 1; }

/* === SERVICES GLOW ACCENT ================================ */
.services-section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: clamp(300px,40vw,560px); height: clamp(300px,40vw,560px);
  background: radial-gradient(circle, rgba(191,148,48,0.04) 0%, transparent 70%);
  pointer-events: none; filter: blur(30px);
}
.services-section { position: relative; overflow: hidden; }

/* === STAT STRIP HOVER GLOW =============================== */
.hs-item {
  position: relative;
}
.hs-item::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .5s var(--ease);
}
.hs-item:hover::before { transform: scaleX(1); }

/* === CTA ANIMATED BORDER ================================= */
.cta-section {
  position: relative;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  animation: border-sweep 6s ease-in-out infinite;
}
@keyframes border-sweep {
  0%,100% { opacity: 0.2; transform: scaleX(0.3) translateX(0); }
  50% { opacity: 0.7; transform: scaleX(1) translateX(0); }
}

/* === GLASSMORPHISM CONTACT FORM ========================== */
.contact-form {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(191,148,48,0.08);
  padding: clamp(24px,3vw,40px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.05), 0 8px 16px rgba(0,0,0,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%);
}
[data-theme="blue"] .contact-form {
  background: rgba(255,255,255,0.72);
  border-color: rgba(17,50,72,0.08);
}

/* === SECTION NUMBER REVEAL =============================== */
.ps-num {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
}

/* === MOTION — STAGGER CHILDREN =========================== */
[data-motion-group] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-motion-group].motion-visible > * {
  opacity: 1; transform: none;
}
[data-motion-group].motion-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-motion-group].motion-visible > *:nth-child(2) { transition-delay: 80ms; }
[data-motion-group].motion-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-motion-group].motion-visible > *:nth-child(4) { transition-delay: 240ms; }

/* === ABOUT SECTION GLOW ================================== */
.about-section {
  position: relative; overflow: hidden;
}
.about-section::after {
  content: '';
  position: absolute; right: -10%; top: 10%;
  width: 55%; height: 55%; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,148,48,0.045) 0%, transparent 70%);
  pointer-events: none; filter: blur(50px);
}

/* === CONTACT SECTION AMBIENT ============================ */
.contact-section {
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; left: -5%; bottom: 0;
  width: 45%; height: 80%;
  background: radial-gradient(circle, rgba(191,148,48,0.035) 0%, transparent 70%);
  pointer-events: none; filter: blur(40px);
}

/* === FOOTER BRAND ACCENT ================================= */
.footer-brand {
  position: relative;
}
.footer-brand::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold); margin-bottom: 18px;
}

/* === MARQUEE GOLD DOT PULSE ============================= */
.marquee-dot {
  animation: mdot-pulse 2s ease-in-out infinite;
}
@keyframes mdot-pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

/* === ABOUT IMG STACK SHADOW ============================== */
.about-img-main {
  box-shadow: 0 32px 72px rgba(0,0,0,0.42);
}

/* === SCROLL TO TOP ======================================= */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--gold); color: #fff;
  display: grid; place-items: center; z-index: 200;
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .4s var(--ease), background .2s;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 82% 100%, 0 100%);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--gold-light); }

/* === REVEAL ============================================== */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.fade-up.visible { opacity: 1; transform: none; }

/* === KEYFRAMES =========================================== */
@keyframes fade-up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes slide-up { to { transform:translateY(0); } }

/* === RESPONSIVE ========================================== */
@media(max-width:1100px){
  .services-showcase { grid-template-columns: 1fr 1fr; }
  .service-bento,
  .service-bento-feature,
  .service-bento-dark,
  .service-bento-split,
  .service-bento-image,
  .service-bento-image-wide { grid-column: span 1; }
  .service-bento-feature,
  .service-bento-split,
  .service-bento-image-wide { grid-template-columns: 1fr; }
  .service-bento-media-tall { min-height: 300px; }
  .editorial-grid,
  .editorial-story { grid-template-columns: 1fr; }
  .hero-main { grid-template-columns: 1fr 280px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px){
  :root{ --header-h: 60px; }
  .container { width: min(100% - 44px, var(--container)); }
  .nav {
    position: fixed; top: var(--header-h); left:0; right:0;
    background: rgba(6,6,6,0.97); backdrop-filter: blur(28px);
    flex-direction: column; align-items: stretch;
    padding: 12px 16px 20px; gap: 2px;
    transform: translateY(-110%); opacity: 0;
    transition: transform .38s var(--ease), opacity .3s;
    pointer-events: none; z-index: 490;
  }
  [data-theme="blue"] .nav {
    background: rgba(246,251,255,0.96);
    border-bottom: 1px solid rgba(17,50,72,0.08);
    box-shadow: 0 20px 36px rgba(14,43,69,0.10);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 13px 14px; font-size: 0.9rem; }
  .nav-dropdown {
    display: block;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 14px;
    font-size: 0.9rem;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 0;
    padding: 0 0 0 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-dropdown-link {
    padding: 10px 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
  }
  [data-theme="blue"] .nav-dropdown-link {
    color: rgba(17,50,72,0.66);
  }
  .nav-link-cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .menu-btn { display: flex; }
  .hero-main { grid-template-columns: 1fr; gap: 28px; }
  .hero-headline {
    font-size: clamp(3rem, 12vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }
  .hero-aside { opacity: 1; animation: none; }
  .hero-stats { flex-wrap: wrap; }
  .hs-item { flex: 1 1 50%; }
  .hs-item:nth-child(2) { border-right: none; }
  .hs-item:nth-child(3),
  .hs-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .svc-header { grid-template-columns: 1fr; gap: 20px; }
  .services-showcase { grid-template-columns: 1fr; }
  .service-bento { min-height: 0; }
  .editorial-story { min-height: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-sub { display: none; }
  .about-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
@media(max-width:500px){
  .process-grid { grid-template-columns: 1fr; }
  .ps { border-right: none; border-bottom: 1px solid var(--border); }
  .ps:last-child { border-bottom: none; }
  .hero-top-row { display: none; }
  .hero-headline {
    font-size: clamp(2.2rem, 10.2vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }
  .hero-headline .ll-accent { font-size: 0.88em; }
  .hs-item { flex: 1 1 100%; border-right: none !important; }
}
@media(max-width:420px){
  .container { width: min(100% - 32px, var(--container)); }
  .hero-main { gap: 22px; }
  .hero-headline {
    font-size: clamp(1.95rem, 9.4vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.022em;
  }
  .hero-headline .ll-accent { font-size: 0.82em; }
  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.68;
    padding-left: 16px;
  }
}
