/* ── BRAND ARCS THEME — LIGHT EDITION ─────────────────────────────── */
:root {
  /* Core palette */
  --white:         #ffffff;
  --off-white:     #faf8ff;       /* very subtle purple tint to white */
  --cream:         #f5f0f8;       /* light section bg */
  --purple-deep:   #2d1560;       /* darkest — headlines, nav bg */
  --purple:        #5b3a8c;       /* primary brand purple */
  --purple-mid:    #7b52b8;       /* buttons, accents */
  --purple-light:  #a87fd4;       /* highlights, pills */
  --purple-pale:   #ede5f7;       /* very light section bg */
  --purple-xpale:  #f7f3fd;       /* alternating section bg */
  --gold:          #c9a96e;       /* accent / gold */
  --gold-light:    #e8c88a;
  --ink:           #1a0f33;       /* body text on light bg */
  --ink-mid:       #4a3570;       /* secondary text */
  --ink-soft:      #7a6899;       /* muted text */
  --border:        rgba(91,58,140,0.12);
  --border-strong: rgba(91,58,140,0.25);
  --nav-h:         76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

/* ── CURSOR ────────────────────────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--purple-mid);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .15s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(91,58,140,.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .35s;
}
.cursor.hover { transform: translate(-50%,-50%) scale(2.2); opacity: .5; }

/* ── NAVIGATION ─────────────────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.site-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 60px; height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(45,21,96,.06);
}
/* Logo — fully contained */
.nav-logo {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  overflow: hidden;
  flex-shrink: 0;
}
/* WP custom_logo outputs: .custom-logo-link > img.custom-logo */
.nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
.nav-logo img,
.nav-logo .custom-logo,
.nav-logo .custom-logo-link img {
  height: 28px !important;
  width: auto !important;
  max-height: 28px !important;
  max-width: 180px !important;
  display: block !important;
  object-fit: contain !important;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-links a.active { border-bottom: 2px solid var(--purple); padding-bottom: 2px; }
.nav-actions { display: flex; align-items: center; gap: 16px; }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
  background: #25d366;
  padding: 10px 20px; border-radius: 2px;
  transition: background .3s, transform .2s;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-1px); }
.btn-whatsapp svg { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--purple); border-radius: 2px; transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin-bottom: 20px; }
.mobile-menu ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: var(--purple-deep);
  transition: color .3s;
}
.mobile-menu ul a:hover { color: var(--purple-mid); }
.mobile-wa { margin-top: 12px; }

/* ── COMMON ─────────────────────────────────────────────────────────── */
section { padding: 110px 60px; }

.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .22em;
  color: var(--purple-mid);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: ''; display: block;
  width: 30px; height: 1px;
  background: var(--purple-mid);
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: var(--purple);
  padding: 15px 34px; border-radius: 2px;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple-mid);
  transition: color .3s;
}
.btn-ghost:hover { color: var(--purple-deep); }
.btn-ghost::after { content: '→'; transition: transform .3s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-ghost-purple {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 12px 28px; border-radius: 2px;
  transition: all .3s;
}
.btn-ghost-purple:hover { background: var(--purple); color: var(--white); }

.btn-outline {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple-deep);
  border: 1.5px solid var(--border-strong);
  padding: 15px 34px; border-radius: 2px;
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

.btn-whatsapp-large {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); background: #25d366;
  padding: 18px 36px; border-radius: 2px;
  transition: background .3s, transform .2s;
}
.btn-whatsapp-large:hover { background: #1db954; transform: translateY(-2px); }
.btn-whatsapp-large svg { flex-shrink: 0; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 60px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--purple-xpale) 60%, var(--purple-pale) 100%);
}

/* Decorative arcs — now purple on light bg */
.arc-bg { position: absolute; right: -5%; top: 0; width: 65%; height: 100%; pointer-events: none; }
.arc-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(91,58,140,.15);
  animation: spin linear infinite;
}
.arc-ring:nth-child(1) { width: 580px; height: 580px; top: 8%; right: 2%; animation-duration: 45s; }
.arc-ring:nth-child(2) { width: 400px; height: 400px; top: 20%; right: 9%; animation-duration: 30s; animation-direction: reverse; }
.arc-ring:nth-child(3) { width: 240px; height: 240px; top: 31%; right: 16%; animation-duration: 22s; }

/* Orb — softer on light */
.hero-orb {
  position: absolute; right: 8%; top: 12%;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 40% 40%, rgba(123,82,184,.18) 0%, rgba(168,127,212,.06) 55%, transparent 75%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes spin  { from { transform: rotate(0deg); }  to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.hero-label {
  font-size: 11px; letter-spacing: .25em;
  color: var(--purple-mid); text-transform: uppercase;
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--purple-mid); }

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 8vw, 114px);
  font-weight: 300; line-height: .92;
  letter-spacing: -.02em; max-width: 860px;
  color: var(--purple-deep);
  opacity: 0; animation: fadeUp .9s .35s forwards;
}
.hero-headline em { font-style: italic; color: var(--purple-mid); }

.hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--ink-mid); max-width: 480px;
  line-height: 1.8; margin-top: 32px;
  opacity: 0; animation: fadeUp .9s .55s forwards;
}

.hero-actions {
  display: flex; gap: 20px; align-items: center;
  margin-top: 48px; opacity: 0; animation: fadeUp .9s .75s forwards;
}

.hero-stats {
  position: absolute; bottom: 60px; right: 60px;
  display: flex; gap: 56px;
  opacity: 0; animation: fadeUp .9s 1s forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300;
  color: var(--purple); line-height: 1;
}
.stat-label {
  font-size: 10px; letter-spacing: .14em;
  color: var(--ink-soft); text-transform: uppercase; margin-top: 4px;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ── MARQUEE ─────────────────────────────────────────────────────────── */
.marquee-strip { background: var(--purple); padding: 14px 0; overflow: hidden; }
.marquee-inner { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item {
  font-family: 'Syne', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7); padding: 0 36px;
}
.marquee-dot { color: var(--gold); padding: 0 4px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ─────────────────────────────────────────────────────────── */
.services-sec { background: var(--white); }
.svc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.svc-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,5vw,70px); font-weight: 300; line-height: 1;
  color: var(--purple-deep);
}
.svc-headline em { font-style: italic; color: var(--purple-mid); }
.svc-intro { max-width: 300px; font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.svc-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background .4s, box-shadow .4s;
}
.svc-card:hover { background: var(--purple-xpale); box-shadow: inset 0 0 0 1px var(--purple-light); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--purple-mid);
  transform: scaleX(0); transition: transform .5s;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { font-size: 26px; margin-bottom: 18px; display: block; }
.svc-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--purple-deep); margin-bottom: 10px; }
.svc-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.pill {
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple-mid);
  border: 1px solid var(--border-strong);
  background: var(--purple-pale);
  padding: 3px 10px; border-radius: 2px;
}
.svc-footer { text-align: center; margin-top: 40px; }

/* Services Full Page */
.services-full-sec { padding: 80px 60px; background: var(--white); }
.svc-full-row {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
  padding: 64px 0; border-top: 1px solid var(--border);
}
.svc-full-row:last-child { border-bottom: 1px solid var(--border); }
.svc-full-row:nth-child(even) { background: transparent; }
.svc-full-left { position: sticky; top: calc(var(--nav-h) + 30px); }
.svc-full-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300;
  color: var(--purple-pale); line-height: 1; margin-bottom: 8px;
}
.svc-full-icon { font-size: 32px; margin-bottom: 16px; }
.svc-full-name { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--purple-deep); margin-bottom: 20px; }
.svc-full-right p { font-size: 15px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 20px; }
.svc-full-right h4 {
  font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple-mid); margin-bottom: 8px; margin-top: 28px;
}

/* ── PORTFOLIO ─────────────────────────────────────────────────────── */
.work-preview-sec { background: var(--purple-xpale); }
.work-full-sec { background: var(--white); padding: 60px 60px 110px; }

.port-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.port-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,5vw,70px); font-weight: 300; line-height: 1;
  color: var(--purple-deep);
}
.port-headline em { font-style: italic; color: var(--purple-mid); }
.port-sub { max-width: 280px; font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

/* Filter Tabs */
.port-tabs { display: flex; gap: 6px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn {
  font-family: 'Syne', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 10px 22px; border-radius: 2px;
  transition: all .3s;
}
.tab-btn:hover { color: var(--purple); border-color: var(--purple-light); }
.tab-btn.active { color: var(--white); background: var(--purple); border-color: var(--purple); }

/* Masonry */
.port-grid { columns: 3; column-gap: 4px; }
.port-card { break-inside: avoid; margin-bottom: 4px; position: relative; overflow: hidden; border-radius: 2px; }
.port-card.hidden { display: none; }
.port-img-wrap { position: relative; overflow: hidden; background: var(--purple-pale); }
.port-img-wrap img { width: 100%; display: block; transition: transform .6s ease; }
.port-img-wrap:hover img { transform: scale(1.05); }
.port-video-wrap { position: relative; overflow: hidden; background: var(--purple-deep); aspect-ratio: 9/16; }
.port-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Overlay — purple tinted on light theme */
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,21,96,.92) 0%, rgba(45,21,96,.35) 45%, transparent 72%);
  opacity: 0; transition: opacity .4s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.port-img-wrap:hover .port-overlay,
.port-video-wrap:hover .port-overlay { opacity: 1; }
.port-client { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); }
.port-desc { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 3px; }
.port-cat-badge {
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,.4);
  padding: 3px 10px; border-radius: 2px; margin-top: 10px; display: inline-block;
}
.gallery-count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.9);
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600;
  color: var(--purple); padding: 4px 10px; border-radius: 2px;
}
.gallery-open-btn {
  margin-top: 10px; font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple-deep); background: var(--white);
  border: none; padding: 7px 16px; border-radius: 2px; cursor: pointer;
}
.work-footer { text-align: center; margin-top: 40px; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(45,21,96,.96); z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 2px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 32px; color: var(--white); background: none; border: none; opacity: .7; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 48px; color: var(--white); background: rgba(91,58,140,.4); border: none; padding: 8px 16px; border-radius: 2px; opacity: .7; }
.lightbox-prev { left: 16px; } .lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.lightbox-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; }
.lightbox-dot.active { background: var(--purple-light); }

/* ── CLIENTS ───────────────────────────────────────────────────────── */
.clients-sec { background: var(--white); }
.clients-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,4.5vw,60px); font-weight: 300;
  color: var(--purple-deep); margin-bottom: 48px;
}
.clients-headline em { font-style: italic; color: var(--purple-mid); }
.clients-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.c-cell {
  background: var(--white);
  padding: 22px 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: .07em;
  color: rgba(74,53,112,.35); text-transform: uppercase; text-align: center;
  transition: all .3s; min-height: 66px;
}
.c-cell:hover { background: var(--purple-xpale); color: var(--purple); }
.c-cell.t1 { color: var(--purple-mid); }
.c-cell.wide { grid-column: span 2; font-size: 10px; color: var(--ink-soft); font-weight: 400; font-style: italic; letter-spacing: .04em; text-transform: none; }

/* ── NOIDAGRAM ─────────────────────────────────────────────────────── */
/* Keep as dark section — contrast on light page */
.noidagram-sec {
  background: var(--purple-deep);
  position: relative; overflow: hidden;
}
.noidagram-sec::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123,82,184,.25) 0%, transparent 70%);
  pointer-events: none;
}
.n-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.n-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px,6vw,84px); font-weight: 300; line-height: .95;
  color: var(--white);
}
.n-big strong {
  font-weight: 300;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.n-desc { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; margin-top: 24px; }
.n-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-top: 30px; transition: gap .3s;
}
.n-link:hover { gap: 18px; }
.n-visual { height: 320px; display: flex; align-items: center; justify-content: center; position: relative; }
.n-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(168,127,212,.25); animation: spin linear infinite; }
.n-ring:nth-child(1) { width: 300px; height: 300px; animation-duration: 38s; border-style: dashed; }
.n-ring:nth-child(2) { width: 200px; height: 200px; animation-duration: 24s; animation-direction: reverse; }
.n-ring:nth-child(3) { width: 110px; height: 110px; animation-duration: 16s; border-color: rgba(201,169,110,.35); }
.n-core {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 8px; font-weight: 700;
  letter-spacing: .06em; color: var(--white); z-index: 2;
  box-shadow: 0 0 40px rgba(168,127,212,.5); text-align: center; line-height: 1.3;
}

/* ── CONTACT CTA ───────────────────────────────────────────────────── */
.contact-cta-sec { background: var(--purple-pale); padding: 100px 60px; }
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,5vw,64px); font-weight: 300; line-height: 1.05;
  color: var(--purple-deep); margin-bottom: 20px;
}
.cta-headline em { font-style: italic; color: var(--purple-mid); }
.cta-sub { font-size: 15px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HEROES ─────────────────────────────────────────────────────── */
.page-hero {
  min-height: 56vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) 60px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--purple-xpale) 0%, var(--purple-pale) 100%);
}
.page-hero-bg {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,82,184,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-label {
  font-size: 11px; letter-spacing: .25em; color: var(--purple-mid);
  text-transform: uppercase; margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.page-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--purple-mid); }
.page-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px,7vw,100px); font-weight: 300; line-height: .92;
  letter-spacing: -.02em; color: var(--purple-deep);
}
.page-headline em { font-style: italic; color: var(--purple-mid); }
.page-sub { font-size: 15px; color: var(--ink-mid); max-width: 500px; line-height: 1.8; margin-top: 28px; }

/* ── ABOUT PAGE ─────────────────────────────────────────────────────── */
.mission-sec { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 16px; }
.mission-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,4vw,62px); font-weight: 300; line-height: 1.05;
  color: var(--purple-deep); margin-bottom: 32px;
}
.mission-headline em { font-style: italic; color: var(--purple-mid); }
.logo-meaning {
  padding: 32px 36px;
  background: var(--purple-xpale);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple-mid);
  border-radius: 2px; margin-top: 32px;
}
.logo-meaning h4 {
  font-family: 'Syne', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple-mid); margin-bottom: 14px;
}
.logo-meaning p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; line-height: 1.65;
  color: var(--ink-mid); font-style: italic;
}
.mission-body p { font-size: 15px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 20px; }

.founders-sec { background: var(--purple-xpale); }
.founders-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,4.5vw,64px); font-weight: 300;
  color: var(--purple-deep); margin-bottom: 60px;
}
.founders-headline em { font-style: italic; color: var(--purple-mid); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px; padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: box-shadow .4s, transform .3s;
}
.founder-card:hover { box-shadow: 0 16px 48px rgba(91,58,140,.12); transform: translateY(-4px); }
.founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}
.founder-bg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px; font-weight: 300;
  color: rgba(91,58,140,.05); position: absolute;
  bottom: -20px; right: 16px; line-height: 1; pointer-events: none;
}
.founder-initial {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300;
  color: var(--white); margin-bottom: 24px;
}
.founder-name { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--purple-deep); }
.founder-title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-mid); margin-top: 8px; }
.founder-years { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--purple); margin-top: 28px; line-height: 1; }
.founder-years span { font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--ink-soft); vertical-align: middle; margin-left: 8px; }
.founder-bio { font-size: 14px; color: var(--ink-mid); line-height: 1.8; margin-top: 20px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.f-tag {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); border: 1px solid var(--border-strong);
  background: var(--purple-pale); padding: 5px 13px; border-radius: 2px;
}

/* Process */
.process-sec { background: var(--white); }
.process-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px,4.5vw,64px); font-weight: 300; color: var(--purple-deep); margin-bottom: 64px; }
.process-headline em { font-style: italic; color: var(--purple-mid); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.p-step { padding: 44px 30px; background: var(--white); transition: background .3s; }
.p-step:hover { background: var(--purple-xpale); }
.p-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--purple-pale); line-height: 1; margin-bottom: 18px; }
.p-bar { width: 22px; height: 3px; background: var(--purple-mid); margin-bottom: 20px; border-radius: 2px; }
.p-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--purple-deep); margin-bottom: 12px; }
.p-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

/* ── CONTACT PAGE ─────────────────────────────────────────────────── */
.contact-main-sec { padding: 80px 60px 110px; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.wa-cta-block { background: rgba(37,211,102,.06); border: 1.5px solid rgba(37,211,102,.25); padding: 32px; border-radius: 2px; margin: 28px 0; }
.wa-cta-label { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #19a84d; margin-bottom: 16px; }
.wa-note { font-size: 12px; color: var(--ink-soft); margin-top: 14px; line-height: 1.6; }
.contact-divider {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; margin: 28px 0; position: relative;
}
.contact-divider::before, .contact-divider::after { content: ''; position: absolute; top: 50%; width: 38%; height: 1px; background: var(--border); }
.contact-divider::before { left: 0; } .contact-divider::after { right: 0; }
.contact-details { margin-top: 8px; }
.c-line { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.c-icon { width: 34px; height: 34px; min-width: 34px; background: var(--purple-pale); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.c-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 4px; }
.c-value { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 500; color: var(--ink); }
.c-value a { color: var(--ink); transition: color .3s; }
.c-value a:hover { color: var(--purple); }

.form-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--purple-deep); margin-bottom: 8px; }
.form-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 7px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--purple-xpale);
  border: 1.5px solid var(--border);
  color: var(--ink); padding: 13px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  border-radius: 2px; outline: none; transition: border-color .3s, background .3s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple-mid); background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,82,184,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-soft); }
.form-group textarea { height: 100px; resize: none; }
.form-group select option { background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn {
  width: 100%; font-family: 'Syne', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border: none; padding: 16px; border-radius: 2px;
  transition: all .3s; margin-top: 6px;
}
.submit-btn:hover { background: linear-gradient(135deg, var(--purple-deep), var(--purple)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,58,140,.25); }
.form-success { background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.25); padding: 24px; border-radius: 2px; text-align: center; margin-bottom: 24px; }
.form-success-icon { font-size: 32px; color: #25d366; margin-bottom: 8px; }
.form-success-msg { font-family: 'Syne', sans-serif; font-size: 14px; color: var(--ink); }
.form-error { background: rgba(220,50,50,.06); border: 1px solid rgba(220,50,50,.2); padding: 12px 16px; border-radius: 2px; font-size: 13px; color: #cc3333; margin-top: 10px; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--purple-deep);
  padding: 56px 60px 32px;
}
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.footer-logo, .footer-brand .custom-logo { height: 22px; opacity: .85; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 8px; }
.footer-nav ul { display: flex; gap: 28px; list-style: none; justify-content: center; }
.footer-nav a { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .3s; }
.footer-nav a:hover { color: var(--purple-light); }
.footer-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-email { font-size: 12px; color: rgba(255,255,255,.4); transition: color .3s; }
.footer-email:hover { color: var(--gold); }
.footer-copy { font-size: 10px; color: rgba(255,255,255,.2); text-align: center; margin-top: 36px; letter-spacing: .06em; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .port-grid { columns: 2; }
}
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .site-nav { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 72px 22px; }
  .hero { padding: calc(var(--nav-h) + 28px) 22px 56px; }
  .hero-stats { position: static; margin-top: 40px; flex-wrap: wrap; gap: 28px; }
  .stat-item { text-align: left; }
  .svc-header, .port-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .mission-grid, .founders-grid, .n-inner, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .svc-full-row { grid-template-columns: 1fr; gap: 24px; }
  .svc-full-left { position: static; }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-cta { align-items: center; }
  .footer-nav ul { flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 50vh; padding: calc(var(--nav-h) + 40px) 22px 60px; }
  .services-full-sec { padding: 60px 22px; }
  .work-full-sec { padding: 40px 22px 80px; }
  .contact-main-sec { padding: 60px 22px 80px; }
}
@media (max-width: 600px) {
  .port-grid { columns: 1; }
  .process-steps { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}
