/* ============ SAVIR SUDZ brand system (colors sampled from the logo PDF) ============ */
:root {
  --cream: #F4F1ED;
  --cream-2: #EDE7DE;
  --ink: #151414;
  --ink-soft: #2b2a28;
  --red: #B4313E;
  --red-dark: #80252E;
  --grain: rgba(20, 20, 20, .06);
  --font: "Archivo", system-ui, sans-serif;
  /* PP Neue Montreal (hildenkaira.fi) is a paid font; Instrument Sans is its free twin.
     To upgrade later: license it at pangrampangram.com and swap the family name here. */
  --font-body: "Instrument Sans", "Archivo", system-ui, sans-serif;
  --round: "Fredoka", "Archivo", sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--cream); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--red); }
/* display type stays Archivo; descriptive text runs on Instrument Sans via body */
h1, h2, h3, .btn, .btn-ghost, .brand-name, .brand-sub, .eyebrow, .nav-links a,
.hero-watermark, .ba-label span, .card-num, .footer-tag, .mobile-menu a { font-family: var(--font); }

/* ============ cursor ============ */
#cursor, #cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
#cursor { width: 8px; height: 8px; background: var(--red); }
#cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid rgba(196, 30, 58, .5);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s;
}
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(196, 30, 58, .9); }
@media (hover: none), (pointer: coarse) { #cursor, #cursor-ring { display: none; } }

/* ============ nav ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.scrolled {
  background: rgba(244, 240, 233, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(20, 20, 20, .08);
  padding-block: .6rem;
}
.brand { display: flex; align-items: center; gap: .8rem; margin-right: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: .22rem; }
.brand-name {
  font-weight: 900; font-stretch: 115%; font-size: 1.15rem; letter-spacing: .02em;
}
.brand-name em { color: var(--red); }
.brand-sub { font-size: .52rem; font-weight: 700; letter-spacing: .34em; color: var(--ink-soft); }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  position: relative; padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-burger { display: none; }

/* ============ logo mark + hover animation ============ */
.logo-mark { display: inline-block; width: 46px; height: 46px; cursor: pointer; }
.logo-mark-lg { width: 72px; height: 72px; }
.logo-mark img { width: 100%; height: 100%; display: block; }
.logo-mark:hover img, .brand:hover .logo-mark img { animation: logoTilt .75s var(--ease-out); }
@keyframes logoTilt {
  0%   { transform: rotate(0) scale(1); }
  35%  { transform: rotate(-11deg) scale(1.07); }
  70%  { transform: rotate(4deg); }
  100% { transform: rotate(0) scale(1); }
}
.promise-mark img { width: 56px; height: 56px; display: block; }
.logo-mark:hover .bub.b1, .brand:hover .bub.b1 { animation: pop .7s var(--ease-out); }
.logo-mark:hover .bub.b2, .brand:hover .bub.b2 { animation: pop .7s .08s var(--ease-out); }
.logo-mark:hover .bub.b3, .brand:hover .bub.b3 { animation: pop .7s .16s var(--ease-out); }
@keyframes pop {
  0% { transform: scale(1); } 45% { transform: scale(1.45) translateY(-8px); }
  100% { transform: scale(1) translateY(0); }
}

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.7rem; border-radius: 999px; border: none; cursor: pointer;
  font-family: var(--font); font-weight: 800; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.btn span { position: relative; z-index: 2; transition: color .3s; }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--red); border-radius: inherit;
  transform: translateX(-130%) skewX(-12deg) scaleX(1.2);
  transition: transform .45s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0) skewX(0) scaleX(1.2); }
.btn-primary:hover { box-shadow: 0 14px 30px -12px rgba(196, 30, 58, .55); }
.btn-lg { padding: 1.1rem 2.3rem; font-size: .95rem; }
.btn-block { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem .4rem; border-bottom: 2px solid var(--ink);
  transition: color .25s, border-color .25s, gap .25s;
}
.btn-ghost:hover { color: var(--red); border-color: var(--red); gap: .9rem; }

/* ============ shared ============ */
.eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .32em;
  color: var(--ink-soft); margin-bottom: 1.4rem;
}
.eyebrow-red { color: var(--red); }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ============ hero ============ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; padding: 7rem clamp(1.2rem, 5vw, 4rem) 4rem;
  overflow: hidden;
}
.hero-watermark {
  position: absolute; right: -2vw; bottom: -6vw; z-index: 0;
  font-weight: 900; font-stretch: 125%; font-size: clamp(10rem, 28vw, 26rem);
  line-height: .8; color: transparent;
  -webkit-text-stroke: 2px rgba(20, 20, 20, .07);
  pointer-events: none; user-select: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 1100px; }
.hero-title {
  font-weight: 900; font-stretch: 118%;
  font-size: clamp(3rem, 9.5vw, 8.2rem);
  line-height: .94; letter-spacing: -.015em; margin: 0 0 2rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%); animation: riseUp 1s var(--ease-out) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
.hero-title .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes riseUp { to { transform: translateY(0); } }
.rotator-wrap { color: var(--red); }
.rotator { display: inline-block; }
.rotator.swap-out { animation: swapOut .3s var(--ease-out) forwards; }
.rotator.swap-in { animation: swapIn .38s var(--ease-out); }
@keyframes swapOut { to { transform: translateY(-105%); opacity: 0; } }
@keyframes swapIn { from { transform: translateY(105%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 500;
  max-width: 34em; line-height: 1.55; color: var(--ink-soft); margin-bottom: 2.6rem;
}
.hero-cta { display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
/* floating background squeegees (buckssauce-style, subtle) */
.hero-floaties { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sq { position: absolute; overflow: visible; }
.sq-ink { fill: var(--ink); }
.sq-red { fill: var(--red); }
.sq { top: -12%; opacity: 0; animation: sqFall linear infinite; }
.sq1 { width: 120px; right: 8%;  --rot: 18deg;  --rot2: 34deg;  animation-duration: 26s; animation-delay: -6s; }
.sq2 { width: 78px;  right: 26%; --rot: -24deg; --rot2: -38deg; animation-duration: 34s; animation-delay: -20s; }
.sq3 { width: 95px;  left: 6%;   --rot: -8deg;  --rot2: 10deg;  animation-duration: 30s; animation-delay: -13s; }
.sq4 { width: 58px;  left: 38%;  --rot: 36deg;  --rot2: 52deg;  animation-duration: 40s; animation-delay: -30s; }
@keyframes sqFall {
  0%   { transform: translateY(0) rotate(var(--rot)); opacity: 0; }
  12%  { opacity: .08; }
  75%  { opacity: .05; }
  92%  { opacity: 0; }
  100% { transform: translateY(105vh) rotate(var(--rot2)); opacity: 0; }
}

/* sudz bubbling up from the bottom of the hero */
.hero-sudz { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-sudz span {
  position: absolute; bottom: -30px; border-radius: 50%;
  border: 1.5px solid rgba(180, 49, 62, .28);
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.95), rgba(244,241,237,.2) 55%, rgba(180,49,62,.10));
  animation: sudzRise linear infinite;
}
.hero-sudz span:nth-child(1) { left: 8%;  width: 14px; height: 14px; animation-duration: 12s; animation-delay: 0s; }
.hero-sudz span:nth-child(2) { left: 21%; width: 9px;  height: 9px;  animation-duration: 15s; animation-delay: 3s; }
.hero-sudz span:nth-child(3) { left: 33%; width: 20px; height: 20px; animation-duration: 11s; animation-delay: 6s; }
.hero-sudz span:nth-child(4) { left: 46%; width: 11px; height: 11px; animation-duration: 14s; animation-delay: 1.5s; }
.hero-sudz span:nth-child(5) { left: 58%; width: 24px; height: 24px; animation-duration: 10s; animation-delay: 4.5s; }
.hero-sudz span:nth-child(6) { left: 69%; width: 10px; height: 10px; animation-duration: 16s; animation-delay: 8s; }
.hero-sudz span:nth-child(7) { left: 79%; width: 16px; height: 16px; animation-duration: 12.5s; animation-delay: 2s; }
.hero-sudz span:nth-child(8) { left: 88%; width: 12px; height: 12px; animation-duration: 13.5s; animation-delay: 5.5s; }
.hero-sudz span:nth-child(9) { left: 95%; width: 8px;  height: 8px;  animation-duration: 17s; animation-delay: 7s; }
@keyframes sudzRise {
  0%   { transform: translate(0, 0) scale(.85); opacity: 0; }
  10%  { opacity: .6; }
  55%  { transform: translate(14px, -55vh) scale(1); }
  92%  { opacity: .35; }
  100% { transform: translate(-8px, -96vh) scale(1.08); opacity: 0; }
}

.hero-scrollhint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(20,20,20,.35); border-radius: 14px;
}
.hero-scrollhint span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 9px; margin-left: -2px;
  border-radius: 4px; background: var(--red); animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } }

/* ============ scrub sections ============ */
.scrub { position: relative; }
.scrub-process { height: 430vh; background: var(--ink); }
.scrub-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.scrub-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.scrub-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.12) 40%, rgba(10,10,10,.55) 100%);
}
.scrub-shade-light { background: linear-gradient(180deg, rgba(10,10,10,.4) 0%, transparent 45%, rgba(10,10,10,.4) 100%); }
.scrub-eyebrow {
  position: absolute; top: 6.2rem; left: clamp(1.2rem, 5vw, 4rem);
  color: var(--cream); font-size: .72rem; font-weight: 800; letter-spacing: .34em;
  padding: .55rem .95rem; border: 1.5px solid rgba(244,240,233,.4); border-radius: 999px;
}
.scrub-caption {
  position: absolute; left: clamp(1.2rem, 5vw, 4rem); bottom: 12vh;
  max-width: 620px; color: var(--cream); opacity: 0; transform: translateY(30px);
  will-change: opacity, transform;
}
.scrub-caption h2 {
  font-weight: 900; font-stretch: 116%; font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1.02; letter-spacing: -.01em; margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.scrub-caption p { font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 500; opacity: .92; text-shadow: 0 1px 18px rgba(0,0,0,.5); }
.scrub-cta-line { margin-top: 1.4rem; }
.scrub-progress {
  position: absolute; right: clamp(1rem, 3vw, 2.4rem); top: 50%; transform: translateY(-50%);
  width: 3px; height: 34vh; background: rgba(244,240,233,.25); border-radius: 3px;
}
.scrub-progress span {
  display: block; width: 100%; height: 0%; background: var(--red); border-radius: 3px;
}
/* ============ before / after slider ============ */
.compare { padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 4rem); background: var(--ink); }
.compare .section-head { color: var(--cream); }
.compare .eyebrow { color: rgba(244, 241, 237, .7); }
.compare-hint { color: rgba(244, 241, 237, .65); font-size: 1.02rem; margin-top: 1rem; }
.ba-slider {
  position: relative; margin: 0 auto; aspect-ratio: 4 / 3;
  width: min(100%, 860px, calc(62svh * 4 / 3));
  border-radius: 22px; overflow: hidden; touch-action: none;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .8);
}
/* opposing nudges so the window frame line continues across the seam */
.ba-slider > .ba-img { transform: translateY(6.5%) scale(1.18); }
.ba-top .ba-img { transform: translateY(-6.5%) scale(1.18); }
.ba-slider .ba-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; user-select: none;
}
.ba-slider > .ba-img { position: absolute; }
.ba-top {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 var(--pos));
}
.ba-tag {
  position: absolute; top: 1.2rem; z-index: 3; pointer-events: none;
  font-family: var(--font); font-weight: 900; font-size: .82rem; letter-spacing: .22em;
  padding: .55rem 1rem; border-radius: 999px; color: var(--cream);
}
.ba-tag-before { left: 1.2rem; background: rgba(21, 20, 20, .82); }
.ba-tag-after { right: 1.2rem; background: var(--red); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 2;
  width: 3px; margin-left: -1.5px; background: var(--cream);
  box-shadow: 0 0 18px rgba(0, 0, 0, .45);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: var(--cream);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .6);
  transition: transform .2s var(--ease-out);
}
.ba-slider:active .ba-grip { transform: translate(-50%, -50%) scale(1.12); }
.ba-range {
  position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 60px; height: 100%; }
.ba-range::-moz-range-thumb { width: 60px; height: 100%; border: none; background: transparent; }
@media (max-width: 900px) {
  .ba-slider { aspect-ratio: 4 / 3.4; }
}

/* ============ editorial ============ */
.editorial { padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 4rem); }
.editorial-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center; max-width: 1300px; margin: 0 auto;
}
.editorial-img { position: relative; }
.editorial-img img {
  border-radius: 18px; box-shadow: 28px 28px 0 -6px var(--cream-2), 0 30px 60px -30px rgba(20,20,20,.4);
  transform: rotate(-1.5deg);
}
.editorial-img figcaption {
  margin-top: 1.6rem; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.editorial-copy h2 { font-weight: 900; font-stretch: 116%; font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.02; margin-bottom: 1.6rem; }
.editorial-copy p { font-size: 1.08rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 32em; }
.editorial-copy .btn-ghost { margin-top: .8rem; }

/* ============ services ============ */
.services { padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 4rem); background: var(--cream-2); }
.section-head { max-width: 1300px; margin: 0 auto 3.4rem; }
.section-head h2 { font-weight: 900; font-stretch: 118%; font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  max-width: 1300px; margin: 0 auto;
}
.card {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--cream); border-radius: 20px; padding: 2.2rem 1.9rem 1.7rem;
  border: 1.5px solid rgba(20,20,20,.08);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: 0 30px 50px -30px rgba(20,20,20,.35); }
.card-num {
  font-weight: 900; font-stretch: 120%; font-size: .85rem; color: var(--red);
  letter-spacing: .2em; margin-bottom: 2.6rem;
}
.card h3 { font-weight: 900; font-stretch: 112%; font-size: 1.55rem; margin-bottom: .8rem; }
.card { cursor: pointer; }
.card p { font-size: .98rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 1.7rem; }
.card-link { font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.card-link span { border-bottom: 2px solid var(--red); padding-bottom: .15rem; transition: color .25s; }
.card:hover .card-link span { color: var(--red); }
/* brief highlight on the service field after a card pre-fills it */
.ff select.flash { animation: selFlash 1.6s var(--ease-out); }
@keyframes selFlash {
  0% { border-color: var(--red); box-shadow: 0 0 0 6px rgba(180, 49, 62, .35); }
  100% { border-color: rgba(244, 241, 237, .18); box-shadow: none; }
}
.card-wipe {
  position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, rgba(196,30,58,.14), rgba(196,30,58,0) 55%);
  transform: translateX(-101%); transition: transform .5s var(--ease-out);
}
.card:hover .card-wipe { transform: translateX(0); }

/* ============ manifesto ============ */
.manifesto { background: var(--ink); color: var(--cream); padding: clamp(5rem, 11vw, 10rem) clamp(1.2rem, 5vw, 4rem); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto h2 {
  font-weight: 900; font-stretch: 120%; font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1; margin-bottom: 2rem;
}
.manifesto-big {
  font-size: clamp(1.3rem, 2.6vw, 2.1rem); font-weight: 600; line-height: 1.4;
  max-width: 28em; margin-bottom: 3.4rem; color: rgba(244,240,233,.92);
}
.promise {
  display: flex; gap: 1.4rem; align-items: center;
  border: 1.5px solid rgba(244,240,233,.22); border-radius: 18px;
  padding: 1.6rem 1.9rem; max-width: 620px;
}
.promise h3 { font-weight: 900; letter-spacing: .18em; font-size: .85rem; color: var(--red); margin-bottom: .4rem; filter: brightness(1.35); }
.promise p { color: rgba(244,240,233,.85); line-height: 1.55; font-size: .98rem; }
.promise-mark { flex-shrink: 0; }

/* ============ quote ============ */
.quote { padding: clamp(4.5rem, 10vw, 9rem) clamp(1.2rem, 5vw, 4rem); }
.quote-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6rem);
  max-width: 1300px; margin: 0 auto; align-items: start;
}
.quote-copy h2 { font-weight: 900; font-stretch: 116%; font-size: clamp(2.3rem, 4.8vw, 4rem); line-height: 1.02; margin-bottom: 1.5rem; }
.quote-copy > p { font-size: 1.08rem; line-height: 1.65; color: var(--ink-soft); max-width: 30em; margin-bottom: 1.8rem; }
.quote-points { list-style: none; margin-bottom: 2rem; }
.quote-points li {
  padding-left: 1.8rem; position: relative; margin-bottom: .8rem;
  font-weight: 600; font-size: 1rem;
}
.quote-points li::before {
  content: "✦"; position: absolute; left: 0; color: var(--red); font-weight: 900;
}
.quote-alt { font-weight: 600; color: var(--ink-soft); }
.quote-alt a { color: var(--red); font-weight: 800; border-bottom: 2px solid currentColor; }
.quote-form {
  background: var(--ink); border-radius: 24px; padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 40px 80px -40px rgba(20,20,20,.5);
}
.ff { display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.ff-row { display: flex; gap: 1.1rem; }
.ff label {
  color: rgba(244,240,233,.75); font-size: .68rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
}
.ff input, .ff select, .ff textarea {
  background: rgba(244,240,233,.07); border: 1.5px solid rgba(244,240,233,.18);
  border-radius: 12px; padding: .9rem 1rem; color: var(--cream);
  font-family: var(--font-body); font-size: .98rem; font-weight: 500;
  transition: border-color .25s, background .25s; resize: vertical;
}
.ff input::placeholder, .ff textarea::placeholder { color: rgba(244,240,233,.35); }
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline: none; border-color: var(--red); background: rgba(244,240,233,.11);
}
.ff select option { color: var(--ink); }
.form-note { color: rgba(244,240,233,.55); font-size: .8rem; text-align: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-success { text-align: center; padding: 2.5rem 1rem; color: var(--cream); }
.form-success img { width: 64px; height: 64px; margin: 0 auto 1.2rem; }
.form-success h3 { font-weight: 900; font-stretch: 112%; font-size: 1.5rem; margin-bottom: .6rem; }
.form-success p { color: rgba(244, 241, 237, .8); line-height: 1.55; }

/* ============ footer ============ */
.footer { background: var(--ink); color: var(--cream); padding: 4rem clamp(1.2rem, 5vw, 4rem) 2rem; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  flex-wrap: wrap; padding-bottom: 2.6rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(244,240,233,.15);
}
.footer-brand { display: flex; align-items: center; gap: 1.1rem; }
.brand-name-lg { font-size: 1.6rem; font-weight: 900; font-stretch: 115%; }
.footer .brand-sub { color: rgba(244,240,233,.6); }
.footer-tag {
  font-weight: 800; font-stretch: 112%; font-size: 1.25rem; line-height: 1.25;
  text-align: right; color: rgba(244,240,233,.85);
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(244,240,233,.55);
}
.footer-social { display: flex; gap: 1.6rem; }
.footer-social a { font-weight: 700; transition: color .25s; }
.footer-social a:hover { color: var(--red); filter: brightness(1.4); }

/* ============ mobile ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  display: none; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 1.6rem; padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) { font-weight: 900; font-stretch: 116%; font-size: 2.2rem; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 6px; background: none; border: none;
    padding: .6rem; cursor: pointer; z-index: 101;
  }
  .nav-burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
  .nav-burger.open span:first-child { transform: translateY(4.2px) rotate(45deg); }
  .nav-burger.open span:last-child { transform: translateY(-4.2px) rotate(-45deg); }
  .editorial-grid, .quote-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-tag { text-align: left; }
  .scrub-caption { bottom: 9vh; right: clamp(1.2rem, 5vw, 4rem); }
  .ff-row { flex-direction: column; }
  .hero-watermark { bottom: 8vh; }
  .sq3, .sq4 { display: none; }
  .sq1 { width: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
