/* =========================================================
   Sites by Sydney: styles
   Pastel palette + editorial layout. Mobile-first.
   Edit the tokens below to restyle the whole site.
   ========================================================= */

:root {
  /* Palette (sampled from the Sites by Sydney logo) */
  --cream: #FDFBF7;       /* logo background: page background */
  --pink: #F2B3BD;        /* logo pink: accents, pills, headings on black */
  --pink-light: #F9DCE1;
  --blush: #FBEEF0;       /* soft section background */
  --sand: #EFE7DC;        /* warm neutral accent */

  /* Editorial pinks
     --rose:       big headings on light backgrounds. The logo pink, deepened
                   to 3.8:1 on cream (WCAG AA for large text)
     --rose-soft:  big headings on black (the exact logo pink, 11:1) */
  --rose: #CF596C;
  --rose-soft: #F2B3BD;

  --ink: #111111;
  --black: #0B0B0C;
  --text: #3D3D3D;
  --muted: #5E5E5E;
  --rule: #111111;
  --line: #EADFDD;
  --white: #FFFFFF;

  --grad: linear-gradient(150deg, #F6C3CC 0%, #FAE0E4 45%, var(--cream) 100%);
  --grad-soft: linear-gradient(120deg, #FBEEF0 0%, #FDF5F1 100%);

  /* Type */
  --font-display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Mrs Saint Delafield", cursive;

  /* Shape + spacing */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --header-h: 68px;

  --shadow: 0 24px 50px -24px rgba(17, 17, 17, .22);
  --shadow-sm: 0 10px 24px -14px rgba(17, 17, 17, .25);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
input, select, textarea, button { font: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h3 { font-size: 1.3rem; line-height: 1.25; }
p { text-wrap: pretty; }

a { color: var(--ink); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }

[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sprite { display: none; }

.icon {
  width: 1.25em; height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm { width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; }

/* ---------- Editorial type helpers ---------- */

/* Big uppercase pink headings (the editorial signature) */
.display {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--rose);
  max-width: 12ch;
}
.display-right { margin-left: auto; text-align: right; }
.display-ink { color: var(--ink); }

/* Small uppercase labels */
.label {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.label .icon { color: var(--rose); }

/* Bold uppercase statement lines */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1vw + .9rem, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}
.statement-lg { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem); line-height: 1.05; }

.num {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Heading on the left, supporting text on the right */
.split-head {
  display: grid;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.split-head-aside { max-width: 30rem; }
.split-head-aside .statement { margin-bottom: .75rem; }
@media (min-width: 900px) {
  .split-head { grid-template-columns: 1.3fr 1fr; align-items: end; }
}

/* ---------- Focus (keyboard) ---------- */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px;
}
.site-header :focus-visible,
.band :focus-visible,
.site-footer :focus-visible { outline-color: var(--rose-soft); }

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 50px;
  padding: .8rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s;
}
.btn .icon { transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .icon { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { box-shadow: 0 12px 24px -10px rgba(212, 80, 138, .7); }

.btn-pink { background: var(--pink); color: var(--ink); }
.btn-pink:hover { background: var(--white); }

.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-sm { min-height: 42px; padding: .5rem 1.1rem; font-size: .78rem; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--pink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 38px;
}
.topbar-inner p { display: flex; align-items: center; gap: .45rem; }
.topbar-email { display: none; text-decoration: none; text-transform: none; letter-spacing: 0; font-size: .85rem; }
.topbar-email:hover { text-decoration: underline; }
@media (min-width: 700px) {
  .topbar-inner { justify-content: space-between; }
  .topbar-email { display: inline; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .5); }

.nav {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: var(--header-h);
}

/* Wordmark: recreates the logo in type. SITES (white) by SYDNEY (logo pink) */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .28em;
  margin-right: auto;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.brand-by { font-size: .68em; font-weight: 600; text-transform: none; letter-spacing: 0; }
.brand-sydney { color: var(--pink); }
.brand-cursor {
  align-self: flex-start;
  width: .8em; height: .8em;
  margin-left: -.1em;
  color: currentColor;
  transition: transform .3s var(--ease);
}
.brand:hover .brand-cursor { transform: translate(2px, -2px) rotate(-8deg); }

.nav-toggle {
  order: 3;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.nav-toggle .icon { width: 26px; height: 26px; grid-area: 1 / 1; }
.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-cta { order: 2; }

.nav-links {
  position: absolute;
  top: 100%; left: 0; right: 0;
  display: none;
  flex-direction: column;
  padding: .5rem var(--gutter) 1.25rem;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
}
.nav-links.is-open { display: flex; }
.nav-links a {
  display: block;
  padding: .9rem 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.nav-cta { white-space: nowrap; }
.nav-menu-cta a { color: var(--pink); }

@media (max-width: 380px) {
  .brand { font-size: 1.1rem; }
  .nav-cta { display: none; }   /* moves into the menu on very small phones */
}
@media (min-width: 381px) {
  .nav-menu-cta { display: none; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
}

@media (min-width: 900px) {
  .nav { gap: 2rem; }
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: .25rem;
    padding: 0;
    border: 0;
    background: none;
  }
  .nav-links a {
    position: relative;
    padding: .5rem .75rem;
    border: 0;
    font-size: .8rem;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: .75rem; right: .75rem; bottom: .2rem;
    height: 2px;
    border-radius: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
  }
  .nav-links a:hover::after,
  .nav-links a[aria-current="true"]::after { transform: scaleX(1); }
  .nav-cta { order: 4; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-pad); }
.section-flush-top { padding-top: 0; }
.section-blush { background: var(--blush); }
.section-gradient { background: var(--grad); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad);
  padding-block: clamp(1.5rem, 3vw, 2.25rem) clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1rem;
  padding-bottom: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1.5px solid var(--ink);
}
.hero-title {
  font-size: clamp(2.7rem, 7.6vw, 7rem);
  line-height: .92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.squiggle { position: relative; white-space: nowrap; display: inline-block; }
.squiggle svg {
  position: absolute;
  left: -1%; bottom: -.16em;
  width: 102%; height: .26em;
  fill: none;
  stroke: var(--rose);
  stroke-width: 5;
  stroke-linecap: round;
}
.js .squiggle path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 1.1s .7s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: start;
}
.hero-copy { max-width: 34rem; }
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.2vw + 1rem, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.hero-support { color: #2F2F2F; max-width: 30rem; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-visual { margin-top: -1rem; }
}

/* Hero illustration */
.hero-visual {
  position: relative;
  width: min(100%, 500px);
  margin-inline: auto;
  padding: 1.5rem 1.5rem 3rem 0;
}
.browser {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(17, 17, 17, .06);
  overflow: hidden;
  transform: rotate(-1.5deg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); }
.dot:nth-child(2) { background: var(--pink-light); }
.dot:nth-child(3) { background: var(--sand); }
.url {
  margin-left: 10px;
  padding: 2px 14px;
  border-radius: 999px;
  background: #F6F2F5;
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
}
.browser-body { display: grid; gap: 14px; padding: 16px; }
.mini-hero {
  display: grid;
  gap: 9px;
  justify-items: start;
  padding: 24px 20px;
  border-radius: 12px;
  background: var(--grad);
}
.ln { display: block; height: 11px; width: 72%; border-radius: 99px; background: var(--ink); }
.ln-lg { height: 18px; width: 82%; border-radius: 3px; }
.ln-md { width: 58%; }
.ln-thin { height: 7px; width: 70%; background: rgba(17, 17, 17, .22); }
.ln-short { width: 48%; }
.mini-btn { display: block; width: 96px; height: 26px; margin-top: 6px; border-radius: 99px; background: var(--ink); }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-card { height: 76px; border-radius: 8px; background: var(--pink); }
.mini-card:nth-child(2) { background: var(--grad); }
.mini-card:nth-child(3) { background: var(--sand); }

.hero-cursor {
  position: absolute;
  left: 94px; top: 180px;
  width: 42px; height: 42px;
  color: var(--ink);
  filter: drop-shadow(0 3px 0 var(--white));
}

.phone {
  position: absolute;
  right: 6px; bottom: 0;
  width: 34%;
  aspect-ratio: 9 / 17;
  padding: 7px;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 100%;
  padding: 12px 10px;
  border-radius: 22px;
  background: var(--white);
  overflow: hidden;
}
.phone .ln { height: 8px; }
.phone .ln-thin { height: 5px; }
.phone .mini-btn { width: 60%; height: 16px; margin: 2px 0 4px; }
.p-block { display: block; height: 32%; border-radius: 10px; background: var(--grad); flex: none; }
.p-card { display: block; flex: 1; border-radius: 8px; background: var(--pink); }
.p-card-sand { background: var(--sand); }

.badge {
  position: absolute;
  top: -.5rem; left: -1rem;
  z-index: 2;
  width: clamp(92px, 22vw, 116px);
}
.badge-text {
  transform-origin: 60px 60px;
  fill: var(--white);
  font: 700 10.5px var(--font-display);
  letter-spacing: 1.9px;
}
.badge-cursor { color: var(--pink); }

.spark { position: absolute; width: 22px; height: 22px; color: var(--rose); }
.spark-1 { right: 30%; top: -2px; }
.spark-2 { left: -6px; bottom: 18%; width: 16px; height: 16px; color: var(--white); }

@media (prefers-reduced-motion: no-preference) {
  .badge-text { animation: spin 22s linear infinite; }
  .hero-cursor { animation: tap 3.2s ease-in-out infinite; }
  .spark { animation: twinkle 2.8s ease-in-out infinite; }
  .spark-2 { animation-delay: 1.2s; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes tap {
  0%, 60%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(-6px, -8px) scale(1); }
  45% { transform: translate(0, 0) scale(.88); }
}
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
  50% { transform: scale(.6) rotate(20deg); opacity: .6; }
}

/* ---------- Benefits (numbered editorial grid) ---------- */
.benefits {
  display: grid;
  gap: 0 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.benefit {
  position: relative;
  padding: 1.5rem 1.25rem 2.25rem;
  border-top: 1.5px solid var(--rule);
  border-radius: 0 0 var(--radius) var(--radius);
  transition: background-color .35s var(--ease);
}
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.benefit:hover::before { opacity: 1; }
.benefit { isolation: isolate; }
.benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.benefit h3 { margin-bottom: .55rem; }
.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--ink);
  transition: transform .35s var(--ease);
}
.benefit-icon .icon { width: 22px; height: 22px; }
.icon-pink { background: var(--pink); }
.icon-light { background: var(--pink-light); }
.icon-sand { background: var(--sand); }
.benefit:hover .benefit-icon { transform: rotate(-10deg) scale(1.08); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 3.5rem;
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.about-photo { position: relative; width: min(100% - 1.25rem, 440px); margin-inline: 0 auto; }

/* soft pastel block peeking out behind the photo */
.about-photo::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border-radius: var(--radius);
  background: var(--grad);
}
.photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--white);
}
.placeholder {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 214, 235, .5) 14px 28px),
    var(--white);
}
.placeholder-label { font-weight: 600; color: var(--muted); }
.placeholder-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 1;
  padding: .15rem .7rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signature {
  position: absolute;
  left: -.5rem; bottom: -2.25rem;
  font-family: var(--font-script);
  font-size: clamp(4rem, 9vw, 5.5rem);
  line-height: 1;
  color: var(--ink);
  transform: rotate(-8deg);
  pointer-events: none;
}

/* Intro column (used while there's no headshot) */
.about-intro { position: relative; }
.statement-xl {
  font-size: clamp(2.8rem, 5vw + 1rem, 5.25rem);
  line-height: .92;
  letter-spacing: -0.035em;
}
.about-intro .signature {
  position: static;
  display: inline-block;
  margin: .75rem 0 0 .5rem;
  color: var(--rose);
}

.about-copy { padding-top: 1rem; }
.about-copy .statement-lg { margin-bottom: 1.25rem; }
.about-copy > p:not(.statement):not(.disclaimer) { margin-bottom: 1.75rem; max-width: 36rem; }

.rule-list { margin-bottom: 2rem; border-top: 1px solid var(--rule); }
.rule-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid var(--rule);
  color: #262626;
  font-weight: 500;
}
.rule-list .icon {
  width: 24px; height: 24px;
  padding: 4px;
  margin-top: .1rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--pink);
  stroke-width: 2.6;
}

.stat {
  display: grid;
  gap: .5rem 1.75rem;
  align-items: end;
  padding: 1.5rem 0 0;
}
.stat-number {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 8rem);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -0.05em;
  color: var(--rose);
}
.stat-unit {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.stat-text { max-width: 26rem; color: #262626; font-weight: 500; }
.disclaimer { margin-top: 1rem; font-size: .82rem; color: var(--muted); }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: 5.5rem; }
  .about-photo { margin-top: -5rem; }
}
@media (min-width: 1100px) {
  .stat { grid-template-columns: auto 1fr; }
}

/* ---------- Black band: who I work with ---------- */
.band {
  background: var(--black);
  color: #D6D6D6;
  padding-block: clamp(2.75rem, 5vw, 3.75rem);
  overflow: hidden;
}
.band-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem 2rem;
  margin-bottom: 1.75rem;
}
.band-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--rose-soft);
}
.band a { color: var(--white); }

.marquee {
  display: flex;
  gap: .75rem;
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.marquee-track {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.marquee-track li {
  flex: none;
  padding: .7rem 1.35rem;
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track li:nth-child(3n + 2) { background: var(--pink-light); }
.marquee-track li:nth-child(3n) { background: var(--sand); }

/* Scrolling version: only with JS and when motion is OK */
@media (prefers-reduced-motion: no-preference) {
  .js .marquee.is-running {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .js .marquee.is-running .marquee-track {
    flex-wrap: nowrap;
    flex: none;
    animation: marquee 45s linear infinite;
  }
  .js .marquee.is-running:hover .marquee-track,
  .js .marquee.is-paused .marquee-track { animation-play-state: paused; }
}
@keyframes marquee { to { transform: translateX(calc(-100% - .75rem)); } }

.band-foot { display: flex; justify-content: flex-end; margin-top: 1.25rem; }
.marquee-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 40px;
  padding: .4rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.marquee-toggle:hover { border-color: var(--white); }
.marquee-toggle[hidden] { display: none; }
.marquee-toggle .icon { width: 16px; height: 16px; }
.marquee-toggle .icon-play,
.marquee-toggle[data-paused="true"] .icon-pause { display: none; }
.marquee-toggle[data-paused="true"] .icon-play { display: block; }

/* ---------- How it works ---------- */
.process-grid { display: grid; gap: 3rem; }
.process-side .display { margin-bottom: 1.5rem; }
.process-side .statement { max-width: 22rem; margin-bottom: 1.75rem; }
.process-side .fine-print { margin-top: 2rem; max-width: 22rem; }

.steps { border-top: 1.5px solid var(--rule); }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.6rem 1rem 1.7rem;
  border-bottom: 1.5px solid var(--rule);
  isolation: isolate;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.step:hover::before { opacity: 1; }
.step .num { padding-top: .3rem; }
.step h3 { margin-bottom: .45rem; }
.step p { max-width: 36rem; }
.step-feature::before { opacity: .65; }

.sticker {
  display: inline-block;
  margin-left: .4rem;
  padding: .15rem .7rem;
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: .2em;
  transform: rotate(6deg);
  transition: transform .3s var(--ease);
}
.step-feature:hover .sticker { transform: rotate(-4deg) scale(1.08); }

.fine-print { font-size: .85rem; color: var(--muted); }
.fine-print-center { max-width: 46rem; margin: 2.5rem auto 0; text-align: center; }

@media (min-width: 960px) {
  .process-grid { grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
  .process-side { position: sticky; top: calc(var(--header-h) + 2rem); }
}

/* ---------- Portfolio (staggered editorial layout) ---------- */
.work-grid { display: grid; gap: 3rem 1.5rem; }
.work-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1rem;
}
.work-media-single { grid-template-columns: 1fr; }
.work-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-sm); }
.ph {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  background: repeating-linear-gradient(45deg, #F7F2F5 0 12px, #FCF9FB 12px 24px);
  border: 1.5px dashed #CDB9C6;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ph-after { background: var(--grad); color: var(--ink); border-color: transparent; }
.work-caption {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: .75rem;
  padding-top: .9rem;
  border-top: 1px solid var(--rule);
}
.work-caption h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .2rem; }
.work-caption p { font-size: .92rem; color: var(--muted); }

@media (min-width: 800px) {
  .work-grid { grid-template-columns: repeat(12, 1fr); }
  .work-item-lg { grid-column: 1 / span 7; }
  .work-item-sm { grid-column: 9 / span 4; margin-top: 8rem; }
  .work-item-md { grid-column: 3 / span 6; }
}

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin-top: clamp(2rem, 4vw, 3rem);
}
.quote { position: relative; padding: 2rem 0; border-top: 1.5px solid var(--rule); }
.quote blockquote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--ink);
}
.quote-by { margin-top: 1rem; font-size: .9rem; color: var(--muted); }
.placeholder-card {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 3rem 1.5rem 2rem;
  border: 1.5px dashed #CDB9C6;
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; gap: 1.5rem; }
.price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--ink);
  background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card-feature { background: var(--grad); border-color: transparent; }
.price-card .btn { margin-top: auto; }
.price-card h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .02em; }
.price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw + 1rem, 3.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: .95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.price span { font-size: 1rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.price-card-feature p:not(.price):not(.label) { color: #2F2F2F; }

.mini-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.mini-tags li {
  padding: .3rem .85rem;
  border-radius: 999px;
  background: var(--blush);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
}

@media (min-width: 800px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- CTA + form ---------- */
.cta-grid { display: grid; gap: 3rem; align-items: start; }
.cta-copy .label { margin-bottom: 1.25rem; }
.cta-copy .display { font-size: clamp(2.4rem, 5vw, 4.2rem); max-width: 14ch; margin-bottom: 1.5rem; }
.cta-copy > p:not(.label):not(.cta-alt) { color: #262626; margin-bottom: 1.75rem; font-size: 1.1rem; max-width: 30rem; }
.cta-alt { font-size: .95rem; color: #262626; }

.preview-form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.field { display: grid; gap: .4rem; align-content: start; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink);
}
.optional { font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .85rem; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: .75rem 1rem;
  border: 1.5px solid #8C8290;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}
::placeholder { color: #767676; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px var(--pink);
}
.field [aria-invalid="true"] { border-color: #B3261E; }
.field-error { font-size: .85rem; font-weight: 500; color: #B3261E; }

.form-status { font-size: .95rem; font-weight: 500; color: var(--ink); }
.form-status:empty { display: none; }
.form-status.is-success { padding: .9rem 1.1rem; border-radius: var(--radius-sm); background: var(--blush); }

@media (min-width: 600px) {
  .preview-form { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
}
@media (min-width: 1000px) {
  .cta-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
  .cta-copy { position: sticky; top: calc(var(--header-h) + 2rem); }
}

/* ---------- Footer (black, editorial) ---------- */
.site-footer {
  background: var(--black);
  color: #C9C9C9;
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: .95rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
.footer-display {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--rose-soft);
}
.footer-label {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-contact { display: grid; gap: .8rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .75rem; }
.round-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--ink);
  transition: transform .25s var(--ease);
}
.footer-contact a:hover .round-icon { transform: rotate(-10deg) scale(1.08); }
.footer-links { display: grid; gap: .5rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 2rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: .85rem;
  color: #ABABAB;
}
.brand-footer { font-size: 1.4rem; margin: 0; }

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ---------- Preview page ---------- */
.page-hero {
  background: var(--grad);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.page-hero .hero-meta { margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 13ch;
  margin-bottom: 1.5rem;
}
.page-hero .lead { max-width: 36rem; font-family: var(--font-body); font-size: clamp(1.1rem, .6vw + 1rem, 1.3rem); font-weight: 500; line-height: 1.55; letter-spacing: 0; margin: 0; }
.next-steps {
  display: grid;
  gap: 0 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  margin-bottom: 3rem;
}
.next-steps li { padding: 1.25rem 0 1rem; border-top: 1.5px solid var(--rule); }
.next-steps .num { display: block; margin-bottom: .75rem; }
.next-steps h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .35rem; }
.next-steps p { font-size: .95rem; }
.form-wrap { max-width: 48rem; margin-inline: auto; }

/* ---------- Scroll-in animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: calc(var(--d, 0) * 90ms);
  }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  /* (main.js removes .reveal once the animation ends, so hover effects stay snappy) */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .squiggle path { stroke-dashoffset: 0; }
}
