/* ══════════════════════════════════════════════
   BRAND COLOURS  (used sparingly as accents)
══════════════════════════════════════════════ */
:root {
  --brand-orange: #f07828;
  --brand-pink: #e8509a;
  --brand-blue: #1a7fd4;
  --brand-cyan: #3cc8f0;
  --brand-gray: #b0b8c4;
  --brand-magenta: #c81870;
  --brand-yellow: #f5c400;
  --brand-gold: #c8903a;
}

/* ══════════════════════════════════════════════
   DARK  — deep charcoal, not pure black
══════════════════════════════════════════════ */
[data-theme="dark"] {
  --bg: #060618;
  --bg2: #0d0d23;
  --bg3: #0f0f25;
  --fg: #ede9e4;
  --fg2: #a8a4a0;
  --fg3: #5c5860;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --card: #1c1c28;
  --nav: rgba(17, 17, 24, 0.95);
  --accent: var(--brand-orange);
  --accent2: var(--brand-pink);
  --glow-a: rgba(240, 120, 40, 0.18);
  --glow-b: rgba(232, 80, 154, 0.14);
}

/* ══════════════════════════════════════════════
   LIGHT  — warm ivory, not harsh white
══════════════════════════════════════════════ */
[data-theme="light"] {
  --bg: #faf8f5;
  --bg2: #f2ede7;
  --bg3: #fff8fd;
  --fg: #1a1714;
  --fg2: #5a5450;
  --fg3: #9a9490;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.14);
  --card: #ffffff;
  --nav: rgba(250, 248, 245, 0.95);
  --accent: var(--brand-orange);
  --accent2: var(--brand-pink);
  --glow-a: rgba(240, 120, 40, 0.08);
  --glow-b: rgba(232, 80, 154, 0.06);
}

/* ══════════════════════════════════════════════
   RESET
══════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  transition: background .5s, color .5s;
}

img {
  display: block
}

a {
  cursor: none
}

button {
  cursor: none
}

/* Subtle grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.028'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════ */
#cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background .25s, width .2s, height .2s;
  will-change: left, top;
}

#cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 120, 40, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, opacity .3s;
  will-change: left, top;
}

body:has(a:hover) #cur-ring,
body:has(button:hover) #cur-ring {
  width: 52px;
  height: 52px;
  border-color: var(--accent2);
}

body:has(a:hover) #cur {
  background: var(--accent2);
}

/* ══════════════════════════════════════════════
   THEME TOGGLE  — night sky button
══════════════════════════════════════════════ */
#toggle {
  position: relative;
  z-index: 500;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border2);
  cursor: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
  border-color: var(--accent);
}

/* Dark icon — night sky with stars + crescent */
.toggle-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #0a0e2a 0%, #050818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s, transform .4s;
}

/* Crescent via two overlapping circles clipping */
.crescent {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8d88a;
  box-shadow: 0 0 8px rgba(232, 216, 138, .6), 0 0 20px rgba(232, 216, 138, .3);
}

.crescent::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #050818;
}

/* Stars */
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 3px #fff;
  animation: twinkle 2s ease-in-out infinite;
}

.s1 {
  width: 2px;
  height: 2px;
  top: 8px;
  left: 10px;
  animation-delay: 0s
}

.s2 {
  width: 1.5px;
  height: 1.5px;
  top: 14px;
  left: 34px;
  animation-delay: .5s
}

.s3 {
  width: 2px;
  height: 2px;
  top: 30px;
  left: 12px;
  animation-delay: 1s
}

.s4 {
  width: 1px;
  height: 1px;
  top: 20px;
  left: 20px;
  animation-delay: 1.5s
}

.s5 {
  width: 1.5px;
  height: 1.5px;
  top: 38px;
  left: 30px;
  animation-delay: .8s
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

/* Light icon — sun rays */
.toggle-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #fffbe0 0%, #fde688 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s, transform .4s;
}

.sun-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5a800;
  box-shadow: 0 0 0 3px rgba(245, 168, 0, .3), 0 0 16px rgba(245, 168, 0, .6);
}

/* hide/show based on theme */
[data-theme="dark"] .toggle-dark {
  opacity: 1;
}

[data-theme="dark"] .toggle-light {
  opacity: 0;
}

[data-theme="light"] .toggle-dark {
  opacity: 0;
}

[data-theme="light"] .toggle-light {
  opacity: 1;
}

/* ══════════════════════════════════════════════
   SECTION NAV DOTS
══════════════════════════════════════════════ */
.section-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: .8rem .5rem;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp .8s ease 2.2s both;
}

[data-theme="light"] .section-nav {
  background: rgba(255, 255, 255, 0.35);
}

.section-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  cursor: none;
}

.section-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg3);
  transition: transform .3s, background .3s, box-shadow .3s;
}

.section-dot:hover span {
  transform: scale(1.4);
  background: var(--fg2);
}

.section-dot.active span {
  transform: scale(1.5);
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(240, 120, 40, 0.2);
}

/* Tooltip label on hover */
.section-dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--card);
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  letter-spacing: .12em;
  white-space: nowrap;
  padding: .35rem .7rem;
  border-radius: 4px;
  border: 1px solid var(--border2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.section-dot:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Hide on small screens */
@media (max-width: 768px) {
  .section-nav {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background .5s;
  animation: fadeDown .8s ease .1s both;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  object-fit: contain;
}

.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--fg);
}

.nav-sub {
  font-size: .58rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: .12em;
  color: var(--fg3);
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg2);
  text-decoration: none;
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid var(--border2);
  padding: .55rem 1.5rem;
  text-decoration: none;
  transition: background .3s, border-color .3s, color .3s;
  background: transparent;
}

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: .3s;
}

/* ══════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ══════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--nav);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 5vw;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mm-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--fg);
  cursor: none;
}

.mm-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mm-links a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg);
}

.mm-cta {
  margin-top: auto;
  text-align: center;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 5rem 5vw 8rem;
  position: relative;
  overflow: hidden;
}

/* ── Hero full-section glow burst on first load ── */
.hero::after {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%,
      rgba(240, 120, 40, 0.38) 0%,
      rgba(232, 80, 154, 0.22) 30%,
      rgba(26, 127, 212, 0.12) 55%,
      transparent 80%);
  animation: heroGlowBurst 3s ease-out 0.2s both;
  will-change: opacity, transform;
}

[data-theme="light"] .hero::after {
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%,
      rgba(240, 120, 40, 0.22) 0%,
      rgba(232, 80, 154, 0.14) 30%,
      rgba(26, 127, 212, 0.08) 55%,
      transparent 80%);
}

@keyframes heroGlowBurst {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: blur(60px);
  }

  30% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(40px);
  }

  60% {
    opacity: 0.6;
    transform: scale(1.15);
    filter: blur(80px);
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
    filter: blur(120px);
  }
}

/* Ambient glows — subtle, in corners only */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.go-1 {
  width: 550px;
  height: 550px;
  background: var(--brand-orange);
  right: -8%;
  top: -20%;
  opacity: .09;
}

.go-2 {
  width: 450px;
  height: 450px;
  background: var(--brand-pink);
  left: -6%;
  bottom: -15%;
  opacity: .08;
}

/* Fine dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

[data-theme="light"] .hero-dots {
  background-image: radial-gradient(circle, rgba(0, 0, 0, .08) 1px, transparent 1px);
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

/* Logo */
.hero-logo-wrap {
  display: inline-block;
  position: relative;
  margin: 2.5rem 0;
}

.hero-logo-wrap img {
  max-width: min(620px, 88vw);
  height: auto;
  animation: logoIn 1.2s cubic-bezier(.22, 1, .36, 1) .3s both,
    logoFloat 6s ease-in-out 1.8s infinite;

  will-change: transform, filter;
}

/* .hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255, 255, 255, .32) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: sweep 3s ease-out 1.5s both;
  pointer-events: none;
} */

/* ═══════════════════════════════════════
   FULL HERO SWEEP EFFECT
═══════════════════════════════════════ */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(110deg,
      transparent 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.08) 48%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.08) 52%,
      transparent 60%,
      transparent 100%);

  background-size: 250% 100%;
  opacity: 0;
  animation: heroSweep 4.5s ease-out 2.5s both;
}

@keyframes logoIn {
  0% {
    opacity: 0;
    transform: scale(.5) translateY(50px);
    filter: blur(18px) brightness(.3)
  }

  60% {
    opacity: 1;
    transform: scale(1.04) translateY(-5px);
    filter: blur(0) brightness(1.08)
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) brightness(1)
  }
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes logoShine {

  0%,
  100% {
    filter: drop-shadow(0 4px 24px rgba(240, 120, 40, .28)) drop-shadow(0 0 8px rgba(232, 80, 154, .18))
  }

  50% {
    filter: drop-shadow(0 8px 48px rgba(240, 120, 40, .48)) drop-shadow(0 0 20px rgba(232, 80, 154, .32))
  }
}

/* @keyframes sweep {
  0% {
    background-position: 220% 0;
    opacity: 0
  }

  15% {
    opacity: 1
  }

  100% {
    background-position: -220% 0;
    opacity: 0
  }
} */

@keyframes heroSweep {
  0% {
    background-position: 250% 0;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    background-position: -250% 0;
    opacity: 0;
  }
}

/* Tagline pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem 1rem;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .7s ease .9s both;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* Animated letters */
.brand-word {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: .4rem;
  opacity: 0;
  animation: fadeUp .9s ease 1.1s both;
}

.letter {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8.5vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
  /* default neutral — brand colours only on specific letters */
  animation: lBounce 3.5s ease-in-out infinite;
  position: relative;
  transition: transform .2s, filter .2s;
}

.letter::after {
  content: attr(data-l);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  filter: blur(10px);
  opacity: .25;
  animation: lGlow 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* Only these letters get brand colour */
.l-i {
  color: var(--brand-pink);
  animation-delay: 0s;
}

.l-d {
  color: var(--brand-pink);
  animation-delay: .08s;
}

.l-e {
  color: var(--brand-pink);
  animation-delay: .16s;
}

.l-a1 {
  color: var(--brand-pink);
  animation-delay: .24s;
}

.l-s {
  color: var(--brand-orange);
  animation-delay: .32s;
}

.l-m {
  color: var(--brand-blue);
  animation-delay: .40s;
}

.l-a2 {
  color: var(--brand-gray);
  animation-delay: .48s;
}

.l-r {
  color: var(--brand-blue);
  animation-delay: .56s;
}

.l-t {
  color: var(--brand-blue);
  animation-delay: .64s;
}

.letter:hover {
  transform: translateY(-12px) scale(1.2) !important;
  filter: brightness(1.3);
  animation-play-state: paused;
  z-index: 2;
}

@keyframes lBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

@keyframes lGlow {

  0%,
  100% {
    opacity: .2;
    filter: blur(8px)
  }

  50% {
    opacity: .5;
    filter: blur(14px)
  }
}

.brand-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: .25em;
  color: var(--fg2);
  opacity: 0;
  animation: fadeUp .8s ease 1.25s both;
  margin-bottom: .5rem;
}

.brand-pvt {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  letter-spacing: .28em;
  color: var(--fg3);
  opacity: 0;
  animation: fadeUp .8s ease 1.35s both;
  margin-bottom: 2.5rem;
}

/* Divider line */
.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp .8s ease 1.4s both;
}

.hero-sub {
  font-size: .98rem;
  line-height: 1.9;
  color: var(--fg2);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: fadeUp .8s ease 1.5s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease 1.65s both;
  margin-bottom: 6rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeUpCenter {
  from {
    opacity: 0;
    transform: translate(-50%, 24px)
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0)
  }
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUpCenter 1s ease 2s both;
}

.scroll-cue span {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg3)
}

.scroll-bar {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scPulse 2.2s ease-in-out infinite;
}

@keyframes scPulse {

  0%,
  100% {
    opacity: .25
  }

  50% {
    opacity: 1
  }
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2.2rem;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(240, 120, 40, .35);
  transition: transform .2s, box-shadow .3s, background .25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 120, 40, .52);
  background: var(--brand-orange)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2.2rem;
  border: 1px solid var(--border2);
  color: var(--fg);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: border-color .3s, background .3s, color .3s, transform .2s;
}

.btn-outline:hover {
  border-color: var(--accent2);
  background: rgba(232, 80, 154, .06);
  color: var(--fg);
  transform: translateY(-2px)
}

/* ══════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════ */
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-body {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--fg2);
}

/* thin decorative line */
.deco-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
}

.about-logo-bg {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-logo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 40%, rgba(240, 120, 40, .12), transparent 65%),
    radial-gradient(ellipse at 70% 70%, rgba(232, 80, 154, .10), transparent 65%);
}

.about-logo-bg img {
  width: 75%;
  height: auto;
  position: relative;
  z-index: 1
}

/* stat strip */
.stat-strip {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border2);
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat-item {}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
}

.stat-number.orange {
  color: var(--brand-orange)
}

.stat-number.pink {
  color: var(--brand-pink)
}

.stat-number.blue {
  color: var(--brand-blue)
}

.stat-label {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-top: .3rem
}

.about-right {}

.about-text {
  font-size: .97rem;
  line-height: 1.9;
  color: var(--fg2);
  margin-bottom: 1.4rem;
}

/* brand colour pills */
.palette-row {
  display: flex;
  gap: .5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.palette-chip {
  padding: .3rem .8rem;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .08);
}

[data-theme="light"] .palette-chip {
  border-color: rgba(0, 0, 0, .08)
}

.pc-orange {
  background: rgba(240, 120, 40, .12);
  color: var(--brand-orange)
}

.pc-pink {
  background: rgba(232, 80, 154, .12);
  color: var(--brand-pink)
}

.pc-blue {
  background: rgba(26, 127, 212, .12);
  color: var(--brand-blue)
}

.pc-cyan {
  background: rgba(60, 200, 240, .12);
  color: var(--brand-cyan)
}

.pc-gray {
  background: rgba(176, 184, 196, .12);
  color: var(--brand-gray)
}

.pc-mag {
  background: rgba(200, 24, 112, .12);
  color: var(--brand-magenta)
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: 8rem 5vw;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  transition: background .5s;
}

.svc-wrap {
  max-width: 1260px;
  margin: 0 auto;
}

.svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: end;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.svc-intro {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--fg2);
  max-width: 400px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.svc-card {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .35s;
  background: transparent;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--card-accent, var(--brand-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.svc-card:hover::before {
  transform: scaleX(1)
}

.svc-card:hover {
  background: var(--bg3)
}

/* individual card accents — only 4 distinct */
.ca-orange {
  --card-accent: var(--brand-orange)
}

.ca-pink {
  --card-accent: var(--brand-pink)
}

.ca-blue {
  --card-accent: var(--brand-blue)
}

.ca-cyan {
  --card-accent: var(--brand-cyan)
}

.svc-num {
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .2em;
  color: var(--fg3);
  margin-bottom: 1.4rem;
}

.svc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.3rem;
  color: var(--card-accent, var(--brand-orange));
  opacity: .8;
  transition: opacity .3s, transform .35s;
}

.svc-card:hover .svc-icon {
  opacity: 1;
  transform: scale(1.1) rotate(5deg)
}

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: .7rem;
  transition: color .3s;
}

.svc-card:hover .svc-name {
  color: var(--card-accent, var(--brand-orange))
}

.svc-desc {
  font-size: .8rem;
  line-height: 1.75;
  color: var(--fg3);
  transition: color .3s
}

.svc-card:hover .svc-desc {
  color: var(--fg2)
}

.svc-arr {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  color: var(--card-accent, var(--brand-orange));
  opacity: 0;
  transform: translate(-6px, 6px);
  font-size: .85rem;
  transition: opacity .3s, transform .3s;
}

.svc-card:hover .svc-arr {
  opacity: 1;
  transform: translate(0, 0)
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process {
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
}

.process-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.proc-step {
  padding: 2.5rem;
  background: var(--bg);
  transition: background .35s;
  position: relative;
  overflow: hidden;
}

.proc-step:hover {
  background: var(--bg2)
}

.proc-step::after {
  content: attr(data-n);
  position: absolute;
  right: 2rem;
  bottom: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  transition: color .4s;
}

.proc-step:hover::after {
  color: rgba(240, 120, 40, .08)
}

.proc-step-num {
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.proc-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: .7rem;
}

.proc-step-desc {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--fg2)
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: 8rem 5vw;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  transition: background .5s;
}

.contact-wrap {
  max-width: 1050px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-info {}

.contact-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.4rem;
  color: var(--fg);
}

.contact-tagline em {
  font-style: italic;
  color: var(--accent2)
}

.contact-blurb {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--fg2);
  margin-bottom: 2rem;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  margin-bottom: .8rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .3s, transform .2s;
}

.cinfo-item:hover {
  border-color: var(--border2);
  transform: translateX(4px)
}

.cinfo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.cinfo-lbl {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: .25rem;
}

.cinfo-val {
  font-size: .93rem;
  color: var(--fg);
  font-weight: 400;
}

.cinfo-val a {
  color: inherit;
  text-decoration: none;
  transition: color .2s
}

.cinfo-val a:hover {
  color: var(--accent)
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-field label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg3);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--card);
  border: 1px solid var(--border2);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  padding: .75rem 1rem;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  transition: border-color .3s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--fg3)
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent)
}

.form-field select option {
  background: var(--bg2);
  color: var(--fg)
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.2rem;
  background: #25D366;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  margin-top: .5rem;
  box-shadow: 0 6px 26px rgba(37, 211, 102, .35);
  transition: transform .2s, box-shadow .3s, background .25s;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .55);
  background: #1ebe5d;
}

.btn-submit .wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════ */
.cta-strip {
  padding: 7rem 5vw;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.cta-g1 {
  position: absolute;
  width: 600px;
  height: 400px;
  background: var(--brand-orange);
  border-radius: 50%;
  top: -60%;
  left: -10%;
  filter: blur(130px);
  opacity: .07
}

.cta-g2 {
  position: absolute;
  width: 500px;
  height: 400px;
  background: var(--brand-pink);
  border-radius: 50%;
  bottom: -60%;
  right: -8%;
  filter: blur(130px);
  opacity: .07
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto
}

.cta-logo {
  max-width: 260px;
  height: auto;
  margin: 0 auto 2.5rem;
  animation: none
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--fg);
}

.cta-title em {
  font-style: italic;
  color: var(--accent)
}

.cta-sub {
  font-size: .93rem;
  color: var(--fg2);
  margin-bottom: 3rem;
  line-height: 1.8
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  padding: 2.2rem 5vw;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg);
  transition: background .5s;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .7rem
}

.footer-logo img {
  height: 32px;
  object-fit: contain
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: .85rem;
  color: var(--fg)
}

.footer-pvt {
  font-size: .58rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: .1em;
  color: var(--fg3);
  display: block;
  margin-top: 2px
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none
}

.footer-links a {
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg3);
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--accent)
}

.footer-copy {
  font-size: .65rem;
  color: var(--fg3);
  letter-spacing: .05em
}

/* ══════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.rd1 {
  transition-delay: .1s
}

.rd2 {
  transition-delay: .2s
}

.rd3 {
  transition-delay: .3s
}

.rd4 {
  transition-delay: .4s
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:1100px) {
  .nav-links {
    gap: 1.2rem;
  }

  .nav-logo .nav-title {
    font-size: .85rem;
  }

  .about {
    gap: 3rem;
  }
}

@media(max-width:1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-head {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  nav {
    padding: .8rem 4vw;
  }

  .nav-right {
    gap: 1rem;
  }

  .nav-logo .nav-title {
    font-size: .8rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .nav-cta {
    display: none;
  }

  .about-visual {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .about-logo-bg {
    padding-top: 3rem;
  }

  .stat-strip {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 2rem;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .brand-word .letter {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .brand-word {
    flex-wrap: wrap;
    gap: .1rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-logo-wrap img {
    max-width: 85vw;
  }
}

@media (max-width: 480px) {
  .brand-word .letter {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .about-logo-bg {
    padding-top: 3rem;
  }

  .stat-strip {
    flex-direction: row;
    justify-content: space-around;
    gap: .8rem;
    padding: 1rem .5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.2rem;
    /* slightly less margin to keep it tight */
  }

  .stat-item {
    text-align: center;
    width: auto;
    padding-bottom: 0;
    border-bottom: none;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: .52rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}