/* ============================================================
   AFTERTASTE — BRAND STYLESHEET
   Fonts: Anton (display) + Poppins (body)
   Theme: Black & White — Accents: Red · Blue · Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Brand Tokens ---- */
:root {
  --red:    #2C2C2C;
  --blue:   #2C2C2C;
  --gold:   #2C2C2C;
  --yellow: #2C2C2C;
  --black:  #2C2C2C;
  --white:  #ffffff;
  --off:    #f5f5f5;
  --card:   #f0f0f0;
  --card-h: #e8e8e8;
  --muted:  #666666;
  --border: rgba(0,0,0,0.1);
  --border-md: rgba(0,0,0,0.16);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;

  /* Legacy aliases */
  --coral:    #C94533;
  --coral-dk: #a83828;
  --crimson:  #a83828;
  --navy:     #f5f5f5;
  --amber:    #DEC96A;
  --surface:  #f5f5f5;
  --light:    #e8e8e8;
}

/* ---- Base ---- */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
}

h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-style: italic;
  color: var(--black);
}

/* Display type: bold + uppercase for all converted display elements */
.hero__headline, .section-title, .problem-cols__headline,
.svc-card__title, .how-step__title,
.work-card__title,
.for-card__title, .cta-band__title,
.schedule-bar__title,
.service-manifesto__headline, .editorial-service__headline,
.package-block__headline, .quad-card__title,
.value-card__title, .team-card__name,
.page-hero__title, .footer__logo,
.contact-info-card h3, .service-item__title,
.process-step__title, .pricing-card__name,
.nav__logo-text {
  font-weight: 800;
  text-transform: uppercase;
}

/* Anchor section offset for fixed nav */
#home, #about, #work, #services, #contact {
  scroll-margin-top: 68px;
}

p { color: var(--muted); line-height: 1.85; font-weight: 300; }

/* ---- Color utilities ---- */
.red    { color: var(--red); }
.coral  { color: var(--red); }
.blue   { color: var(--blue); }
.gold   { color: var(--gold); }
.yellow { color: var(--yellow); }
.black-line { display: block; color: var(--gold); }

/* ---- General utilities ---- */
.italic  { font-style: italic; }
.light   { font-weight: 300; }
.tracked { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.75rem; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ---- Sections ---- */
.section        { padding: 7rem 0; background: var(--white); }
.section--tight { padding: 4.5rem 0; }
.section--off   { background: var(--off); }
.section--navy  { background: var(--off); }
.section--black { background: var(--black); }
.section--red   { background: var(--red); }
.section--blue  { background: var(--blue); }

/* White-background sections (inverted) */
.section--white {
  background: var(--white);
}
.section--white h1,
.section--white h2,
.section--white h3 { color: var(--black); }
.section--white p   { color: #555; }
.section--white .section-num { color: #999; }
.section--white .section-title { color: var(--black); }

/* ---- Label / Eyebrow ---- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.label::before { content: '—'; color: var(--gold); font-size: 0.8em; }

.section-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--black);
  max-width: 560px;
}

.section-header        { margin-bottom: 3.5rem; }
.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn--red,
.btn--coral {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover,
.btn--coral:hover { background: #111111; border-color: #111111; transform: translateY(-1px); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover { background: #111111; border-color: #111111; transform: translateY(-1px); }

.btn--gold,
.btn--yellow,
.btn--white {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--gold:hover,
.btn--yellow:hover,
.btn--white:hover { background: #111111; border-color: #111111; transform: translateY(-1px); }

.btn--black,
.btn--navy {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--black:hover,
.btn--navy:hover { background: #111111; border-color: #111111; transform: translateY(-1px); }

.btn--outline,
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover,
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-1px); }

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

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

.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.72rem; }
.btn--lg { padding: 1rem 2.2rem; font-size: 0.88rem; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav__container {
  display: flex;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding-right: 2rem;
  border-right: 1px solid rgba(0,0,0,0.1);
}
.nav__logo-text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.nav__links { display: flex; align-items: stretch; }
.nav__links li { display: flex; align-items: stretch; }

.nav__link {
  display: flex;
  align-items: center;
  padding: 0 1.3rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: color 0.18s;
}
.nav__link:hover { color: var(--black); }
.nav__link.active { color: var(--black); border-bottom: 2px solid var(--red); }

.nav__cta {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.18s;
  margin-left: 1rem;
  white-space: nowrap;
}
.nav__cta:hover { background: #111111; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  align-self: center;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: all 0.22s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero — Video ---- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero__video-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero__video {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.82) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.4);
  display: inline-block;
}

.hero__headline {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.hero__headline .black-line { display: block; color: var(--gold); }
.hero__headline .gold        { color: var(--gold); }
.hero__headline .red         { color: var(--red); }

.hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 1;
}
.hero__scroll-line { width: 36px; height: 1px; background: rgba(255,255,255,0.3); }

/* ---- Logos Bar — Gold ---- */
.logos-bar {
  background: var(--gold);
  padding: 0;
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 0;
  animation: marqueeLogo 24s linear infinite;
  width: max-content;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 2rem;
  border-right: 1px solid rgba(0,0,0,0.15);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  white-space: nowrap;
}

@keyframes marqueeLogo {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Marquee Ticker — Blue ---- */
.ticker {
  background: var(--blue);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.ticker__track {
  display: flex;
  gap: 2rem;
  animation: marqueeLogo 32s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.ticker__track .dot { color: rgba(255,255,255,0.4); }

/* ---- Problem / Split ---- */
.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.problem-cols__headline {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--white);
}
.problem-cols__headline .red   { color: var(--red); }
.problem-cols__headline .coral { color: var(--red); }
.problem-cols__body p {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
}
.problem-cols__body p:last-of-type { margin-bottom: 2rem; }

/* ---- Services Grid (legacy) ---- */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--card);
  padding: 2.5rem 2.2rem;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.svc-card:hover { background: var(--card-h); }
.svc-card__num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.25rem 0.7rem;
  border: 1.5px solid var(--gold);
  width: fit-content;
}
.svc-card__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.35rem; color: var(--white); line-height: 1.1; }
.svc-card__desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.75; flex: 1; }
.svc-card__link  { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; margin-top: 0.5rem; }
.svc-card__link:hover { gap: 0.65rem; }

/* ---- How It Works ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.how-step { padding: 2.4rem 2rem; display: flex; flex-direction: column; gap: 0.8rem; background: var(--card); }
.how-step__num  { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 3.5rem; line-height: 1; color: var(--gold); opacity: 0.35; }
.how-step__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.1rem; color: var(--white); }
.how-step__desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ---- Work Grid ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.work-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.work-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  transition: background 0.2s;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.work-card:hover { background: var(--card-h); border-top: 2px solid var(--blue); }
.work-card:hover .work-card__img .ph-img {
  filter: brightness(0.82);
  transform: scale(1.05);
}

.work-card__img { aspect-ratio: 3/2; overflow: hidden; }
.ph-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  transition: filter 0.35s var(--ease), transform 0.5s var(--ease);
  transform-origin: center;
}
/* Monochromatic gradient placeholders with accent color tints */
.ph-img--1 { background: linear-gradient(160deg, #000 0%, #111 40%, #1a1a1a 100%); }
.ph-img--2 { background: linear-gradient(160deg, #000 0%, #0a0a1a 40%, #141420 100%); }
.ph-img--3 { background: linear-gradient(160deg, #000 0%, #1a0a0a 40%, #201010 100%); }
.ph-img--4 { background: linear-gradient(160deg, #000 0%, #0a1000 40%, #101800 100%); }
.ph-img--5 { background: linear-gradient(160deg, #000 0%, #1a1000 40%, #201800 100%); }
.ph-img--6 { background: linear-gradient(160deg, #000 0%, #0a0a0a 40%, #181818 100%); }

.ph-img__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.28rem 0.7rem;
}

.work-card__body  { padding: 1.4rem 1.6rem 1.8rem; }
.work-card__tags  { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.work-tag {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; background: transparent; border: 1px solid var(--border-md); color: var(--muted);
}
.work-card__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.05rem; color: var(--white); letter-spacing: 0.02em; margin-bottom: 0.25rem; }
.work-card__sub   { font-size: 0.82rem; color: var(--muted); font-style: italic; }

/* ---- Case Feature ---- */
.case-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.case-feature__content {
  background: var(--card);
  padding: 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.case-feature__client {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-feature__pull {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: 0.01em;
}
.case-feature__stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.case-feature__stat-num {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.case-feature__stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.45;
}
.case-feature__content p {
  font-size: 0.93rem;
  line-height: 1.82;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
  margin: 0;
}
.case-feature__link {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.18s;
  margin-top: auto;
}
.case-feature__link:hover { opacity: 0.5; }
.case-feature__image {
  background: var(--card);
  overflow: hidden;
  min-height: 420px;
}

@media (max-width: 768px) {
  .case-feature { grid-template-columns: 1fr; }
  .case-feature__image { min-height: 260px; order: -1; }
  .case-feature__stats { flex-wrap: wrap; gap: 1.2rem; }
  .case-feature__content { padding: 2rem; }
}

/* ---- Stats ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-block { background: var(--card); padding: 3rem 2rem; text-align: center; transition: background 0.2s; }
.stat-block:hover { background: var(--card-h); }

.stat-block:nth-child(1) .stat-block__num { color: var(--red); }
.stat-block:nth-child(2) .stat-block__num { color: var(--white); }
.stat-block:nth-child(3) .stat-block__num { color: var(--blue); }
.stat-block:nth-child(4) .stat-block__num { color: var(--gold); }

.stat-block__num {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-block__suf   { font-size: 0.7em; }
.stat-block__label { font-size: 0.8rem; font-weight: 300; font-style: italic; color: var(--muted); }

/* ---- Testimonial ---- */
.testimonial-block { max-width: 820px; }
.testimonial-block__quote {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--red);
}
.testimonial-block__author { display: flex; align-items: center; gap: 1rem; padding-left: 1.5rem; }
.testimonial-block__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--red); flex-shrink: 0; opacity: 0.6; }
.testimonial-block__name   { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.testimonial-block__role   { font-size: 0.78rem; color: var(--muted); font-weight: 300; font-style: italic; }

/* ---- Who It's For ---- */
.for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.for-card { background: var(--card); padding: 2.2rem 2rem; transition: background 0.2s; }
.for-card:hover { background: var(--card-h); }
.for-card__icon  { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.for-card__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.for-card__desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ---- CTA Band ---- */
.cta-band {
  background: var(--off);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 22vw; text-transform: uppercase;
  color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; user-select: none; white-space: nowrap;
}
.cta-band__inner { position: relative; }
.cta-band__title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: 0.01em; line-height: 1.0; color: var(--white); margin-bottom: 1.2rem;
}
.cta-band__title .yellow,
.cta-band__title .gold   { color: var(--gold); }
.cta-band__title .red    { color: var(--red); }
.cta-band__sub   { font-size: 1rem; color: var(--muted); max-width: 400px; margin-bottom: 2.4rem; font-weight: 300; line-height: 1.75; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--border); }

/* ---- About Page ---- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-split h2 { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--white); margin-bottom: 1.4rem; line-height: 1.05; }
.about-split p  { font-size: 0.97rem; line-height: 1.82; color: var(--muted); margin-bottom: 1.1rem; font-style: italic; font-weight: 300; }
.about-split p:last-of-type { margin-bottom: 2rem; }

.about-visual { position: relative; }
.ph-about {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #000 0%, #111 50%, #0a0a0a 100%);
  border: 1px solid var(--border-md);
}
.ph-about__text {
  font-family: 'Poppins', sans-serif; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.1); padding: 0.35rem 1rem;
}

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.value-card { background: var(--card); padding: 2.6rem 2.4rem; transition: background 0.2s; border-top: 3px solid transparent; }
.value-card:hover { background: var(--card-h); }
.value-card__num   { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 3rem; line-height: 1; margin-bottom: 0.8rem; opacity: 0.55; }
.value-card__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.15rem; color: var(--black); letter-spacing: 0.02em; margin-bottom: 0.7rem; }
.value-card__desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

.value-card--red    { border-top-color: var(--red); }
.value-card--red    .value-card__num { color: var(--red); }
.value-card--blue   { border-top-color: var(--blue); }
.value-card--blue   .value-card__num { color: var(--blue); }
.value-card--gold   { border-top-color: var(--gold); }
.value-card--gold   .value-card__num { color: var(--gold); }
.value-card--yellow { border-top-color: var(--yellow); }
.value-card--yellow .value-card__num { color: var(--yellow); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.team-card { background: var(--card); overflow: hidden; transition: background 0.2s; }
.team-card:hover { background: var(--card-h); }
.team-card__photo { height: 220px; display: flex; align-items: center; justify-content: center; }
.ph-team-1 { background: linear-gradient(160deg, #0a0000, #200505); }
.ph-team-2 { background: linear-gradient(160deg, #00000a, #050520); }
.ph-team-3 { background: linear-gradient(160deg, #0a0800, #201500); }
.team-card__initial { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 4rem; color: rgba(255,255,255,0.1); letter-spacing: 0.04em; }
.team-card__info  { padding: 1.3rem 1.6rem 1.8rem; }
.team-card__name  { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1rem; color: var(--white) !important; letter-spacing: 0.03em; margin-bottom: 0.2rem; }
.team-card__role  { font-size: 0.78rem; font-weight: 400; color: var(--gold); letter-spacing: 0.04em; }

/* ---- Services Page ---- */
.services-full { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-item {
  display: grid; grid-template-columns: 240px 1fr auto; align-items: center;
  gap: 3rem; padding: 2.2rem 2.5rem; background: var(--card); transition: background 0.2s;
}
.service-item:hover { background: var(--card-h); }
.service-item__num   { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.service-item__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.2rem; color: var(--white); letter-spacing: 0.02em; margin-top: 0.35rem; }
.service-item__desc  { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }
.service-item__tags  { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: flex-end; min-width: 200px; }
.tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; background: transparent; border: 1px solid var(--border-md); color: var(--muted);
}

/* ---- Process Grid ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.process-step { background: var(--card); padding: 2.4rem 2rem; transition: background 0.2s; }
.process-step:hover { background: var(--card-h); }
.process-step__num   { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 3.5rem; color: var(--white); opacity: 0.08; line-height: 1; margin-bottom: 1rem; }
.process-step__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 0.6rem; }
.process-step__desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pricing-card { background: var(--card); padding: 2.4rem 2.2rem; display: flex; flex-direction: column; transition: background 0.2s; }
.pricing-card:hover { background: var(--card-h); }
.pricing-card__name   { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.1rem; color: var(--white); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.pricing-card__price  { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 0.6rem; }
.pricing-card__price span { font-size: 1rem; color: var(--muted); }
.pricing-card__sub    { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.pricing-divider      { height: 1px; background: var(--border); margin: 1.2rem 0; }
.pricing-card__features { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; margin-bottom: 1.5rem; }
.pricing-card__feature { font-size: 0.85rem; color: var(--muted); padding-left: 1rem; position: relative; }
.pricing-card__feature::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.pricing-card--featured { background: var(--card-h); border: 1px solid var(--border-md); }
.pricing-card__badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1.5px solid var(--gold); padding: 0.2rem 0.6rem; width: fit-content; margin-bottom: 1rem;
}

/* ---- Contact Page ---- */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 5rem; align-items: start; }
.contact-form   { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group     { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--card);
  border: 1px solid var(--border-md);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  transition: border-color 0.18s, background 0.18s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); background: var(--card-h); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-select option { background: var(--card); color: var(--white); }
.form-textarea  { min-height: 160px; resize: vertical; line-height: 1.7; }
.form-submit    { margin-top: 0.5rem; }
.form-status    { font-size: 0.9rem; font-weight: 500; color: var(--gold); min-height: 1.4em; }

.contact-sidebar    { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card  { background: var(--card); border: 1px solid var(--border); padding: 2rem 2.2rem; }
.contact-info-card h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 0.95rem; color: var(--white);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.4rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.contact-item            { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item__icon      { font-size: 1rem; width: 1.6rem; flex-shrink: 0; line-height: 1.6; filter: grayscale(1) opacity(0.4); }
.contact-item__label     { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }
.contact-item__value     { font-size: 0.88rem; color: var(--white); }
.contact-item__value a:hover { color: var(--gold); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--muted);
  padding: 1rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: color 0.18s;
}
.faq-question:hover { color: var(--white); }
.faq-question::after { content: '+'; font-size: 1.1rem; color: var(--muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); color: var(--gold); }
.faq-item.open .faq-question { color: var(--white); }
.faq-answer { display: none; padding-bottom: 1.2rem; }
.faq-answer p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ---- Footer ---- */
.footer { background: var(--off); border-top: 1px solid var(--border); padding: 4.5rem 0 2.5rem; }
.footer__top    { display: flex; gap: 5rem; margin-bottom: 3.5rem; }
.footer__brand  { flex: 0 0 auto; max-width: 220px; }
.footer__logo   { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 0.5rem; }
.footer__tagline { font-size: 0.78rem; color: var(--muted); font-weight: 300; font-style: italic; line-height: 1.6; }
.footer__links  { display: flex; flex: 1; gap: 3rem; justify-content: flex-end; }
.footer__col    { display: flex; flex-direction: column; gap: 0.7rem; min-width: 120px; }
.footer__col-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.footer__col a  { font-size: 0.88rem; color: rgba(255,255,255,0.38); transition: color 0.18s; font-weight: 300; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--muted);
}

/* ---- Page Hero ---- */
.page-hero {
  background: var(--black);
  padding: 9rem 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero__stripe { position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--red); }
.page-hero__eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.page-hero__title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0; color: var(--white); margin-bottom: 1.4rem; max-width: 700px;
}
.page-hero__title .red,
.page-hero__title .coral { color: var(--red); }
.page-hero__sub { font-size: 1rem; color: var(--muted); max-width: 500px; line-height: 1.8; font-weight: 300; }

/* ---- Reveal Animations ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   ATELIER COMPONENTS
   ============================================================ */

/* ---- Schedule Bar — White (inverted for contrast) ---- */
.schedule-bar {
  background: var(--white);
  border-top: 3px solid var(--black);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.schedule-bar__watermark {
  position: absolute; right: -0.05em; top: 50%; transform: translateY(-50%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 18vw; text-transform: uppercase;
  color: rgba(0,0,0,0.04); line-height: 1; pointer-events: none; user-select: none; white-space: nowrap;
}
.schedule-bar__inner { display: flex; justify-content: space-between; align-items: center; gap: 3rem; position: relative; }
.schedule-bar__eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem; }
.schedule-bar__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.0; color: var(--black); }
.schedule-bar__title .red,
.schedule-bar__title .coral { color: var(--red); }
.schedule-bar__left {}
.schedule-bar__right { max-width: 420px; }
.schedule-bar__sub { font-size: 0.95rem; color: #666; line-height: 1.8; font-weight: 300; margin-bottom: 1.8rem; }

/* ---- Service Manifesto ---- */
.service-manifesto { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem 0; }
.service-manifesto__headline { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.0; color: var(--white); margin-bottom: 2.5rem; }
.service-manifesto__headline .red,
.service-manifesto__headline .coral { color: var(--red); }
.service-manifesto__body { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.service-manifesto__body p { font-size: 1rem; line-height: 1.85; color: var(--muted); font-weight: 300; }

/* ---- Editorial Service ---- */
.editorial-service { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; padding: 2rem 0; }
.editorial-service__headline { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.0; color: var(--black); letter-spacing: 0.01em; margin-top: 0.8rem; }
.editorial-service__headline .red,
.editorial-service__headline .coral { color: var(--red); }
.editorial-service__right p { font-size: 1rem; line-height: 1.9; font-weight: 300; color: var(--muted); margin-bottom: 1.3rem; }
.editorial-service__right p:last-of-type { margin-bottom: 2.2rem; }
.editorial-service__list { display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1.8rem; }
.editorial-service__item { display: flex; align-items: baseline; gap: 0.75rem; font-size: 0.95rem; font-weight: 300; font-style: italic; color: var(--muted); line-height: 1.6; }
.editorial-service__dash { color: var(--gold); font-style: normal; flex-shrink: 0; }

/* ---- Package Block ---- */
.package-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.package-block__headline { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.0; color: var(--white); letter-spacing: 0.02em; }
.package-block__headline .red,
.package-block__headline .yellow,
.package-block__headline .coral { color: var(--red); }
.package-block__right p { font-size: 1rem; line-height: 1.85; font-weight: 300; font-style: italic; color: var(--muted); margin-bottom: 2rem; }

/* ---- Quad Grid ---- */
.quad-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.quad-card { background: var(--card); display: flex; flex-direction: column; overflow: hidden; transition: background 0.22s var(--ease); border-top: 3px solid transparent; }
.quad-card:hover { background: var(--card-h); }
.quad-card__body  { padding: 3rem 2.4rem 3.2rem; display: flex; flex-direction: column; }
.quad-card__num   { font-family: 'Poppins', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.18rem 0.55rem; width: fit-content; margin-bottom: 1.4rem; border: 1.5px solid; }
.quad-card__title { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: clamp(1.4rem, 2vw, 1.9rem); letter-spacing: 0.02em; line-height: 1.05; color: var(--black); margin-bottom: 0.65rem; }
.quad-card__sub   { font-size: 0.87rem; font-weight: 300; font-style: italic; color: var(--muted); line-height: 1.75; }

.quad-card--red    { border-top-color: var(--red); }
.quad-card--red    .quad-card__num { color: var(--red); border-color: var(--red); }
.quad-card--blue   { border-top-color: var(--blue); }
.quad-card--blue   .quad-card__num { color: var(--blue); border-color: var(--blue); }
.quad-card--gold   { border-top-color: var(--gold); }
.quad-card--gold   .quad-card__num { color: var(--gold); border-color: var(--gold); }
.quad-card--yellow { border-top-color: var(--yellow); }
.quad-card--yellow .quad-card__num { color: var(--yellow); border-color: var(--yellow); }

/* ---- Decorative rules ---- */
.thin-rule       { height: 1px; background: var(--border); }
.thin-rule--bold { height: 1px; background: var(--border-md); }
.thin-rule--red  { height: 2px; background: var(--red); }

/* ---- Page Hero atelier variant ---- */
.page-hero--atelier { padding: 11rem 0 7rem; }
.page-hero--atelier .page-hero__title { font-size: clamp(3.5rem, 7vw, 7rem); max-width: 100%; }
.page-hero--atelier .page-hero__sub { font-style: italic; font-weight: 300; color: var(--muted); font-size: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1060px) {
  .services-grid-3   { grid-template-columns: 1fr 1fr; }
  .how-grid          { grid-template-columns: repeat(2, 1fr); }
  .work-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-row         { grid-template-columns: repeat(2, 1fr); }
  .problem-cols      { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-split       { grid-template-columns: 1fr; gap: 3rem; }
  .service-item      { grid-template-columns: 1fr; gap: 0.8rem; }
  .service-item__tags { justify-content: flex-start; }
  .process-grid      { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 420px; }
  .contact-layout    { grid-template-columns: 1fr; }
  .contact-sidebar   { position: static; }
  .footer__top       { flex-direction: column; gap: 2.5rem; }
  .footer__links     { flex-wrap: wrap; gap: 2.5rem; }
  .section-header--split { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .editorial-service { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section    { padding: 5rem 0; }
  .container  { padding: 0 1.5rem; }
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.mobile-open {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: var(--black); justify-content: center; align-items: center; z-index: 99; gap: 0.5rem;
  }
  .nav__links.mobile-open li { border: none; }
  .nav__links.mobile-open .nav__link {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 2.5rem; letter-spacing: 0.04em;
    color: var(--white); border: none; padding: 0.5rem 1rem;
  }
  .nav__links.mobile-open .nav__link:hover { color: rgba(255,255,255,0.6); background: transparent; }

  .services-grid-3 { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .for-grid        { grid-template-columns: 1fr; }
  .work-grid       { grid-template-columns: 1fr; }
  .work-grid--two  { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .form-row        { grid-template-columns: 1fr; }
  .footer__links   { flex-direction: column; gap: 2rem; }
  .footer__bottom  { flex-direction: column; gap: 0.5rem; text-align: center; }
  .package-block   { grid-template-columns: 1fr; gap: 3rem; }
  .service-manifesto__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .quad-grid       { grid-template-columns: 1fr; }
  .schedule-bar__inner { flex-direction: column; gap: 2.5rem; }

  /* Constrain portrait images so they don't dominate the screen */
  .about-visual    { max-height: 300px; overflow: hidden; }

  /* Allow long button text to wrap instead of overflowing */
  .btn             { white-space: normal; text-align: center; justify-content: center; }

  /* Reduce gaps when columns stack */
  .about-split     { gap: 2rem; }

  /* Section header spacing */
  .section-header  { margin-bottom: 2rem; }

  /* Booking modal iframe height on phones */
  .booking-modal iframe { height: 480px !important; }
}

@media (max-width: 480px) {
  .hero__headline  { font-size: 3.2rem; }
  .stats-row       { grid-template-columns: 1fr; }
  .how-grid        { grid-template-columns: 1fr; }
  .process-grid    { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .nav__logo-text  { font-size: 1.2rem; }

  /* Tighten up spacing on small phones */
  .section         { padding: 4rem 0; }
  .container       { padding: 0 1.25rem; }
  .about-visual    { max-height: 240px; }
  .about-split     { gap: 1.5rem; }
  .schedule-bar    { padding: 3.5rem 0; }

  /* Reduce form label tracking for long labels */
  .form-label      { letter-spacing: 0.06em; text-transform: none; font-size: 0.75rem; }

  /* Booking modal padding */
  .booking-modal__dialog { padding: 1.75rem 1.25rem 1rem; }
  .booking-modal iframe  { height: 440px !important; }
}

/* ============================================================
   LIGHT THEME — overrides for elements with hardcoded dark values
   ============================================================ */

/* Text that was white on dark — now black on white */
.section-title,
.problem-cols__headline,
.svc-card__title, .how-step__title,
.work-card__title,
.stat-block:nth-child(2) .stat-block__num,
.testimonial-block__quote, .testimonial-block__name,
.for-card__title, .cta-band__title,
.service-manifesto__headline, .editorial-service__headline,
.package-block__headline, .quad-card__title,
.value-card__title, .team-card__name,
.page-hero__title, .footer__logo,
.contact-info-card h3, .contact-item__value,
.service-item__title, .process-step__title,
.pricing-card__name, .about-split h2,
.faq-question:hover, .faq-item.open .faq-question { color: var(--black); }

.team-card__name { color: var(--black) !important; }

/* Form inputs */
.form-input, .form-select, .form-textarea { color: var(--black); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.3); }

/* Outline button on light background */
.btn--outline,
.btn--outline-white {
  color: var(--black);
  border-color: rgba(0,0,0,0.3);
}
.btn--outline:hover,
.btn--outline-white:hover {
  color: var(--black);
  border-color: var(--black);
  background: rgba(0,0,0,0.05);
}

/* Footer links */
.footer__col a { color: rgba(0,0,0,0.5); }

/* Decorative watermarks */
.cta-band__bg { color: rgba(0,0,0,0.04); }
.schedule-bar__watermark { color: rgba(0,0,0,0.04); }

/* Placeholder image swatches — light gradients */
.ph-img--1 { background: linear-gradient(160deg, #e8e8e8 0%, #d8d8d8 40%, #e0e0e0 100%); }
.ph-img--2 { background: linear-gradient(160deg, #e5e5f0 0%, #d8d8e8 40%, #dcdce8 100%); }
.ph-img--3 { background: linear-gradient(160deg, #f0e5e5 0%, #e8d8d8 40%, #e8dcdc 100%); }
.ph-img--4 { background: linear-gradient(160deg, #e5f0e5 0%, #d8e8d8 40%, #dce8dc 100%); }
.ph-img--5 { background: linear-gradient(160deg, #f0ede5 0%, #e8e0d8 40%, #e8e3dc 100%); }
.ph-img--6 { background: linear-gradient(160deg, #eaeaea 0%, #dadada 40%, #e2e2e2 100%); }
.ph-img__label { color: rgba(0,0,0,0.3); border-color: rgba(0,0,0,0.12); }

.ph-about { background: linear-gradient(160deg, #f0f0f0 0%, #e5e5e5 50%, #ebebeb 100%); }

/* ---- Booking Modal ---- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.booking-modal[hidden] { display: none; }

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  cursor: pointer;
}

.booking-modal__dialog {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2.5rem 1.5rem;
  border: 1px solid var(--border-md);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.booking-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.1rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  transition: color 0.18s;
  background: none;
  border: none;
  font-family: inherit;
}
.booking-modal__close:hover { color: var(--black); }

.booking-modal__header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .booking-modal { padding: 0; align-items: flex-end; }
  .booking-modal__dialog { max-height: 92vh; max-width: 100%; }
}
.ph-about__text { color: rgba(0,0,0,0.25); border-color: rgba(0,0,0,0.12); }

.ph-team-1 { background: linear-gradient(160deg, #ede8e8, #e5dcdc); }
.ph-team-2 { background: linear-gradient(160deg, #e8e8f0, #dcdce8); }
.ph-team-3 { background: linear-gradient(160deg, #f0ede8, #e8e3dc); }
.team-card__initial { color: rgba(0,0,0,0.15); }

/* ============================================================
   ABOUT EDITORIAL LAYOUT
   ============================================================ */

.about-editorial {
  background: var(--white);
  padding: 6rem 0;
}

.about-ed__rule {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.16);
  margin: 2rem 0;
}

.about-ed__headline {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(4rem, 10.5vw, 10.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: var(--black);
  margin: 1rem 0;
}

.about-ed__intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.about-ed__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--black);
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.about-ed__intro-right p {
  font-size: 0.97rem;
  line-height: 1.88;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.about-ed__section-head { margin-bottom: 0; }

.about-ed__section-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--black);
  margin-top: 0.5rem;
}

.about-ed__principles {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.about-ed__principle {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 3.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  align-items: start;
}

.about-ed__principles .about-ed__principle:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.about-ed__principle-num {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  color: var(--black);
  opacity: 0.07;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-ed__principle-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--black);
  margin-bottom: 0.8rem;
}

.about-ed__principle-body p {
  font-size: 0.95rem;
  line-height: 1.88;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

.about-ed__founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-ed__founder-col p {
  font-size: 0.97rem;
  line-height: 1.88;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.about-ed__founder-col p:last-of-type { margin-bottom: 2rem; }

@media (max-width: 1060px) {
  .about-ed__intro        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-ed__founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .about-editorial        { padding: 4rem 0; }
  .about-ed__headline     { font-size: clamp(3.2rem, 13vw, 6rem); }
  .about-ed__section-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .about-ed__principle    { grid-template-columns: 55px 1fr; gap: 1.5rem; padding: 2rem 0; }
  .about-ed__founder-col p:last-of-type { margin-bottom: 1rem; }
}

/* ============================================================
   ABOUT — POPPINS EDITORIAL
   ============================================================ */

.abt-section {
  background: var(--white);
  padding: 6rem 0;
}

.abt-section--ruled {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.abt-rule {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.15);
  margin: 1.8rem 0;
}

.abt-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0;
}

/* Constrained article column — centered with generous side margins */
.abt-col {
  max-width: 680px;
  margin: 0 auto;
}

.abt-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 1.6rem 0 0;
}

.abt-headline--sm {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

/* Intro paragraph — upright, slightly heavier, darker */
.abt-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.82;
  color: #333;
  margin: 1.6rem 0 1.4rem;
}

/* Body paragraphs */
.abt-col p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.92;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
  margin: 0 0 1.3em;
}

/* Pull quote */
.abt-pullquote {
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 1.8rem 0;
  margin: 2rem 0;
  text-align: center;
}

.abt-pullquote__text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black);
  margin: 0;
}

/* Principles list */
.abt-principles { display: flex; flex-direction: column; }

.abt-principle-entry {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 1.8rem 0;
}

.abt-principles .abt-principle-entry:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.abt-principle__num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.abt-principle__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  font-style: normal;
  color: var(--black);
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}

.abt-principle__body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1060px) {
  .abt-col { max-width: 600px; }
}

@media (max-width: 768px) {
  .abt-section  { padding: 4rem 0; }
  .abt-col      { max-width: 100%; }
  .abt-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .abt-headline--sm { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ============================================================
   SELECTED WORK EDITORIAL
   ============================================================ */

.work-ed__client {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.work-ed__headline {
  max-width: 680px;
}

.work-ed__image {
  margin: 2.5rem 0 0;
  height: 300px;
  overflow: hidden;
}

.work-ed__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.work-ed__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 2.2rem;
  margin: 2.5rem 0 3rem;
}

.work-ed__stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.work-ed__stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.work-ed__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.work-ed__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.18s;
}

.work-ed__link:hover { opacity: 0.5; }

@media (max-width: 768px) {
  .work-ed__stats   { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .work-ed__actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .work-ed__stats { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES LIST
   ============================================================ */

.svc-list {
  margin-top: 3rem;
}

.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  gap: 3rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.svc-list .svc-row:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.svc-row__num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.4rem;
}

.svc-row__name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.svc-row__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.82;
  font-style: normal;
  padding-top: 0.45rem;
}

@media (max-width: 768px) {
  .svc-row {
    grid-template-columns: 44px 1fr;
    gap: 0.6rem 1.5rem;
  }
  .svc-row__desc {
    grid-column: 2;
    padding-top: 0.3rem;
  }
}

@media (max-width: 480px) {
  .svc-row { gap: 0.5rem 1rem; }
}

.svc-audit__close {
  font-weight: 500;
  color: var(--black);
}

/* ============================================================
   CONTACT EDITORIAL
   ============================================================ */

/* Strip card box styling, replace with thin top rule */
.contact-info-card--ed {
  background: none;
  border: none;
  padding: 1.8rem 0 0;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.contact-info-card--ed h3 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--black);
}

/* White form inputs */
.contact-ed .form-input,
.contact-ed .form-select,
.contact-ed .form-textarea {
  background: var(--white);
  border-color: rgba(0,0,0,0.18);
  color: var(--black);
}

.contact-ed .form-input::placeholder,
.contact-ed .form-textarea::placeholder {
  color: rgba(0,0,0,0.28);
}

.contact-ed .form-input:focus,
.contact-ed .form-select:focus,
.contact-ed .form-textarea:focus {
  background: var(--white);
  border-color: var(--black);
}

/* FAQ question text colour on white */
.contact-ed .faq-question { color: var(--black); }
.contact-ed .faq-question:hover { color: var(--muted); }
.contact-ed .faq-item.open .faq-question { color: var(--black); }
.contact-ed .faq-answer p { font-style: normal; }
