/* ===== TOKENS ===== */
:root {
  --c-purple-black: #1C0230;
  --c-deep-purple: #400533;
  --c-hot-pink: #EB35C3;
  --c-magenta: #BA3595;
  --c-cream: #FAFAF7;
  --c-muted: #888;
  --f: 'Inter Tight', sans-serif;
  --bw: 2px;
  --maxw: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--c-cream); color: var(--c-purple-black); font-family: var(--f); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { margin: 0; }
p { margin: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--f); font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 13px 26px; transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: var(--bw) solid transparent;
  text-align: center; text-indent: 0.1em;
}
.btn-outline { border-color: var(--c-purple-black); color: var(--c-purple-black); background: transparent; }
.btn-outline:hover { background: var(--c-purple-black); color: var(--c-cream); }
.btn-dark { background: var(--c-purple-black); color: var(--c-cream); border-color: var(--c-purple-black); }
.btn-dark:hover { background: var(--c-hot-pink); border-color: var(--c-hot-pink); }
.btn-cream { border-color: var(--c-cream); color: var(--c-cream); background: transparent; }
.btn-cream:hover { background: var(--c-cream); color: var(--c-purple-black); }
.btn-pink { border-color: var(--c-hot-pink); color: var(--c-hot-pink); background: transparent; }
.btn-pink:hover { background: var(--c-hot-pink); color: var(--c-cream); }
.btn-sticker {
  background: #ffbae4; color: #1c0230;
  border-color: #000000; text-transform: uppercase;
  font-size: 14px; padding: 15px 30px;
  box-shadow: 7px 7px 0 #400533;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-sticker:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 #400533;
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(28,2,48,0.05) 6px, rgba(28,2,48,0.05) 7px);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--c-hot-pink);
  position: absolute; inset: 0;
}

/* ===== ANNOUNCE ===== */
.announce {
  background: #400533; color: var(--c-cream);
  text-align: center; padding: 10px 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
}

/* ===== NAV ===== */
.nav {
  background: #ffbae4;
  color: #1c0230;
  border-bottom: var(--bw) solid #000000;
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 12px 40px; gap: 20px;
}
.nav-links { display: flex; gap: 28px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: #1c0230; }
.nav-links a:hover { opacity: 0.55; }
.nav-logo { display: flex; align-items: center; justify-content: center; }
.nav-logo img { height: 42px; width: auto; }
.nav-actions { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.nav-social { display: flex; gap: 14px; align-items: center; margin-right: 16px; }
.nav-social a { display: flex; color: #1c0230; }
.nav-social a:hover { opacity: 0.55; }
.nav-social svg { width: 19px; height: 19px; }
.nav-sticker { background: #ffffff; font-size: 12px; padding: 10px 20px; box-shadow: 6px 6px 0 #ba3595; }
.nav-sticker:hover { box-shadow: 3px 3px 0 #ba3595; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: #1c0230; transition: transform 0.3s, opacity 0.3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #ffbae4; border-bottom: var(--bw) solid #000000;
  flex-direction: column; align-items: flex-start; gap: 22px; padding: 30px 40px;
}
.nav-mobile-menu a { color: #1c0230; font-size: 16px; font-weight: 600; letter-spacing: 0.04em; }
.nav-mobile-social { display: flex; gap: 20px; }
.nav-mobile-social a { display: flex; color: #1c0230; }
.nav-mobile-social svg { width: 22px; height: 22px; }
.nav.open .nav-mobile-menu { display: flex; }
@media (max-width: 768px) {
  .nav { grid-template-columns: 1fr auto 1fr; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; grid-column: 1; justify-self: start; }
  .nav-logo { grid-column: 2; }
}

/* ===== HERO ===== */
.hero {
  display: flex; align-items: center; justify-content: center;
  min-height: 88vh; border-bottom: var(--bw) solid var(--c-purple-black);
  position: relative; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 90px 40px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 32px; max-width: 1380px;
}
.hero-headline {
  font-size: clamp(54px, 7.8vw, 104px); font-weight: 700;
  line-height: 0.94; letter-spacing: -0.03em; color: #400533;
  text-align: center;
  opacity: 0; animation: fadeUp 0.9s ease forwards 0.1s;
}
.hero-headline em { font-style: italic; }
.hero-sub {
  font-size: 22px; line-height: 1.5; color: #5a2049;
  max-width: 720px; margin: -10px auto 0; position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.9s ease forwards 0.45s;
}
.hero-sub strong { font-weight: 700; color: #400533; }
.hero-sub .hl-women {
  font-weight: 700; color: #400533; padding: 0 3px;
  background-image: linear-gradient(rgba(250,213,156,0.85), rgba(250,213,156,0.85));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 0% 42%;
  animation: hlsweep 0.8s ease forwards 1.2s;
}
@keyframes hlsweep { to { background-size: 100% 42%; } }
@media (max-width: 768px) {
  .hero-sub { font-size: 16px; max-width: none; }
}
.hero-headline .hl-next {
  color: #ba3595; position: relative; display: inline-block;
}
.hero-headline .hl-next::after {
  content: ''; position: absolute; left: 0; bottom: -0.12em;
  width: 100%; height: 5px; background: #ba3595;
  transform: scaleX(0); transform-origin: left;
  animation: strike 7s ease-in-out infinite;
}
@keyframes strike {
  0%   { transform: scaleX(0); transform-origin: left; }
  18%  { transform: scaleX(1); transform-origin: left; }
  82%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
@media (max-width: 768px) {
  .hero { min-height: 72vh; }
  .hero-content { padding: 60px 28px; gap: 26px; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--c-purple-black); color: var(--c-cream);
  padding: 13px 0; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  overflow: hidden; white-space: nowrap; border-bottom: var(--bw) solid var(--c-purple-black);
}
.marquee-track {
  display: flex; width: max-content;
  animation: scroll 60s linear infinite;
}
.marquee-group {
  display: flex; align-items: center; gap: 30px;
  padding-right: 30px; flex-shrink: 0;
}
.marquee-track .sep { color: var(--c-hot-pink); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== TRUSTED BY ===== */
.trusted { border-bottom: var(--bw) solid var(--c-purple-black); padding: 36px 80px; }
.trusted-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 24px; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trusted-logo {
  height: 32px; min-width: 90px; padding: 0 16px;
  border: 1px solid rgba(28,2,48,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em; color: var(--c-muted);
}

/* ===== PAIN POINTS ===== */
.pain {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  min-height: 580px; border-bottom: var(--bw) solid var(--c-purple-black);
}
.pain-photo { position: relative; overflow: visible; display: flex; padding: 48px; }

/* a deliberately dated, generic site — the "before" */
.before-mock {
  flex: 1; min-height: 380px; align-self: stretch;
  border: var(--bw) solid #000000; background: #f4f4f2;
  display: flex; flex-direction: column; overflow: hidden;
  font-family: Georgia, 'Times New Roman', serif;
  filter: saturate(0.45);
  position: relative;
}
/* grain over the whole mockup */
.before-mock::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.before-x {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 4;
}
.before-x line {
  stroke: #d61f26; stroke-width: 4;
  vector-effect: non-scaling-stroke; stroke-linecap: round;
}
.before-bar {
  height: 26px; flex-shrink: 0; background: #dedede;
  border-bottom: 1px solid #c4c4c4;
  display: flex; align-items: center; gap: 6px; padding: 0 10px;
}
.before-bar span { width: 8px; height: 8px; border-radius: 50%; background: #b9b9b9; }
.before-page { flex: 1; padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 16px; }
.before-topline {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #d8d8d8; padding-bottom: 12px; gap: 10px;
}
.before-logo { font-size: 15px; color: #6b6b6b; letter-spacing: 0.02em; }
.before-nav { display: flex; gap: 10px; font-size: 9px; color: #9a9a9a; }
.before-banner {
  background: #e6e6e4; border: 1px solid #d5d5d5;
  padding: 26px 18px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.before-banner-h { font-size: 17px; color: #7a7a7a; }
.before-banner-p { font-size: 10px; color: #a0a0a0; }
.before-btn {
  margin-top: 4px; font-size: 9px; color: #8a8a8a;
  border: 1px solid #bcbcbc; padding: 5px 14px; background: #efefee;
}
.before-lines { display: flex; flex-direction: column; gap: 7px; }
.before-lines span { height: 6px; background: #dcdcdc; display: block; }
.before-lines span.short { width: 62%; }
.before-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: auto; }
.before-grid div { aspect-ratio: 4 / 3; background: #dcdcdc; border: 1px solid #d0d0d0; }
.pain-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.pain-headline { font-size: clamp(20px, 2.4vw, 27px); font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; width: 68%; margin-left: 12%; }
.pain-list {
  display: flex; flex-direction: column;
  background: #ffbae4; border: var(--bw) solid #000000;
  width: 68%; align-self: flex-start; margin-left: 12%;
}
.pain-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  font-size: 19px; line-height: 1.45; color: #1c0230; font-weight: 500;
}
.pain-icon { flex-shrink: 0; width: 26px; height: 26px; color: #1c0230; }
.pain-icon svg { width: 100%; height: 100%; display: block; }
.pain-close { font-size: 14px; line-height: 1.7; color: #444; font-weight: 500; }
@media (max-width: 900px) {
  .pain { grid-template-columns: 1fr; }
  .pain-photo { display: none; }
  .pain-content { padding: 48px 32px; }
  .pain-list { width: 100%; margin-left: 0; }
  .pain-headline { width: 100%; margin-left: 0; }
}

/* ===== MISSION ===== */
.mission-section {
  background: #ffffff;
  border-bottom: var(--bw) solid var(--c-purple-black);
  padding: 80px; position: relative; overflow: visible;
}
.mission-deco {
  position: absolute; font-size: 120px; color: var(--c-purple-black);
  opacity: 0.1; pointer-events: none; line-height: 1;
}
.mission-deco.d1 { top: -10px; right: 40px; transform: rotate(12deg); }
.mission-deco.d2 { bottom: -20px; right: 180px; font-size: 60px; transform: rotate(-8deg); }
.mission-inner {
  max-width: none; margin: 0 auto; position: relative; z-index: 1;
  background: #fad59c; border: var(--bw) solid #000000;
  padding: 52px 48px; text-align: center;
}
.mission-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--c-purple-black); opacity: 0.6; margin-bottom: 20px; }
.mission-h {
  font-size: clamp(30px, 4.2vw, 50px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.02em; color: var(--c-purple-black); margin-bottom: 24px;
}
.mission-body { font-size: 22px; font-weight: 400; line-height: 1.55; color: var(--c-purple-black); opacity: 0.85; max-width: none; margin: 0 auto; }
.mission-star {
  position: absolute; top: -95px; left: -80px;
  width: 250px; height: auto; z-index: 3;
  transform: rotate(-8deg); pointer-events: none;
}
.hl-mark {
  font-weight: 700;
  background-image: linear-gradient(rgba(235,53,195,0.4), rgba(235,53,195,0.4));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 0% 42%;
  transition: background-size 0.7s ease;
  padding: 0 3px;
}
.mission-inner.in-view .hl-mark { background-size: 100% 42%; }
.mission-inner.in-view .hl-mark.hl-2 { transition-delay: 0.45s; }
@media (max-width: 768px) { .mission-section { padding: 60px 32px; } }

/* ===== SERVICES ===== */
.services { border-bottom: var(--bw) solid var(--c-purple-black); }
.services-head {
  padding: 60px 80px 48px;
  border-bottom: var(--bw) solid var(--c-purple-black);
}
.services-eyebrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 18px; letter-spacing: 0; text-transform: none; color: var(--c-hot-pink); margin-bottom: 8px; }
.services-h { font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.02em; }
.services-split {
  display: grid; grid-template-columns: 640px 1fr;
  align-items: stretch; gap: 56px; padding: 60px 80px;
}
@media (max-width: 960px) {
  .services-split { grid-template-columns: 1fr; padding: 40px 32px; }
  .services-photo { display: none; }
  .services-head { padding: 48px 32px 36px; }
}
.services-acc { border: var(--bw) solid #000000; display: flex; flex-direction: column; }
.acc-row { border-bottom: var(--bw) solid #000000; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.acc-row:last-child { border-bottom: none; }
.acc-row.r-web { background: #ba3595; }
.acc-row.r-graphic { background: #400533; }
.acc-row.r-print { background: #000000; }
.acc-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f); font-size: clamp(19px, 2vw, 26px); font-weight: 700;
  letter-spacing: -0.01em; color: var(--c-cream); text-align: left;
  transition: opacity 0.2s;
}
.acc-btn:hover { opacity: 0.72; }
.acc-plus { font-size: 24px; font-weight: 300; color: var(--c-cream); transition: transform 0.3s; flex-shrink: 0; }
.acc-row.open .acc-plus { transform: rotate(45deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.acc-row.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }
.acc-panel-body { padding: 0 28px 26px; font-size: 14px; line-height: 1.7; color: rgba(250,250,247,0.82); }
.acc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.acc-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; border: 1px solid rgba(250,250,247,0.4); padding: 4px 10px; color: var(--c-cream); }
.acc-price {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(250,250,247,0.22);
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  color: var(--c-cream);
}
.services-photo { padding-right: 40px; }
.services-photo-frame {
  position: sticky; top: 88px;
  border: var(--bw) solid #000000;
  height: 620px; overflow: hidden;
}
.services-photo-frame > * {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.45s ease;
}
.services-photo-frame > .active { opacity: 1; }
.services-photo-frame img { object-fit: cover; object-position: center; }

/* ===== PROCESS ===== */
.process { padding: 80px; border-bottom: var(--bw) solid var(--c-purple-black); }
.process-h { font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.process-sub { font-size: 19px; line-height: 1.6; color: #444; max-width: none; margin-bottom: 52px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step {
  border: var(--bw) solid var(--c-purple-black); padding: 34px 28px; min-height: 300px;
  display: flex; flex-direction: column; gap: 14px; background: #efe3e9;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 var(--c-hot-pink); background: #fff5fb; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-deep-purple); color: var(--c-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; line-height: 1;
  margin-bottom: 6px; transition: transform 0.25s ease;
}
.process-step:hover .process-num { transform: scale(1.1) rotate(-8deg); }
.process-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.process-desc { font-size: 15px; line-height: 1.6; color: #555; }
.process.will-reveal .process-step { opacity: 0; transform: translateY(22px); }
.process.in-view .process-step { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.process.in-view .process-step:nth-child(2) { transition-delay: 0.1s; }
.process.in-view .process-step:nth-child(3) { transition-delay: 0.2s; }
.process.in-view .process-step:nth-child(4) { transition-delay: 0.3s; }
.process.in-view .process-step:hover {
  transform: translateY(-6px); box-shadow: 8px 8px 0 var(--c-hot-pink); background: #fff5fb;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; transition-delay: 0s;
}
@media (max-width: 768px) {
  .process { padding: 60px 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

/* ===== BEFORE / AFTER ===== */
.compare { padding: 80px; background: #ffffff; border-bottom: var(--bw) solid var(--c-purple-black); }
.compare-head { text-align: center; margin-bottom: 46px; }
.compare-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-hot-pink); margin-bottom: 10px; }
.compare-h { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.02em; color: #400533; }
.compare-sub { font-size: 21px; line-height: 1.55; color: #400533; opacity: 0.8; max-width: 1000px; margin: 16px auto 0; }
.compare-sub strong { font-weight: 700; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
.compare-col { border: var(--bw) solid #000000; padding: 40px 34px; display: flex; flex-direction: column; }
.compare-col.before { background: #efe3e9; }
.compare-col.after { background: #fad59c; }
.compare-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #400533; opacity: 0.6; margin-bottom: 6px; }
.compare-title { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.02em; color: #400533; margin-bottom: 24px; }
.compare-col.after .compare-title { color: #ba3595; }
.compare-list { display: flex; flex-direction: column; gap: 15px; }
.compare-item { display: flex; align-items: flex-start; gap: 13px; font-size: 16px; line-height: 1.5; color: #400533; }
.compare-mark { flex-shrink: 0; font-size: 15px; font-weight: 700; line-height: 1.5; }
.compare-col.before .compare-mark { color: #9b8f96; }
.compare-col.after .compare-mark { color: var(--c-hot-pink); }
/* reveal */
.compare.reveal-ready .compare-col { opacity: 0; transform: translateY(28px); }
.compare.in-view .compare-col { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.compare.in-view .compare-col.after { transition-delay: 0.16s; }
@media (max-width: 860px) {
  .compare { padding: 56px 28px; }
  .compare-grid { grid-template-columns: 1fr; gap: 18px; }
  .compare-col { padding: 30px 24px; }
  .compare-item { font-size: 15px; }
  .compare-sub { font-size: 16px; }
  .compare-sub br { display: none; }
}

/* ===== INVEST CTA ===== */
.invest {
  background: #ffffff;
  border-bottom: var(--bw) solid var(--c-purple-black);
  padding: 80px; position: relative;
}
.invest-box {
  background: #400533; border: var(--bw) solid #000000;
  padding: 48px 60px; position: relative; overflow: visible;
  max-width: none; margin: 0 auto;
}
.invest-star { position: absolute; top: -70px; right: -35px; width: 200px; height: auto; z-index: 3; transform: rotate(10deg); pointer-events: none; }
.invest-h {
  font-size: clamp(28px, 4vw, 50px); font-weight: 700;
  line-height: 1; letter-spacing: -0.03em; color: #fad59c;
  max-width: none; position: relative; z-index: 1; text-align: center;
}
.invest.reveal-ready .invest-h { opacity: 0; transform: translateY(28px); }
.invest.in-view .invest-h { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.invest-h .pink {
  font-style: italic; display: inline-block; color: #fad59c; padding: 0 4px;
  background-image: linear-gradient(rgba(235,53,195,0.5), rgba(235,53,195,0.5));
  background-repeat: no-repeat;
  background-position: 0 80%;
  background-size: 0% 42%;
}
.invest.in-view .invest-h .pink { animation: sweep 4.5s ease-in-out 0.7s infinite; }
@keyframes sweep {
  0%   { background-size: 0% 42%;   background-position: 0 80%; }
  30%  { background-size: 100% 42%; background-position: 0 80%; }
  70%  { background-size: 100% 42%; background-position: 100% 80%; }
  100% { background-size: 0% 42%;   background-position: 100% 80%; }
}
@media (max-width: 768px) { .invest { padding: 60px 32px; } .invest-box { padding: 48px 32px; } }

/* ===== PRICING ===== */
.pricing { padding: 80px; border-bottom: var(--bw) solid var(--c-purple-black); }
.pricing-head { text-align: center; margin-bottom: 48px; }
.pricing-eyebrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 18px; letter-spacing: 0; text-transform: none; color: #400533; margin-bottom: 10px; }
.pricing-h { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.02em; color: #400533; }
.pricing-note { font-size: 21px; line-height: 1.55; color: #400533; opacity: 0.8; max-width: 1100px; margin: 16px auto 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: var(--bw) solid var(--c-purple-black);
}
.price-card {
  padding: 34px 26px; display: flex; flex-direction: column; gap: 14px;
  border-right: var(--bw) solid var(--c-purple-black); position: relative;
  background: var(--c-cream);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.price-card:last-child { border-right: none; }
.price-card.popular { background: #efe3e9; }
.price-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 34px rgba(28,2,48,0.18);
  z-index: 2;
  outline: var(--bw) solid var(--c-purple-black);
}
.price-badge {
  position: absolute; top: 0; right: 0;
  background: #400533; color: var(--c-cream);
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px;
}
.price-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: #EB35C3; }
.price-name { font-size: clamp(21px, 2.1vw, 27px); font-weight: 700; letter-spacing: -0.02em; line-height: 1; font-style: italic; color: #ba3595; }
.price-tagline { font-size: 13px; color: #555; line-height: 1.5; }
.price-money { display: flex; flex-direction: column; gap: 6px; }
.price-invest-label { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); }
.price-amount { font-size: clamp(26px, 2.6vw, 32px); font-weight: 900; letter-spacing: -0.02em; line-height: 1; color: #400533; }
.price-amount .cad { font-size: 14px; font-weight: 600; color: var(--c-muted); }
.price-founding {
  align-self: flex-start; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #400533; border: 1px solid #400533; padding: 3px 8px;
}
.price-timeline { font-size: 12px; color: #666; }
.price-timeline strong { color: var(--c-purple-black); font-weight: 700; }
.price-block { border-top: 1px solid rgba(28,2,48,0.14); padding-top: 16px; }
.price-sub-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-purple-black); margin-bottom: 8px; }
.price-ideal-text { font-size: 12px; line-height: 1.55; color: #666; }
.price-list { display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; line-height: 1.45; color: #444; }
.price-list li { display: flex; gap: 7px; }
.price-list li::before { content: '★'; color: #400533; flex-shrink: 0; font-size: 10px; line-height: 1.6; }
.pricing-foot { text-align: center; margin-top: 40px; }
@media (max-width: 1024px) {
  .pricing { padding: 60px 28px; }
  .pricing-note { font-size: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: var(--bw) solid var(--c-purple-black); }
  .price-card:last-child { border-bottom: none; }
}

/* ===== ABOUT ===== */
.about {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 0; background: #ffffff;
  border-bottom: var(--bw) solid var(--c-purple-black);
}
.about-photo {
  position: relative; overflow: hidden;
  min-height: 760px; align-self: stretch;
}
.about-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  object-position: center 10%;
  transform: scale(1.14); transform-origin: center 22%;
  filter: contrast(0.96) saturate(1.06) brightness(1.03);
}
.about-photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 45%);
}
.about-box {
  position: relative; z-index: 2;
  background: #fad59c; border: var(--bw) solid #000000;
  padding: 48px 46px;
  width: calc(100% - 80px); max-width: 660px; justify-self: center;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.about-star {
  position: absolute; top: -58px; right: -48px;
  width: 200px; height: auto; z-index: 3;
  transform: rotate(12deg); pointer-events: none;
  animation: starfloat 5s ease-in-out infinite;
}
@keyframes starfloat {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50%      { transform: rotate(17deg) translateY(-12px); }
}
.about-h { font-size: clamp(36px, 4.4vw, 58px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: #400533; }
.about-h .name { color: var(--c-hot-pink); font-style: normal; }
.about-role { font-size: 19px; font-weight: 700; color: #400533; margin-top: -8px; }
.about-body { font-size: 19px; line-height: 1.5; color: #400533; }

/* about — scroll reveal */
.about.reveal-ready .about-photo { opacity: 0; transform: translateX(-36px); }
.about.reveal-ready .about-box { opacity: 0; transform: translateY(36px); }
.about.in-view .about-photo {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about.in-view .about-box {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease 0.18s, transform 0.7s ease 0.18s;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; padding: 0 0 48px; }
  .about-photo { min-height: 105vw; }
  .about-box { margin: 40px auto 0; padding: 32px 26px; aspect-ratio: auto; max-width: calc(100% - 48px); }
  .about-body, .about-role { font-size: 16px; }
  .about-star { width: 95px; top: -58px; right: -14px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #400533; padding: 56px 0 64px;
  border-bottom: var(--bw) solid var(--c-purple-black); overflow: hidden;
}
.testi-header { padding: 0 80px; margin-bottom: 40px; text-align: center; }
.testi-h { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.02em; color: var(--c-cream); }
.testi-wrap { position: relative; }
.testi-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 2; pointer-events: none;
}
.testi-btn {
  width: 50px; height: 42px; border: var(--bw) solid #000000;
  background: #ffbae4; cursor: pointer; font-size: 19px; color: #1c0230;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; transition: background 0.2s, transform 0.2s;
}
.testi-btn:hover { background: var(--c-hot-pink); transform: scale(1.06); }
.testi-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; padding: 0 92px;
  scroll-snap-type: x mandatory; scroll-padding-left: 92px;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start;
  background: #ffffff; border: var(--bw) solid #ba3595;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 18px;
  min-height: 440px;
}
.testi-label { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; color: #1c0230; }
.testi-quote { font-size: 18px; line-height: 1.55; color: #333; flex: 1; text-transform: lowercase; }
.testi-author { text-align: right; border-top: 1px solid rgba(28,2,48,0.14); padding-top: 16px; text-transform: lowercase; }
.testi-name { font-size: 16px; font-weight: 700; color: #1c0230; }
.testi-co { font-size: 16px; font-weight: 700; color: #1c0230; }
@media (max-width: 1100px) {
  .testi-header { padding: 0 40px; }
  .testi-track { padding: 0 64px; scroll-padding-left: 64px; }
  .testi-nav { padding: 0 10px; }
  .testi-card { padding: 24px 22px; gap: 14px; min-height: 0; }
  .testi-label { font-size: 15px; }
  .testi-quote { font-size: 13px; line-height: 1.5; }
  .testi-author { padding-top: 14px; }
  .testi-name, .testi-co { font-size: 12.5px; }
}
@media (max-width: 700px) {
  .testi-wrap { display: flex; flex-direction: column; }
  .testi-track { padding: 0 28px; scroll-padding-left: 28px; }
  .testi-card { flex: 0 0 100%; }
  .testi-nav {
    position: static; transform: none; order: 2; width: auto;
    justify-content: center; gap: 14px; margin-top: 24px; padding: 0;
  }
  .testi-header { padding: 0 28px; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: #ffffff; padding: 90px 80px; text-align: center;
  border-bottom: var(--bw) solid var(--c-purple-black);
  position: relative; overflow: hidden;
}
.final-cta > *:not(.final-star) { position: relative; z-index: 1; }
.final-star {
  position: absolute; z-index: 0; pointer-events: none; height: auto;
  animation: drift 6s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
.final-star.s1 { top: 6%;  left: 4%;   width: 115px; transform: rotate(-14deg); opacity: 0.55; animation-delay: 0s; }
.final-star.s2 { top: 10%; right: 6%;  width: 85px;  transform: rotate(18deg);  opacity: 0.45; animation-delay: 0.8s; }
.final-star.s3 { bottom: 10%; left: 11%; width: 70px; transform: rotate(9deg);  opacity: 0.4;  animation-delay: 1.6s; }
.final-star.s4 { bottom: 6%;  right: 10%; width: 125px; transform: rotate(-10deg); opacity: 0.5; animation-delay: 2.2s; }
.final-star.s5 { top: 46%; left: 2%;   width: 55px;  transform: rotate(26deg);  opacity: 0.35; animation-delay: 1.1s; }
.final-star.s6 { top: 52%; right: 3%;  width: 60px;  transform: rotate(-22deg); opacity: 0.35; animation-delay: 2.8s; }
.final-note {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-hot-pink); margin-bottom: 16px;
}
@media (max-width: 768px) {
  .final-star.s1, .final-star.s2 { width: 62px; }
  .final-star.s3, .final-star.s4 { width: 58px; }
  .final-star.s5, .final-star.s6 { display: none; }
}
.final-h {
  font-size: clamp(32px, 4.6vw, 56px); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.02em; color: #400533; margin-bottom: 18px;
}
.final-h em {
  font-style: normal; color: var(--c-hot-pink);
  position: relative; display: inline-block;
}
.final-h em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -0.06em;
  height: 4px; background: var(--c-hot-pink);
  transform: scaleX(0); transform-origin: left;
}
.final-sub { font-size: 26px; color: #400533; opacity: 0.82; line-height: 1.45; max-width: 1080px; margin: 0 auto 36px; }

/* final cta — scroll reveal */
.final-cta.reveal-ready .final-h,
.final-cta.reveal-ready .final-sub { opacity: 0; transform: translateY(26px); }
.final-cta.reveal-ready .btn { opacity: 0; }
.final-cta.in-view .final-h {
  opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease;
}
.final-cta.in-view .final-sub {
  opacity: 1; transform: none; transition: opacity 0.6s ease 0.14s, transform 0.6s ease 0.14s;
}
.final-cta.in-view .btn {
  opacity: 1;
  transition: opacity 0.6s ease 0.28s, transform 0.15s ease, box-shadow 0.15s ease;
}
.final-cta.in-view .final-h em::after {
  transform: scaleX(1); transition: transform 0.7s ease 0.55s;
}
@media (max-width: 768px) { .final-cta { padding: 64px 28px; } .final-sub { font-size: 15px; } }

/* ===== FOOTER ===== */
.footer { background: var(--c-purple-black); padding: 44px 80px 0; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.footer-brand {
  font-size: 16px; font-weight: 700; letter-spacing: 0.08em; color: var(--c-cream);
  display: flex; align-items: center; gap: 2px;
}
.footer-star { width: 46px; height: auto; flex-shrink: 0; }
.footer-nav { display: flex; gap: 26px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; flex-wrap: wrap; }
.footer-nav a { color: rgba(250,250,247,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: var(--c-hot-pink); }
.footer-foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(250,250,247,0.15);
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(250,250,247,0.45);
}
@media (max-width: 700px) {
  .footer { padding: 36px 28px 0; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-foot { flex-direction: column; gap: 8px; }
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== INNER PAGES ===== */
.page-hero {
  padding: 90px 80px; border-bottom: var(--bw) solid var(--c-purple-black);
  background: #ffffff; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.page-hero > * { position: relative; z-index: 1; }
.page-eyebrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 19px; letter-spacing: 0; text-transform: none; color: #EB35C3; margin-bottom: 12px; }
.page-title { font-size: clamp(38px, 6vw, 76px); font-weight: 700; letter-spacing: -0.03em; line-height: 0.95; color: #400533; }
.page-title em { font-style: italic; color: #ba3595; }
.page-sub { font-size: 18px; line-height: 1.6; color: #555; max-width: 640px; margin: 20px auto 0; }
.page-section { padding: 70px 80px; border-bottom: var(--bw) solid var(--c-purple-black); }
.page-section.alt { background: #ffffff; }
.page-section-head { margin-bottom: 40px; }
.page-section-h { font-size: clamp(24px, 3vw, 38px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.page-section-sub { font-size: 16px; line-height: 1.65; color: #555; max-width: 720px; }

/* card grids (portfolio + shop) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.item-card {
  border: var(--bw) solid var(--c-purple-black); background: var(--c-cream);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.item-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 var(--c-hot-pink); }
.item-thumb {
  aspect-ratio: 4 / 3; border-bottom: var(--bw) solid var(--c-purple-black);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(28,2,48,0.05) 6px, rgba(28,2,48,0.05) 7px);
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--c-hot-pink);
}
.item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.item-body { padding: 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.item-title { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: #ba3595; }
.item-meta { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--c-muted); }
.item-desc { font-size: 13.5px; line-height: 1.6; color: #555; }
.item-price { font-size: 22px; font-weight: 900; color: #400533; margin-top: 8px; }
.item-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--c-hot-pink);
  transition: gap 0.2s ease;
}
.item-card:hover .item-link { gap: 14px; }
.item-foot { padding: 0 22px 22px; }

/* simple two-column content */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: stretch; gap: 56px; }
.split-photo { position: relative; min-height: 460px; border: var(--bw) solid #000000; }
.split-body p { font-size: 19px; line-height: 1.7; color: #400533; margin-bottom: 18px; }
.split-body p:last-child { margin-bottom: 0; }


@media (max-width: 1024px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 60px 28px; }
  .page-section { padding: 50px 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-photo { min-height: 60vw; }
}

/* ===== ENQUIRY FORM ===== */
.form-wrap { padding: 70px 80px 90px; background: var(--c-cream); }
.form-inner { max-width: 860px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #400533;
}
.field label .req { color: var(--c-hot-pink); }
.field label .opt {
  font-weight: 500; letter-spacing: 0.04em; text-transform: none;
  color: #9a8b94; font-size: 11px;
}
.field input[type="date"] {
  cursor: pointer; color: #1c0230;
  font-family: var(--f); text-transform: lowercase;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: 0.55;
  filter: invert(12%) sepia(45%) saturate(3000%) hue-rotate(280deg);
}
.field input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
.field input,
.field select,
.field textarea {
  font-family: var(--f); font-size: 16px; color: #1c0230;
  background: #ffffff; border: var(--bw) solid #000000;
  padding: 14px 16px; width: 100%; border-radius: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 160px; resize: vertical; line-height: 1.5; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23400533' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px;
  padding-right: 42px; cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--c-hot-pink);
  box-shadow: 4px 4px 0 var(--c-hot-pink);
}
.field input::placeholder,
.field textarea::placeholder { color: #a99fa5; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-foot { margin-top: 32px; display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.form-foot .btn { width: 100%; }
.form-note { font-size: 13px; color: #6b5c66; text-align: center; }
@media (max-width: 760px) {
  .form-wrap { padding: 48px 28px 64px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* thank-you state */
.thanks { padding: 110px 40px 120px; text-align: center; background: var(--c-cream); }
.thanks-star { width: 130px; height: auto; margin: 0 auto 26px; display: block; }
.thanks-h { font-size: clamp(34px, 4.6vw, 58px); font-weight: 700; letter-spacing: -0.02em; color: #400533; margin-bottom: 16px; }
.thanks-p { font-size: 18px; line-height: 1.6; color: #400533; opacity: 0.82; max-width: 560px; margin: 0 auto 34px; }

/* ===== FEATURED WORK ===== */
.work {
  padding: 80px; background: var(--c-cream);
  border-bottom: var(--bw) solid var(--c-purple-black);
}
.work-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 52px;
}
.work-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--c-hot-pink); margin-bottom: 10px; }
.work-h { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.02em; color: #400533; }
.work-all {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: #400533;
  border-bottom: 2px solid var(--c-hot-pink); padding-bottom: 3px;
  transition: color 0.2s ease, gap 0.2s ease;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.work-all:hover { color: var(--c-hot-pink); gap: 14px; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 34px; }
.work-item:nth-child(even) { margin-top: 76px; }
.work-thumb {
  border: var(--bw) solid #000000; overflow: hidden;
  aspect-ratio: 16 / 10; background: #efe3e9;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.work-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.work-item:hover .work-thumb { box-shadow: 12px 12px 0 #ba3595; transform: translate(-3px, -3px); }
.work-item:hover .work-thumb img { transform: scale(1.06); }
.work-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 18px; }
.work-name { font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.02em; color: #ba3595; }
.work-cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: #400533; opacity: 0.6; white-space: nowrap; }
/* reveal */
.work.reveal-ready .work-item { opacity: 0; transform: translateY(34px); }
.work.in-view .work-item { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.work.in-view .work-item:nth-child(2) { transition-delay: 0.12s; }
.work.in-view .work-item:nth-child(3) { transition-delay: 0.24s; }
.work.in-view .work-item:nth-child(4) { transition-delay: 0.36s; }
.work.in-view .work-item:hover .work-thumb {
  box-shadow: 12px 12px 0 #ba3595; transform: translate(-3px, -3px);
  transition: box-shadow 0.3s ease, transform 0.3s ease; transition-delay: 0s;
}
@media (max-width: 900px) {
  .work { padding: 56px 28px; }
  .work-head { margin-bottom: 34px; }
  .work-grid { grid-template-columns: 1fr; gap: 34px; }
  .work-item:nth-child(even) { margin-top: 0; }
}

/* ===== SERVICE MENU ===== */
.menu-sec { padding: 68px 80px; border-bottom: var(--bw) solid var(--c-purple-black); }
.menu-sec.alt { background: #ffffff; }
.menu-inner { max-width: 900px; margin: 0 auto; }
.menu-head { margin-bottom: 34px; }
.menu-eyebrow { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 18px; letter-spacing: 0; text-transform: none; color: var(--c-hot-pink); margin-bottom: 10px; }
.menu-h { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; letter-spacing: -0.02em; color: #400533; }
.menu-note { font-size: 15px; line-height: 1.6; color: #400533; opacity: 0.75; margin-top: 12px; }
.menu-list { border-top: 1px solid rgba(28,2,48,0.18); }
.menu-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid rgba(28,2,48,0.18);
}
.menu-text { flex-shrink: 1; }
.menu-name { font-size: 18px; font-weight: 700; color: #400533; letter-spacing: -0.01em; }
.menu-desc { font-size: 13.5px; line-height: 1.5; color: #6b5c66; margin-top: 3px; }
.menu-dots { flex: 1 1 auto; min-width: 24px; border-bottom: 1px dotted rgba(28,2,48,0.35); transform: translateY(-4px); }
.menu-price { font-size: 18px; font-weight: 900; color: #ba3595; white-space: nowrap; }
.menu-foot { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.menu-fineprint { font-size: 13px; color: #6b5c66; font-style: italic; }
@media (max-width: 760px) {
  .menu-sec { padding: 48px 28px; }
  .menu-row { flex-wrap: wrap; gap: 6px; }
  .menu-dots { display: none; }
  .menu-text { flex: 1 1 100%; }
  .menu-price { font-size: 17px; }
}

/* ===== CASE STUDY ===== */
.cs-hero {
  padding: 76px 80px 66px; background: #ffffff;
  border-bottom: var(--bw) solid var(--c-purple-black);
}
.cs-hero-inner { max-width: 1100px; margin: 0 auto; }
.cs-back {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: #400533; opacity: 0.7;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.cs-back:hover { gap: 14px; opacity: 1; }
.cs-title { font-size: clamp(40px, 6.5vw, 82px); font-weight: 700; letter-spacing: -0.03em; line-height: 0.98; color: #400533; }
.cs-tagline { font-size: clamp(18px, 2vw, 23px); line-height: 1.5; color: #5a2049; max-width: 720px; margin-top: 20px; }
.cs-scope { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cs-scope span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  border: 1px solid rgba(28,2,48,0.3); padding: 6px 12px; color: #400533;
}
.cs-lead {
  padding: 70px 80px; border-bottom: var(--bw) solid var(--c-purple-black);
  background: var(--c-cream);
}
.cs-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.cs-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--c-hot-pink); padding-top: 6px; }
.cs-body p { font-size: 18px; line-height: 1.7; color: #400533; margin-bottom: 18px; }
.cs-body p:last-child { margin-bottom: 0; }
.cs-figure { padding: 0; border-bottom: var(--bw) solid var(--c-purple-black); background: var(--c-cream); }
.cs-figure img { width: 100%; height: auto; display: block; }
.cs-figure .img-slot {
  aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, transparent, transparent 7px, rgba(28,2,48,0.05) 7px, rgba(28,2,48,0.05) 8px);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--c-hot-pink);
}
.cs-result {
  padding: 76px 80px; background: #400533;
  border-bottom: var(--bw) solid var(--c-purple-black);
}
.cs-result-inner { max-width: 1000px; margin: 0 auto; }
.cs-result .cs-label { color: #fad59c; margin-bottom: 16px; padding-top: 0; }
.cs-result p { font-size: clamp(19px, 2.2vw, 26px); line-height: 1.5; color: #fad59c; }
.cs-quote { padding: 70px 80px; background: var(--c-cream); border-bottom: var(--bw) solid var(--c-purple-black); text-align: center; }
.cs-quote blockquote {
  max-width: 820px; margin: 0 auto; font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45; color: #400533; font-weight: 500;
}
.cs-quote cite { display: block; margin-top: 22px; font-size: 14px; font-weight: 700; font-style: normal; color: #ba3595; letter-spacing: 0.04em; }
.cs-next { padding: 60px 80px; background: #ffffff; text-align: center; }
.cs-next-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--c-hot-pink); margin-bottom: 12px; }
.cs-next-title { font-size: clamp(28px, 4vw, 46px); font-weight: 700; letter-spacing: -0.02em; color: #400533; transition: color 0.2s ease; }
.cs-next a:hover .cs-next-title { color: #ba3595; }
@media (max-width: 860px) {
  .cs-hero { padding: 48px 28px 40px; }
  .cs-lead, .cs-result, .cs-quote { padding: 48px 28px; }
  .cs-next { padding: 44px 28px; }
  .cs-grid { grid-template-columns: 1fr; gap: 14px; }
  .cs-body p { font-size: 16px; }
}

/* case study — image-led additions */
.cs-figure-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--c-purple-black);
  border-bottom: var(--bw) solid var(--c-purple-black);
}
.cs-figure-grid > figure { margin: 0; background: var(--c-cream); }
.cs-figure-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-figure-grid .img-slot { aspect-ratio: 4 / 3; }
.cs-cap {
  padding: 14px 80px; background: var(--c-cream);
  border-bottom: var(--bw) solid var(--c-purple-black);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: #400533; opacity: 0.65;
}
.cs-overview { padding: 66px 80px; background: var(--c-cream); border-bottom: var(--bw) solid var(--c-purple-black); }
.cs-overview-inner { max-width: 860px; margin: 0 auto; }
.cs-overview p { font-size: clamp(18px, 2vw, 22px); line-height: 1.6; color: #400533; margin-bottom: 18px; }
.cs-overview p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .cs-figure-grid { grid-template-columns: 1fr; }
  .cs-cap { padding: 12px 28px; }
  .cs-overview { padding: 44px 28px; }
}

/* case study — deliverables + cta */
.cs-deliverables {
  margin-top: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px;
}
.cs-deliverables li {
  position: relative; padding-left: 22px;
  font-size: 16px; line-height: 1.45; color: #400533;
}
.cs-deliverables li::before {
  content: '★'; position: absolute; left: 0; top: 1px;
  font-size: 11px; color: var(--c-hot-pink);
}
.cs-cta {
  padding: 90px 40px; background: #ffffff; text-align: center;
  border-bottom: var(--bw) solid var(--c-purple-black);
  position: relative; overflow: hidden;
}
.cs-cta-star {
  position: absolute; top: -30px; right: 40px; width: 150px; height: auto;
  transform: rotate(14deg); opacity: 0.5; pointer-events: none;
  animation: starfloat 6s ease-in-out infinite;
}
.cs-cta-h {
  font-size: clamp(32px, 4.6vw, 56px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.02em; color: #400533;
  position: relative; z-index: 1; margin-bottom: 18px;
}
.cs-cta-p {
  font-size: 18px; line-height: 1.6; color: #400533; opacity: 0.82;
  max-width: 520px; margin: 0 auto 34px; position: relative; z-index: 1;
}
@media (max-width: 860px) {
  .cs-deliverables { grid-template-columns: 1fr; }
  .cs-cta { padding: 60px 28px; }
  .cs-cta-star { width: 95px; top: -18px; right: 16px; }
}

.cs-figure video { width: 100%; height: auto; display: block; }

/* ===== EYEBROW STAR ICON (font-independent) ===== */
.page-eyebrow::before,
.services-eyebrow::before,
.pricing-eyebrow::before,
.menu-eyebrow::before,
.price-eyebrow::before {
  content: ""; display: inline-block;
  width: 0.85em; height: 0.85em; margin-right: 0.45em;
  vertical-align: -0.05em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6l2.95 6.75 7.35.63-5.57 4.83 1.68 7.19L12 17.9l-6.41 3.9 1.68-7.19L1.7 8.98l7.35-.63z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6l2.95 6.75 7.35.63-5.57 4.83 1.68 7.19L12 17.9l-6.41 3.9 1.68-7.19L1.7 8.98l7.35-.63z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ===== ABOUT PAGE — STORY ===== */
.story-quote {
  background: #400533; padding: 100px 80px; text-align: center;
  border-bottom: var(--bw) solid var(--c-purple-black);
}
.story-quote p {
  max-width: 1040px; margin: 0 auto;
  font-size: clamp(32px, 4.4vw, 60px); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.02em; color: #fad59c;
}
.story-quote .sig {
  display: block; margin-top: 24px;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: 18px; color: rgba(250,213,156,0.72); letter-spacing: 0;
}
@media (max-width: 768px) { .story-quote { padding: 56px 28px; } }

/* ===== FAQ ===== */
.faq { padding: 80px; background: var(--c-cream); border-bottom: var(--bw) solid var(--c-purple-black); }
.faq-head { text-align: center; margin-bottom: 44px; }
.faq-eyebrow {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 18px;
  color: var(--c-hot-pink); margin-bottom: 10px; display: inline-block;
}
.faq-eyebrow::before {
  content: ""; display: inline-block; width: 0.85em; height: 0.85em; margin-right: 0.45em;
  vertical-align: -0.05em; background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6l2.95 6.75 7.35.63-5.57 4.83 1.68 7.19L12 17.9l-6.41 3.9 1.68-7.19L1.7 8.98l7.35-.63z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6l2.95 6.75 7.35.63-5.57 4.83 1.68 7.19L12 17.9l-6.41 3.9 1.68-7.19L1.7 8.98l7.35-.63z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.faq-h { font-size: clamp(28px, 4vw, 46px); font-weight: 700; letter-spacing: -0.02em; color: #400533; }
.faq-list {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start;
}
.faq-item { border: var(--bw) solid var(--c-purple-black); background: #ffffff; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 24px; font-family: var(--f);
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 700; letter-spacing: -0.01em;
  color: #400533; transition: color 0.2s ease;
}
.faq-q:hover { color: var(--c-hot-pink); }
.faq-icon { flex-shrink: 0; font-size: 26px; font-weight: 300; line-height: 1; color: var(--c-hot-pink); transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; padding: 0 24px; }
.faq-a-inner > * { margin: 0 0 12px; }
.faq-a-inner > *:first-child { padding-top: 4px; }
.faq-a-inner > *:last-child { margin-bottom: 24px; }
.faq-a p { font-size: 15px; line-height: 1.6; color: #5a4a54; }
.faq-a ul { display: flex; flex-direction: column; gap: 6px; }
.faq-a li { display: flex; gap: 9px; font-size: 15px; line-height: 1.5; color: #5a4a54; }
.faq-a li::before { content: "★"; color: var(--c-hot-pink); font-size: 10px; line-height: 1.7; flex-shrink: 0; }
@media (max-width: 760px) {
  .faq { padding: 56px 28px; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-a p, .faq-a li { font-size: 15px; }
}

/* ===== LIGHTBOX (email capture) ===== */
.lb-overlay {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(28,2,48,0.55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lb-overlay.open { opacity: 1; visibility: visible; }
.lb-box {
  position: relative; width: 100%; max-width: 480px;
  background: var(--c-cream); border: var(--bw) solid #000000;
  box-shadow: 12px 12px 0 #ba3595;
  padding: 48px 40px 34px; text-align: center;
  transform: translateY(16px) scale(0.98); transition: transform 0.3s ease;
}
.lb-overlay.open .lb-box { transform: translateY(0) scale(1); }
.lb-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 30px; line-height: 1; color: #400533; opacity: 0.55; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-star { width: 62px; height: auto; margin: 0 auto 14px; transform: rotate(-8deg); }
.lb-eyebrow {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: 17px; color: var(--c-hot-pink); margin-bottom: 6px;
}
.lb-title { font-size: clamp(26px, 4vw, 34px); font-weight: 700; letter-spacing: -0.02em; color: #400533; line-height: 1.05; }
.lb-p { font-size: 15px; line-height: 1.55; color: #5a4a54; margin: 14px auto 22px; max-width: 360px; }
.lb-form { display: flex; flex-direction: column; gap: 12px; }
.lb-form input[type="email"] {
  font-family: var(--f); font-size: 15px; color: #1c0230;
  background: #ffffff; border: var(--bw) solid #000000; border-radius: 0;
  padding: 14px 16px; width: 100%; text-align: center;
  -webkit-appearance: none; appearance: none;
}
.lb-form input[type="email"]:focus { outline: none; border-color: var(--c-hot-pink); box-shadow: 0 0 0 3px rgba(235,53,195,0.16); }
.lb-form .btn { width: 100%; }
.lb-success h3 { font-size: 26px; font-weight: 700; color: #400533; letter-spacing: -0.02em; margin-bottom: 10px; }
.lb-success p { font-size: 15px; line-height: 1.6; color: #5a4a54; }
.lb-fine { font-size: 12px; color: #9a8b94; margin-top: 16px; }
@media (max-width: 500px) {
  .lb-box { padding: 40px 26px 28px; box-shadow: 7px 7px 0 #ba3595; }
}
