/* ==========================================================================
   THE FIRM ® — Bruce Colfin Law, PC
   Landing page stylesheet
   Sections:
     01  Tokens
     02  Reset & base
     03  Utilities (tags, buttons, sec-head, reveal, scrawl)
     04  Vinyl disc component
     05  Header, mobile nav, tonearm, call bar
     06  Hero
     07  Marquee
     08  Sides (Side A / Side B)
     09  Approach rings
     10  Practice sleeves
     11  The record (dial + creds)
     12  Wall carousel
     13  Clients grid
     14  Quote
     15  Process + call band
     16  FAQ accordion
     17  Contact + form
     18  Footer
     19  Motion preferences & print
   ========================================================================== */

/* ---------- 01  TOKENS ---------- */
:root{
  --ink:        #0A0A0B;
  --ink-2:      #121215;
  --ink-3:      #1C1C21;
  --paper:      #FFFFFF;
  --bone:       #F3F0EA;
  --bone-2:     #E7E2D8;
  --red:        #D93A2B;
  --red-dark:   #B22B1E;
  --ember:      #F0692A;
  --mute:       #8E8E96;
  --mute-dark:  #6B6B73;

  --ff-display: 'Anton', 'Haettenschweiler', 'Arial Narrow Bold', Impact, sans-serif;
  --ff-body:    'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ff-script:  'Caveat', 'Bradley Hand', 'Segoe Script', cursive;

  --wrap: 1360px;
  --gut: clamp(1.25rem, 4vw, 4rem);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --hdr-h: 66px;
}

/* ---------- 02  RESET & BASE ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--hdr-h) + 16px);
}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--ff-body);
  font-size:clamp(.95rem, .9rem + .2vw, 1.0625rem);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
body.is-locked{ overflow:hidden; }
img,svg{ display:block; max-width:100%; }
img{ height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input,select,textarea{ font:inherit; color:inherit; }
h1,h2,h3,h4,p,figure,blockquote,ul,ol{ margin:0; }
ul,ol{ list-style:none; padding:0; }
::selection{ background:var(--red); color:#fff; }

.skip-link{
  position:fixed; top:8px; left:8px; z-index:999;
  transform:translateY(-160%);
  background:var(--ink); color:#fff;
  padding:.75rem 1.1rem; border-radius:var(--r-sm);
  font-weight:600; font-size:.85rem;
  transition:transform .2s var(--ease);
}
.skip-link:focus{ transform:translateY(0); }

:where(a,button,input,select,textarea,[tabindex]):focus-visible{
  outline:2px solid var(--red);
  outline-offset:3px;
  border-radius:4px;
}

/* ---------- 03  UTILITIES ---------- */
.tag{
  display:inline-block;
  font-size:.66rem; letter-spacing:.22em; text-transform:uppercase; font-weight:600;
  color:var(--mute-dark);
  border:1px solid currentColor;
  padding:.4rem .7rem; border-radius:100px;
}
.tag--light{ color:rgba(255,255,255,.55); }

.sec-head{
  max-width:var(--wrap); margin:0 auto;
  padding:0 var(--gut);
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1.1rem;
}
.sec-title{
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(2.1rem, 1.2rem + 4.6vw, 5.2rem);
  line-height:.92;
  letter-spacing:-.01em;
  text-transform:uppercase;
}

/* scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay:var(--d, 0ms);
}
.reveal.is-in{ opacity:1; transform:none; }

/* handwritten accent */
.scrawl{
  font-family:var(--ff-script);
  color:var(--red);
  line-height:1;
  pointer-events:none;
  user-select:none;
}

/* buttons */
.btn{
  --bg:var(--ink); --fg:#fff; --bd:var(--ink);
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  background:var(--bg); color:var(--fg);
  border:1.5px solid var(--bd);
  border-radius:100px;
  padding:.8rem 1.3rem;
  font-size:.8rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  white-space:nowrap;
  transition:transform .32s var(--ease), background-color .32s var(--ease), color .32s var(--ease), border-color .32s var(--ease);
  will-change:transform;
}
.btn::before{
  content:''; position:absolute; inset:0; z-index:0;
  background:var(--red);
  transform:translateY(101%);
  transition:transform .42s var(--ease-out);
}
.btn > *{ position:relative; z-index:1; }
.btn:hover{ color:#fff; border-color:var(--red); transform:translateY(-2px); }
.btn:hover::before{ transform:translateY(0); }
.btn:active{ transform:translateY(0); }
.btn--sm{ padding:.55rem 1rem; font-size:.72rem; }
.btn--lg{ padding:1.05rem 1.9rem; font-size:.86rem; }
.btn--full{ width:100%; }
.btn--outline{ --bg:transparent; --fg:var(--ink); --bd:currentColor; }
.btn--ghost{ --bg:transparent; --fg:var(--ink); --bd:rgba(10,10,11,.22); }
.btn--solid{ --bg:var(--ink); --fg:#fff; --bd:var(--ink); }
.on-dark .btn--outline,.on-dark .btn--ghost{ --fg:#fff; --bd:rgba(255,255,255,.3); }

/* equaliser bars inside buttons */
.btn__eq,.callbar__eq,.bigcall__eq{
  display:inline-flex; align-items:flex-end; gap:2px; height:12px;
}
.btn__eq i,.callbar__eq i,.bigcall__eq i{
  width:2px; background:currentColor; border-radius:2px;
  animation:eq 1s ease-in-out infinite;
}
.btn__eq i:nth-child(1),.callbar__eq i:nth-child(1),.bigcall__eq i:nth-child(1){ height:40%; animation-delay:0s; }
.btn__eq i:nth-child(2),.callbar__eq i:nth-child(2),.bigcall__eq i:nth-child(2){ height:90%; animation-delay:.18s; }
.btn__eq i:nth-child(3),.callbar__eq i:nth-child(3),.bigcall__eq i:nth-child(3){ height:60%; animation-delay:.36s; }
.btn__eq i:nth-child(4),.callbar__eq i:nth-child(4),.bigcall__eq i:nth-child(4){ height:100%; animation-delay:.1s; }
.bigcall__eq i:nth-child(5){ height:50%; animation-delay:.5s; }
@keyframes eq{ 0%,100%{ transform:scaleY(.35); } 50%{ transform:scaleY(1); } }

/* ---------- 04  VINYL DISC ---------- */
.disc{
  position:relative;
  display:block;
  width:100%; aspect-ratio:1/1;
  border-radius:50%;
  background-color:#0D0D0F;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.09) 0 31.5%, transparent 32%),
    repeating-radial-gradient(circle at 50% 50%, #0D0D0F 0 1.5px, #1A1A1F 1.5px 3px);
  box-shadow:0 18px 50px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.08);
  overflow:hidden;
  isolation:isolate;
}
.disc::after{
  content:''; position:absolute; inset:0; border-radius:50%;
  background:linear-gradient(118deg, transparent 26%, rgba(255,255,255,.16) 42%, rgba(255,255,255,.02) 51%, transparent 62%);
  mix-blend-mode:screen;
  pointer-events:none;
}
.disc__hole{
  position:absolute; left:50%; top:50%; width:5%; aspect-ratio:1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:var(--paper);
  box-shadow:0 0 0 1px rgba(0,0,0,.35);
  z-index:2;
}
/* `overflow:hidden` stops the automatic minimum size from stretching the
   label into an oval when the type inside is taller than the circle. */
.disc__label{
  position:absolute; left:50%; top:50%; width:38%; aspect-ratio:1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:var(--red);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.25em;
  overflow:hidden;
  color:#14100F;
  text-align:center;
  z-index:1;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.28), inset 0 0 0 4px rgba(0,0,0,.06);
}
.disc__label-top{
  font-family:var(--ff-display);
  font-size:clamp(.44rem,1.35vw,.95rem);
  line-height:1; letter-spacing:.01em; white-space:nowrap;
}
.disc__label-top sup{ font-size:.44em; top:-.85em; }
.disc__label-bot{
  font-size:clamp(.26rem,.62vw,.42rem);
  letter-spacing:.22em; font-weight:700; line-height:1; white-space:nowrap;
}

.disc--white{
  background-color:#EDEAE3;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.06) 0 31.5%, transparent 32%),
    repeating-radial-gradient(circle at 50% 50%, #EDEAE3 0 1.5px, #DAD5CA 1.5px 3px);
}
.disc--white .disc__hole{ background:var(--ink); }
.disc--red{
  background-color:#7C1D14;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.10) 0 31.5%, transparent 32%),
    repeating-radial-gradient(circle at 50% 50%, #7C1D14 0 1.5px, #A82A1D 1.5px 3px);
}
.disc--mini,.disc--cell,.disc--sleeve{ box-shadow:0 12px 34px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.07); }

.spin{ animation:spin 9s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }
@keyframes spin-back{ to{ transform:translate(-50%,-50%) rotate(-360deg); } }

/* Counter-rotate the label so the wordmark stays readable while the
   pressing spins. The sweeping sheen still reads as motion. */
.hero__disc .disc__label{ animation:spin-back 16s linear infinite; }

/* ---------- 05  HEADER / NAV / TONEARM / CALL BAR ---------- */
.tonearm{
  position:fixed; top:0; left:0; right:0; z-index:120;
  pointer-events:none;
}
.tonearm__track{
  height:3px; width:100%;
  background:rgba(0,0,0,.07);
}
.tonearm__fill{
  display:block; height:100%; width:0%;
  background:linear-gradient(90deg, var(--red), var(--ember));
}
.tonearm__arm{
  position:absolute; top:0; left:0;
  width:44px; height:22px;
  transform:translateX(-50%);
  opacity:0;
  transition:opacity .3s var(--ease);
}
.tonearm__arm::before{
  content:''; position:absolute; left:50%; top:3px;
  width:2px; height:15px; background:var(--ink);
  transform:translateX(-50%) rotate(16deg); transform-origin:top center;
  border-radius:2px;
}
.tonearm__head{
  position:absolute; left:calc(50% + 5px); top:16px;
  width:11px; height:7px; background:var(--red); border-radius:2px;
  transform:translateX(-50%) rotate(16deg);
}
.tonearm.is-on .tonearm__arm{ opacity:1; }
.on-dark-head .tonearm__track{ background:rgba(255,255,255,.12); }

.header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--hdr-h);
  display:flex; align-items:center;
  background:rgba(255,255,255,0);
  transition:background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.header.is-stuck{
  background:rgba(255,255,255,.86);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  backdrop-filter:saturate(180%) blur(14px);
  box-shadow:0 1px 0 rgba(0,0,0,.08);
}
.header.is-dark{ color:#fff; }
.header.is-dark.is-stuck{
  background:rgba(10,10,11,.78);
  box-shadow:0 1px 0 rgba(255,255,255,.1);
}
.header.is-hidden{ transform:translateY(-100%); }
/* Menu open means a black overlay behind the header, so force it light
   or the wordmark and the close button vanish into the background. */
body.is-locked .header{ color:#fff; background:transparent; box-shadow:none; transform:none; }
body.is-locked .burger{ border-color:rgba(255,255,255,.32); }
body.is-locked .brand__disc{ box-shadow:inset 0 0 0 1px rgba(255,255,255,.3); }
.header{ transition:background-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease), color .3s var(--ease); }

.header__inner{
  width:100%; max-width:var(--wrap); margin:0 auto;
  padding:0 var(--gut);
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
/* Brand mark scaled to 130%: disc 26px -> 33.8px, type 1.05rem -> 1.365rem,
   gap .55rem -> .715rem, so the whole lockup grows in proportion. */
.brand{ display:inline-flex; align-items:center; gap:.715rem; }
.brand__disc{
  position:relative; width:33.8px; height:33.8px; border-radius:50%;
  background-color:#0D0D0F;
  background-image:repeating-radial-gradient(circle at 50% 50%, #0D0D0F 0 1px, #23232A 1px 2px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);
  animation:spin 6s linear infinite;
  flex:none;
}
.header.is-dark .brand__disc{ box-shadow:inset 0 0 0 1px rgba(255,255,255,.3); }
.brand__label{
  position:absolute; inset:34%; border-radius:50%; background:var(--red);
}
.brand__label::after{
  content:''; position:absolute; inset:38%; border-radius:50%; background:var(--paper);
}
.brand__text{
  font-family:var(--ff-display);
  font-size:1.365rem; letter-spacing:.01em; text-transform:uppercase;
}
.brand__text sup{ font-size:.5em; top:-.7em; }

.nav{ display:none; gap:1.9rem; }
.nav a{
  position:relative;
  font-size:.78rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  padding:.25rem 0;
}
.nav a::after{
  content:''; position:absolute; left:0; bottom:0; height:1.5px; width:100%;
  background:var(--red);
  transform:scaleX(0); transform-origin:right;
  transition:transform .38s var(--ease-out);
}
.nav a:hover::after,.nav a.is-current::after{ transform:scaleX(1); transform-origin:left; }

.header__cta{ display:flex; align-items:center; gap:.6rem; }
.header__cta .btn{ display:none; }

.burger{
  width:42px; height:42px; border-radius:50%;
  border:1.5px solid rgba(10,10,11,.22);
  display:grid; place-content:center; gap:5px;
  flex:none;
}
.header.is-dark .burger{ border-color:rgba(255,255,255,.3); }
.burger span{
  display:block; width:17px; height:1.8px; background:currentColor; border-radius:2px;
  transition:transform .35s var(--ease), opacity .25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.8px) rotate(-45deg); }

/* `hidden` must win over the display rule below, or the overlay sits
   invisible on top of the whole page and swallows every click. */
.mnav[hidden]{ display:none; }
.mnav{
  position:fixed; inset:0; z-index:99;
  background:var(--ink); color:#fff;
  padding:calc(var(--hdr-h) + 2rem) var(--gut) 2rem;
  display:flex; flex-direction:column; justify-content:space-between;
  overflow:hidden auto;
  opacity:0; transform:translateY(-10px);
  transition:opacity .4s var(--ease), transform .4s var(--ease);
}
.mnav.is-open{ opacity:1; transform:none; }
.mnav__disc{
  position:absolute; right:-28%; top:6%;
  width:80vw; max-width:520px; aspect-ratio:1; border-radius:50%;
  background-image:repeating-radial-gradient(circle at 50% 50%, #101013 0 2px, #1B1B21 2px 4px);
  opacity:.6;
  animation:spin 26s linear infinite;
}
.mnav__list{ position:relative; display:flex; flex-direction:column; gap:.15rem; }
.mnav__list a{
  display:flex; align-items:baseline; gap:.9rem;
  font-family:var(--ff-display);
  font-size:clamp(2rem, 11vw, 3.6rem);
  line-height:1.08; text-transform:uppercase;
  padding:.15rem 0;
  opacity:0; transform:translateY(18px);
  transition:opacity .5s var(--ease-out), transform .5s var(--ease-out), color .25s var(--ease);
}
.mnav.is-open .mnav__list a{ opacity:1; transform:none; }
.mnav__list a:nth-child(1){ transition-delay:.06s; }
.mnav__list a:nth-child(2){ transition-delay:.11s; }
.mnav__list a:nth-child(3){ transition-delay:.16s; }
.mnav__list a:nth-child(4){ transition-delay:.21s; }
.mnav__list a:nth-child(5){ transition-delay:.26s; }
.mnav__list a:nth-child(6){ transition-delay:.31s; }
.mnav__list a:nth-child(7){ transition-delay:.36s; }
.mnav__list a:hover{ color:var(--red); }
.mnav__list em{
  font-family:var(--ff-body); font-style:normal;
  font-size:.62rem; letter-spacing:.2em; color:var(--red); font-weight:700;
}
.mnav__foot{ position:relative; display:flex; flex-direction:column; gap:1rem; padding-top:2rem; }
.mnav__foot .btn{ --bg:var(--red); --bd:var(--red); }
.mnav__foot .btn::before{ background:#fff; }
.mnav__foot .btn:hover{ color:var(--ink); border-color:#fff; }
.mnav__mail{ font-size:.9rem; color:rgba(255,255,255,.6); }

.callbar{
  position:fixed; left:0; right:0; bottom:0; z-index:95;
  display:flex; gap:.5rem;
  padding:.6rem var(--gut) calc(.6rem + env(safe-area-inset-bottom));
  background:rgba(10,10,11,.9);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.1);
  transform:translateY(120%);
  transition:transform .45s var(--ease-out);
}
.callbar.is-on{ transform:none; }
.callbar__main{
  flex:1;
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  background:var(--red); color:#fff;
  border-radius:100px; padding:.85rem 1rem;
  font-size:.82rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
}
.callbar__alt{
  width:46px; flex:none;
  display:grid; place-content:center;
  border:1.5px solid rgba(255,255,255,.28); border-radius:100px;
  color:#fff; font-size:1.05rem;
}

/* ---------- 06  HERO ---------- */
/* Content is centred and the scroll cue is pinned to the bottom edge, so on a
   tall screen the slack splits above and below instead of pooling into one
   dead gap under the buttons. Capped so it never grows absurd on a big monitor. */
.hero{
  position:relative;
  min-height:min(100svh, 62rem);
  padding:calc(var(--hdr-h) + 2rem) var(--gut) clamp(6rem, 10vh, 7rem);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:var(--paper);
  overflow:hidden;
}
.hero__noise{
  position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:radial-gradient(rgba(10,10,11,.055) 1px, transparent 1px);
  background-size:4px 4px;
  -webkit-mask-image:radial-gradient(120% 80% at 50% 30%, #000 30%, transparent 78%);
  mask-image:radial-gradient(120% 80% at 50% 30%, #000 30%, transparent 78%);
}
.hero__eyebrow{
  position:relative;
  display:flex; align-items:center; gap:.55rem; flex-wrap:wrap; justify-content:center;
  font-size:.6rem; letter-spacing:.24em; text-transform:uppercase; font-weight:600;
  color:var(--mute-dark);
  margin-bottom:clamp(1.2rem, 3vw, 2.4rem);
  text-align:center;
}
.hero__eyebrow .dot{ width:4px; height:4px; border-radius:50%; background:var(--red); }

.hero__word{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  gap:clamp(.2rem,1.4vw,1.2rem);
  width:100%;
  font-family:var(--ff-display);
  font-weight:400;
  font-size:clamp(3.4rem, 17.4vw, 15.5rem);
  line-height:.82;
  letter-spacing:-.015em;
  text-transform:uppercase;
  margin-bottom:clamp(.8rem,2vw,1.6rem);
}
.hero__part{ display:inline-block; }
.hero__part span{ display:inline-block; }
.hero__disc{
  position:relative;
  width:clamp(72px, 20vw, 250px);
  flex:none;
  margin:0 clamp(-.6rem,-1.4vw,-.2rem);
  z-index:2;
  animation:spin 16s linear infinite;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.28));
}
.hero__bar{
  position:relative;
  width:min(100%, 780px);
  background:var(--ink); color:#fff;
  border-radius:100px;
  padding:.62rem 1.2rem;
  text-align:center;
  font-size:clamp(.6rem,1.5vw,.82rem);
  letter-spacing:.22em; text-transform:uppercase; font-weight:600;
  margin-bottom:clamp(2rem,5vw,3.4rem);
}
.hero__body{
  position:relative;
  width:min(100%, 720px);
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1.6rem;
}
.hero__lead{
  font-size:clamp(1rem, .92rem + .5vw, 1.25rem);
  line-height:1.55;
  color:#2A2A2E;
  text-wrap:balance;
}
.hero__actions{ display:flex; flex-wrap:wrap; gap:.7rem; justify-content:center; }
.hero__micro{ font-size:.78rem; color:var(--mute-dark); }
.hero__scroll{
  position:absolute; left:50%; bottom:clamp(1.1rem, 3vh, 2.2rem);
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
  font-size:.6rem; letter-spacing:.24em; text-transform:uppercase; color:var(--mute-dark);
  white-space:nowrap;
}
.hero__scroll-line{
  width:1px; height:clamp(28px, 5vh, 46px);
  background:linear-gradient(var(--ink), transparent);
  animation:drop 2.2s var(--ease) infinite;
  transform-origin:top;
}
@keyframes drop{ 0%{ transform:scaleY(0);} 45%{ transform:scaleY(1);} 100%{ transform:scaleY(0); transform-origin:bottom; } }

/* ---------- 07  MARQUEE ---------- */
.marquee-block{
  background:var(--ink); color:#fff;
  padding:1.1rem 0;
  display:flex; flex-direction:column; gap:.35rem;
  border-block:1px solid rgba(255,255,255,.1);
  overflow:hidden;
}
.marquee{ overflow:hidden; }
.marquee__row{
  display:flex; width:max-content;
  animation:slide var(--dur,46s) linear infinite;
}
.marquee--reverse .marquee__row{ animation-direction:reverse; }
.marquee__set{
  display:inline-flex; align-items:center; gap:1.6rem;
  padding-right:1.6rem;
  font-family:var(--ff-display);
  font-size:clamp(1.1rem, 3.6vw, 2.1rem);
  text-transform:uppercase; white-space:nowrap;
}
.marquee__set i{ font-style:normal; color:var(--red); font-size:.4em; }
.marquee__set b{ font-weight:400; }
.marquee:hover .marquee__row{ animation-play-state:paused; }
@keyframes slide{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------- 08  SIDES ---------- */
.sides{
  position:relative;
  background:var(--paper);
  padding:clamp(3.5rem,9vw,7.5rem) var(--gut);
  overflow:hidden;
}
.sides__ghost{
  position:absolute; top:clamp(2rem,7vw,6rem);
  font-family:var(--ff-display);
  font-size:clamp(4rem,14vw,12rem);
  line-height:.8; text-transform:uppercase;
  color:transparent;
  -webkit-text-stroke:1.5px rgba(10,10,11,.16);
  pointer-events:none; user-select:none;
}
.sides__ghost--left{ left:clamp(-.6rem,1vw,2rem); }
.sides__ghost--right{ right:clamp(-.6rem,1vw,2rem); }
.sides__center{
  position:relative;
  max-width:1080px; margin:0 auto;
  display:flex; flex-direction:column; gap:clamp(2.4rem,5vw,4rem);
}
.sides__cols{
  display:grid; gap:clamp(1.8rem,4vw,2.6rem);
  align-items:start;
}
.sides__col{ display:flex; flex-direction:column; gap:.9rem; align-items:flex-start; }
.sides__h{
  font-size:clamp(1.15rem, 1rem + .8vw, 1.6rem);
  line-height:1.22; font-weight:700; letter-spacing:-.01em;
  text-wrap:balance;
}
.sides__col p{ color:#43434A; font-size:.95rem; }
.sides__figure{
  position:relative;
  background:var(--ink);
  border-radius:var(--r-md);
  padding:.7rem;
  box-shadow:0 26px 60px rgba(0,0,0,.22);
  transition:transform .5s var(--ease-out);
}
.sides__figure img{ width:100%; border-radius:8px; }
.sides__figure figcaption{
  padding:.7rem .3rem .2rem;
  font-size:.66rem; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.55); text-align:center;
}
.sides__statement{
  border-top:1.5px solid var(--ink);
  padding-top:clamp(1.4rem,3vw,2.2rem);
  display:grid; gap:1rem;
}
.sides__statement h3{
  font-family:var(--ff-display); font-weight:400;
  font-size:clamp(1.7rem,1rem + 3.2vw,3.4rem);
  line-height:.95; text-transform:uppercase;
}
.sides__statement p{ color:#43434A; max-width:62ch; }

/* ---------- 09  APPROACH RINGS ---------- */
.approach{
  position:relative;
  background:var(--ink); color:#fff;
  padding:clamp(3.5rem,9vw,7rem) 0 clamp(3.5rem,9vw,7rem);
  overflow:hidden;
}
.approach .sec-title{ color:#fff; }
.rings{
  position:relative;
  margin-top:clamp(2rem,5vw,3.5rem);
  padding:0 var(--gut);
}
.rings__stage{
  position:relative;
  display:flex; justify-content:center; flex-wrap:wrap;
  gap:.5rem;
  max-width:var(--wrap); margin:0 auto;
}
.ring{
  position:relative;
  display:grid; place-content:center;
  width:clamp(78px, 21vw, 190px);
  aspect-ratio:1;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  color:rgba(255,255,255,.62);
  transition:background-color .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease-out);
}
.ring + .ring{ margin-left:clamp(-26px,-5vw,-10px); }
.ring__name{
  font-size:clamp(.52rem,1.5vw,.78rem);
  letter-spacing:.14em; text-transform:uppercase; font-weight:700;
  text-align:center; padding:0 .4rem;
}
.ring:hover{ transform:translateY(-4px); color:#fff; border-color:rgba(255,255,255,.6); }
.ring.is-active{ background:#fff; color:var(--ink); border-color:#fff; }

.rings__panel{
  position:relative;
  max-width:600px; margin:clamp(1.8rem,4vw,2.8rem) auto 0;
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1rem;
}
.rings__disc{ width:clamp(56px,12vw,88px); animation:spin 12s linear infinite; }
.rings__title{
  font-family:var(--ff-display); font-weight:400;
  font-size:clamp(1.5rem,1rem + 2.4vw,2.6rem);
  text-transform:uppercase; line-height:1;
}
.rings__copy{ color:rgba(255,255,255,.7); max-width:52ch; text-wrap:pretty; }
.rings__panel.is-swap .rings__title,.rings__panel.is-swap .rings__copy{ opacity:0; transform:translateY(8px); }
.rings__title,.rings__copy{ transition:opacity .3s var(--ease), transform .3s var(--ease); }

/* ---------- 10  PRACTICE SLEEVES ---------- */
.practice{
  background:var(--ink); color:#fff;
  padding:clamp(3rem,8vw,6rem) 0 clamp(3.5rem,9vw,7rem);
}
.practice .sec-title{ color:#fff; }
.sleeves{
  max-width:var(--wrap); margin:clamp(2rem,5vw,3.4rem) auto 0;
  padding:0 var(--gut);
  display:grid; gap:clamp(1.6rem,3vw,2.4rem);
}
.sleeve{ display:flex; flex-direction:column; gap:1rem; }
.sleeve__art{
  position:relative;
  aspect-ratio:16/11;
  border-radius:var(--r-md);
  overflow:hidden;
  display:grid; place-items:center;
  isolation:isolate;
}
.sleeve__art--1{ background:
  radial-gradient(circle at 30% 30%, rgba(255,255,255,.14) 0 1px, transparent 1px) 0 0/12px 12px,
  linear-gradient(135deg, var(--red), #6E140C); }
.sleeve__art--2{ background:
  repeating-radial-gradient(circle at 24% 50%, #EDEAE3 0 8px, #D9D3C7 8px 16px); }
.sleeve__art--3{ background:
  linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px) 0 0/100% 22px,
  linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px) 0 0/22px 100%,
  #141418; }
.sleeve__art--4{ background:
  repeating-linear-gradient(58deg, #1A1A1F 0 14px, #101014 14px 28px),
  linear-gradient(135deg, var(--ember), #7A2A08); }
.sleeve__disc{
  position:absolute; right:-24%; top:50%;
  width:62%;
  transform:translateY(-50%);
  transition:transform .6s var(--ease-out), right .6s var(--ease-out);
  z-index:1;
}
.sleeve__disc .disc{ animation:spin 7s linear infinite; animation-play-state:paused; }
.sleeve:hover .sleeve__disc,.sleeve:focus-within .sleeve__disc{ right:-8%; }
.sleeve:hover .sleeve__disc .disc{ animation-play-state:running; }
.sleeve__num{
  position:absolute; left:1rem; top:.85rem; z-index:2;
  font-family:var(--ff-display); font-size:.9rem; letter-spacing:.1em;
  color:rgba(255,255,255,.85);
  mix-blend-mode:difference;
}
.sleeve__kicker{
  display:block;
  font-size:.6rem; letter-spacing:.24em; text-transform:uppercase; font-weight:700;
  color:var(--red); margin-bottom:.45rem;
}
.sleeve__meta h3{
  font-family:var(--ff-display); font-weight:400;
  font-size:clamp(1.5rem,1rem + 2vw,2.3rem);
  line-height:1; text-transform:uppercase; margin-bottom:.6rem;
}
.sleeve__meta p{ color:rgba(255,255,255,.62); font-size:.92rem; max-width:46ch; }

.chips{
  max-width:var(--wrap); margin:clamp(2.4rem,5vw,3.6rem) auto 0;
  padding:0 var(--gut);
  display:flex; flex-wrap:wrap; align-items:center; gap:.5rem;
}
.chips__label{
  font-size:.6rem; letter-spacing:.24em; text-transform:uppercase; font-weight:700;
  color:rgba(255,255,255,.4); margin-right:.4rem;
}
.chips ul{ display:flex; flex-wrap:wrap; gap:.45rem; }
.chips li{
  border:1px solid rgba(255,255,255,.2);
  border-radius:100px; padding:.4rem .85rem;
  font-size:.74rem; color:rgba(255,255,255,.72);
  transition:background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.chips li:hover{ background:#fff; color:var(--ink); border-color:#fff; }

/* ---------- 11  THE RECORD / DIAL ---------- */
.record{
  background:var(--ink); color:#fff;
  padding:clamp(3rem,8vw,6rem) 0 clamp(3.5rem,9vw,6rem);
  overflow:hidden;
}
.record .sec-title{ color:#fff; }
.dial{
  position:relative;
  max-width:1000px; margin:clamp(2rem,5vw,3rem) auto 0;
  padding:0 var(--gut) 1.5rem;
  aspect-ratio:2/1.06;
  min-height:270px;
}
.dial__ghost{
  position:absolute; left:50%; top:56%;
  transform:translate(-50%,-50%);
  font-family:var(--ff-display);
  font-size:clamp(8rem,27vw,21rem);
  line-height:.8;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.09);
  user-select:none; pointer-events:none;
}
.dial__arc{
  position:absolute; left:var(--gut); right:var(--gut); bottom:1.5rem;
  width:calc(100% - var(--gut)*2); height:auto;
}
.dial__arc-bg{ stroke:rgba(255,255,255,.16); stroke-width:1; }
.dial__arc-fg{
  stroke:var(--red); stroke-width:1.6; stroke-linecap:round;
  stroke-dasharray:1400; stroke-dashoffset:1400;
  transition:stroke-dashoffset 1.8s var(--ease-out);
}
.dial.is-in .dial__arc-fg{ stroke-dashoffset:0; }
.dial__point{
  position:absolute;
  display:flex; flex-direction:column; align-items:center; gap:.3rem;
  text-align:center;
}
.dial__point::after{
  content:''; width:7px; height:7px; border-radius:50%;
  background:var(--red); margin-top:.35rem;
  box-shadow:0 0 0 4px rgba(217,58,43,.18);
}
.dial__point--top{ left:50%; top:0; transform:translateX(-50%); }
.dial__point--left{ left:0; bottom:9%; }
.dial__point--right{ right:0; bottom:9%; }
.dial__point--left::after,.dial__point--right::after{ display:none; }
.dial__point--left::before,.dial__point--right::before{
  content:''; position:absolute; top:-14px;
  width:7px; height:7px; border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 4px rgba(217,58,43,.18);
}
.dial__num{
  font-family:var(--ff-display);
  font-size:clamp(2.1rem,7vw,4.2rem);
  line-height:.9;
}
.dial__num--big{ font-size:clamp(3rem,10vw,6.5rem); color:var(--red); }
.dial__cap{
  font-size:clamp(.55rem,1.4vw,.72rem);
  letter-spacing:.16em; text-transform:uppercase;
  color:rgba(255,255,255,.55); line-height:1.5;
}
.dial__point--left .dial__num,.dial__point--right .dial__num{ color:rgba(255,255,255,.92); }

/* The arc needs horizontal room. Below tablet it becomes a plain stack,
   which keeps every label on screen instead of bleeding off both edges. */
@media (max-width:759px){
  .dial{ aspect-ratio:auto; min-height:0; display:grid; gap:2.2rem; padding-block:1rem 0; }
  .dial__arc{ display:none; }
  .dial__ghost{ top:50%; font-size:clamp(10rem,46vw,16rem); }
  .dial__point{ position:static; transform:none; }
  .dial__point--top{ order:-1; }
  .dial__point::after{ display:none; }
  .dial__point--left::before,.dial__point--right::before{ display:none; }
  .dial__cap{ font-size:.68rem; }
}

/* Bordered boxes carry their own edge, so the gutter comes out of the width
   rather than from padding. `auto` margins keep them centred in the page. */
.creds{
  width:min(calc(var(--wrap) - var(--gut)*2), calc(100% - var(--gut)*2));
  margin:clamp(1.5rem,4vw,3rem) auto 0;
  display:grid; gap:1px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-md);
  overflow:hidden;
}
.creds li{
  background:var(--ink);
  padding:1.2rem 1.3rem;
  display:flex; flex-direction:column; gap:.35rem;
  transition:background-color .35s var(--ease);
}
.creds li:hover{ background:var(--ink-3); }
.creds strong{ font-family:var(--ff-display); font-weight:400; font-size:1.5rem; letter-spacing:.01em; }
.creds span{ font-size:.78rem; color:rgba(255,255,255,.55); }
.creds em{ font-style:italic; }

/* ---------- 12  WALL CAROUSEL ---------- */
.wall{
  background:var(--bone);
  padding:clamp(3rem,8vw,6rem) 0 clamp(3rem,8vw,5rem);
  overflow:hidden;
}
.sec-head--dark .sec-title{ color:var(--ink); }
.carousel{ margin-top:clamp(2rem,5vw,3rem); }
.carousel__track{
  display:flex; gap:clamp(.8rem,2vw,1.4rem);
  padding:0 var(--gut) 1rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.carousel__track::-webkit-scrollbar{ display:none; }
.frame{
  flex:0 0 clamp(230px, 74vw, 460px);
  scroll-snap-align:center;
  background:var(--ink);
  border-radius:var(--r-md);
  padding:.7rem;
  box-shadow:0 20px 46px rgba(0,0,0,.18);
  transition:transform .5s var(--ease-out);
}
.frame:hover{ transform:translateY(-6px); }
/* Every photo is pre-cropped to 4:3, so it fills the frame edge to edge and the
   six cards read as one set. The mat is a border rather than padding, so the
   hover zoom is clipped inside it and the pale edge stays put. */
.frame__img{
  aspect-ratio:4/3;
  border:7px solid #F4F1EB;
  border-radius:9px;
  overflow:hidden;
  background:#0F0F12;
}
.frame__img img{
  display:block;
  width:100%; height:100%;
  object-fit:cover;
  filter:grayscale(.12) contrast(1.04);
  transition:filter .5s var(--ease), transform .7s var(--ease-out);
}
.frame:hover .frame__img img{ filter:none; transform:scale(1.04); }
.frame figcaption{
  padding:.8rem .3rem .2rem;
  display:flex; flex-direction:column; gap:.2rem;
}
.frame figcaption b{ font-size:.85rem; color:#fff; font-weight:600; }
.frame figcaption span{ font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.45); }

.carousel__ctrl{
  max-width:var(--wrap); margin:1.2rem auto 0;
  padding:0 var(--gut);
  display:flex; align-items:center; gap:1rem; justify-content:center;
}
.cbtn{
  width:46px; height:46px; flex:none;
  border-radius:50%; border:1.5px solid rgba(10,10,11,.22);
  display:grid; place-content:center;
  font-size:1rem;
  transition:background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.cbtn:hover{ background:var(--ink); color:#fff; border-color:var(--ink); transform:scale(1.06); }
.carousel__bar{
  flex:1; max-width:240px; height:2px;
  background:rgba(10,10,11,.15); border-radius:2px; overflow:hidden;
}
.carousel__bar span{ display:block; height:100%; width:20%; background:var(--red); border-radius:2px; transition:transform .3s var(--ease), width .3s var(--ease); }

/* ---------- 13  CLIENTS GRID ---------- */
.clients{
  background:var(--ink); color:#fff;
  padding:clamp(3rem,8vw,6rem) 0 clamp(3.5rem,9vw,6rem);
}
.clients .sec-title{ color:#fff; }
.grid{
  width:min(calc(var(--wrap) - var(--gut)*2), calc(100% - var(--gut)*2));
  margin:clamp(2rem,5vw,3rem) auto 0;
  display:grid; gap:1px;
  grid-template-columns:repeat(2,1fr);
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.11);
  border-radius:var(--r-md);
  overflow:hidden;
}
.cell{
  position:relative;
  background:var(--ink);
  padding:1.1rem 1rem 1.3rem;
  min-height:170px;
  display:flex; flex-direction:column; gap:.4rem;
  overflow:hidden;
  transition:background-color .4s var(--ease), transform .4s var(--ease-out);
}
.cell::before{
  content:''; position:absolute; inset:0;
  background:var(--red);
  transform:translateY(100%);
  transition:transform .5s var(--ease-out);
  z-index:0;
}
.cell:hover::before{ transform:translateY(0); }
.cell > *{ position:relative; z-index:1; }
.cell__n{
  font-family:var(--ff-display); font-size:.78rem; letter-spacing:.16em;
  color:rgba(255,255,255,.4);
  transition:color .4s var(--ease);
}
.cell:hover .cell__n{ color:rgba(255,255,255,.8); }
.cell h3{
  font-size:.98rem; font-weight:700; letter-spacing:-.005em; line-height:1.2;
  margin-top:auto;
}
.cell p{ font-size:.78rem; color:rgba(255,255,255,.55); line-height:1.5; transition:color .4s var(--ease); }
.cell:hover p{ color:rgba(255,255,255,.9); }
.cell--red{ background:var(--red-dark); }
.cell--red::before{ background:var(--ink); }
.cell--red p{ color:rgba(255,255,255,.78); }
.cell__disc{
  position:absolute; right:-30%; top:-14%; width:66%; z-index:0;
  opacity:.55;
  transition:transform .7s var(--ease-out), opacity .5s var(--ease);
}
.cell__disc .disc{ animation:spin 14s linear infinite; }
.cell:hover .cell__disc{ transform:translate(-14%, 6%) scale(1.05); opacity:.95; }
/* Cells are narrow on phones, so the accent disc backs off the headline. */
@media (max-width:819px){
  .cell__disc{ width:50%; right:-22%; opacity:.3; }
}

.clients__more{
  max-width:880px;
  margin:clamp(1.6rem,4vw,2.4rem) auto 0;
  padding:0 var(--gut);
  text-align:center;
  font-size:.85rem; line-height:1.7;
  color:rgba(255,255,255,.5);
}

/* ---------- 14  QUOTE ---------- */
.quote{
  background:var(--bone);
  padding:clamp(3.5rem,9vw,7rem) var(--gut);
}
.quote__inner{
  max-width:880px; margin:0 auto;
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1.2rem;
}
.quote__mark{
  font-family:var(--ff-display);
  font-size:clamp(3.5rem,10vw,7rem);
  line-height:.5; color:var(--red);
}
.quote blockquote{
  font-size:clamp(1.15rem, 1rem + 1.5vw, 2rem);
  line-height:1.32; font-weight:600; letter-spacing:-.015em;
  text-wrap:balance;
}
.quote cite{
  font-style:normal;
  font-size:.68rem; letter-spacing:.22em; text-transform:uppercase; font-weight:700;
  color:var(--mute-dark);
}

/* ---------- 15  PROCESS + CALL BAND ---------- */
.process{
  background:var(--paper);
  padding:clamp(3.5rem,9vw,6.5rem) 0 0;
}
.steps{
  max-width:var(--wrap); margin:clamp(2rem,5vw,3.4rem) auto clamp(3rem,7vw,5rem);
  padding:0 var(--gut);
  display:grid; gap:clamp(1.6rem,3vw,2.4rem);
}
.step{
  border-top:1.5px solid var(--ink);
  padding-top:1.1rem;
  display:flex; flex-direction:column; gap:.5rem;
}
.step__n{
  font-family:var(--ff-display); font-size:2rem; line-height:1;
  color:var(--red);
}
.step h3{ font-size:1.15rem; font-weight:700; letter-spacing:-.01em; }
.step p{ color:#4A4A52; font-size:.92rem; }

.callband{
  position:relative;
  background:var(--ink); color:#fff;
  padding:clamp(2.4rem,6vw,4rem) var(--gut) clamp(2.6rem,6vw,4.2rem);
  overflow:hidden;
  text-align:center;
}
.callband__marq{
  position:absolute; left:0; right:0; top:50%;
  transform:translateY(-50%);
  display:flex; width:max-content;
  animation:slide 34s linear infinite;
  font-family:var(--ff-display);
  font-size:clamp(3rem,11vw,8rem);
  line-height:1; text-transform:uppercase; white-space:nowrap;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.14);
  pointer-events:none; user-select:none;
}
.callband__link{
  position:relative; z-index:1;
  display:inline-flex; flex-direction:column; align-items:center; gap:.5rem;
  transition:transform .4s var(--ease-out);
}
.callband__link:hover{ transform:translateY(-4px); }
.callband__disc{ width:clamp(44px,9vw,64px); animation:spin 6s linear infinite; }
.callband__text{
  font-family:var(--ff-display);
  font-size:clamp(2.2rem,8.5vw,5rem);
  line-height:1;
  transition:color .35s var(--ease);
}
.callband__link:hover .callband__text{ color:var(--red); }
.callband__sub{
  font-size:.66rem; letter-spacing:.24em; text-transform:uppercase;
  color:rgba(255,255,255,.5);
}

/* ---------- 16  FAQ ---------- */
.faq{
  background:var(--ink); color:#fff;
  padding:clamp(3.5rem,9vw,6.5rem) 0;
}
.faq .sec-title{ color:#fff; }
.acc{
  max-width:860px; margin:clamp(2rem,5vw,3rem) auto 0;
  padding:0 var(--gut);
}
.acc__item{ border-bottom:1px solid rgba(255,255,255,.16); }
.acc__item:first-child{ border-top:1px solid rgba(255,255,255,.16); }
.acc__btn{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:1.2rem;
  padding:1.25rem 0;
  text-align:left;
  font-size:clamp(.95rem,.9rem + .3vw,1.12rem);
  font-weight:600; letter-spacing:-.005em;
  color:rgba(255,255,255,.9);
  transition:color .3s var(--ease);
}
.acc__btn:hover{ color:var(--red); }
.acc__ic{
  position:relative; width:20px; height:20px; flex:none;
}
.acc__ic::before,.acc__ic::after{
  content:''; position:absolute; left:50%; top:50%;
  background:currentColor; border-radius:2px;
  transform:translate(-50%,-50%);
  transition:transform .4s var(--ease);
}
.acc__ic::before{ width:14px; height:1.6px; }
.acc__ic::after{ width:1.6px; height:14px; }
.acc__btn[aria-expanded="true"] .acc__ic::after{ transform:translate(-50%,-50%) scaleY(0); }
.acc__btn[aria-expanded="true"]{ color:var(--red); }
.acc__panel{
  overflow:hidden; height:0;
  transition:height .45s var(--ease-out);
}
.acc__panel p{
  padding:0 0 1.4rem;
  max-width:64ch;
  color:rgba(255,255,255,.62);
  font-size:.92rem;
}

/* ---------- 17  CONTACT ---------- */
.contact{
  background:var(--bone);
  padding:clamp(3.5rem,9vw,6.5rem) var(--gut);
}
.contact__grid{
  max-width:var(--wrap); margin:0 auto;
  display:grid; gap:clamp(2.2rem,5vw,4rem);
  align-items:start;
}
.contact__pitch{ display:flex; flex-direction:column; align-items:flex-start; gap:1.1rem; }
.contact__h{
  font-family:var(--ff-display); font-weight:400;
  font-size:clamp(2.4rem,1.4rem + 5vw,5.4rem);
  line-height:.9; text-transform:uppercase;
}
.contact__lead{ color:#4A4A52; max-width:44ch; }
.bigcall{
  width:100%;
  display:flex; align-items:center; gap:1rem;
  background:var(--ink); color:#fff;
  border-radius:var(--r-md);
  padding:1.15rem 1.3rem;
  transition:background-color .4s var(--ease), transform .4s var(--ease-out);
}
.bigcall:hover{ background:var(--red); transform:translateY(-3px); }
.bigcall__eq{ height:26px; }
.bigcall__eq i{ width:3px; }
.bigcall b{ display:block; font-family:var(--ff-display); font-weight:400; font-size:clamp(1.5rem,5vw,2.1rem); line-height:1; letter-spacing:.01em; }
.bigcall em{ display:block; font-style:normal; font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-top:.3rem; }

.contact__list{ width:100%; display:grid; gap:.1rem; margin-top:.4rem; }
.contact__list li{
  display:flex; flex-wrap:wrap; gap:.2rem .9rem;
  padding:.72rem 0;
  border-bottom:1px solid rgba(10,10,11,.12);
  font-size:.9rem;
}
.contact__list span{
  flex:0 0 82px;
  font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; font-weight:700;
  color:var(--mute-dark); padding-top:.25rem;
}
.contact__list a{ border-bottom:1px solid transparent; transition:border-color .3s var(--ease), color .3s var(--ease); }
.contact__list a:hover{ color:var(--red); border-color:var(--red); }

/* form */
.form{
  background:var(--paper);
  border-radius:var(--r-lg);
  padding:clamp(1.3rem,3.4vw,2.2rem);
  box-shadow:0 30px 70px rgba(10,10,11,.1);
  display:grid; gap:1rem;
}
.form__row{ display:grid; gap:.4rem; }
.form__two{ display:grid; gap:1rem; }
.form label{
  font-size:.64rem; letter-spacing:.2em; text-transform:uppercase; font-weight:700;
  color:var(--mute-dark);
}
.form input,.form textarea,.form select{
  width:100%;
  background:var(--bone);
  border:1.5px solid transparent;
  border-radius:10px;
  padding:.82rem .95rem;
  font-size:.95rem;
  transition:border-color .3s var(--ease), background-color .3s var(--ease);
}
.form textarea{ resize:vertical; min-height:120px; }
.form input:focus,.form textarea:focus,.form select:focus{
  outline:none; border-color:var(--ink); background:var(--paper);
}
.form__select{ position:relative; }
.form__select::after{
  content:''; position:absolute; right:1rem; top:50%;
  width:8px; height:8px; margin-top:-6px;
  border-right:1.8px solid var(--ink); border-bottom:1.8px solid var(--ink);
  transform:rotate(45deg); pointer-events:none;
}
.form select{ appearance:none; -webkit-appearance:none; padding-right:2.4rem; }
.form__err{
  display:none;
  font-size:.75rem; color:var(--red); font-weight:600;
}
.form__row.is-bad input,.form__row.is-bad textarea{ border-color:var(--red); }
.form__row.is-bad .form__err{ display:block; }
.form__note{ font-size:.74rem; color:var(--mute-dark); line-height:1.5; }
.form__status{ font-size:.85rem; font-weight:600; min-height:1.2em; }
.form__status.is-ok{ color:#1E7A48; }
.form__status.is-bad{ color:var(--red); }

/* ---------- 18  FOOTER ---------- */
.footer{
  background:var(--ink); color:#fff;
  padding:clamp(2rem,5vw,3rem) 0 calc(1.6rem + env(safe-area-inset-bottom));
  overflow:hidden;
}
.footer__nav{
  max-width:var(--wrap); margin:0 auto;
  padding:0 var(--gut) clamp(1.4rem,3vw,2rem);
  display:flex; flex-wrap:wrap; gap:1rem 1.6rem; justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.footer__nav a{
  font-family:var(--ff-display);
  font-size:clamp(1rem,3.5vw,1.6rem);
  text-transform:uppercase; letter-spacing:.02em;
  transition:color .3s var(--ease);
}
.footer__nav a:hover{ color:var(--red); }

.footer__word{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  gap:clamp(.2rem,1vw,1rem);
  padding:clamp(1.6rem,5vw,3rem) var(--gut) clamp(1.6rem,4vw,2.6rem);
  font-family:var(--ff-display);
  font-size:clamp(3.6rem,19vw,15rem);
  line-height:.82; text-transform:uppercase;
  letter-spacing:-.02em;
}
.footer__disc{
  width:clamp(60px,17vw,200px); flex:none;
  margin:0 clamp(-.5rem,-1.2vw,-.2rem);
  animation:spin 20s linear infinite;
}
.scrawl--footer{
  position:absolute; left:50%; bottom:clamp(.2rem,1.4vw,1.2rem);
  transform:translateX(-50%) rotate(-3deg);
  font-size:clamp(1.25rem,5.2vw,3.6rem);
  white-space:nowrap;
  text-shadow:0 2px 14px rgba(10,10,11,.55);
}

.footer__cols{
  max-width:var(--wrap); margin:0 auto;
  padding:clamp(1.6rem,4vw,2.4rem) var(--gut) 0;
  border-top:1px solid rgba(255,255,255,.14);
  display:grid; gap:1.6rem;
}
.footer__cols h4{
  font-size:.62rem; letter-spacing:.22em; text-transform:uppercase; font-weight:700;
  color:var(--red); margin-bottom:.5rem;
}
.footer__cols p{ font-size:.88rem; color:rgba(255,255,255,.6); line-height:1.7; }
.footer__cols a:hover{ color:#fff; }

.footer__legal{
  max-width:var(--wrap); margin:clamp(1.8rem,4vw,2.6rem) auto 0;
  padding:clamp(1.2rem,3vw,1.8rem) var(--gut) 0;
  border-top:1px solid rgba(255,255,255,.14);
  display:grid; gap:.9rem;
}
.footer__legal p{ font-size:.72rem; line-height:1.7; color:rgba(255,255,255,.42); }
.footer__legal strong{ color:rgba(255,255,255,.7); }
.footer__copy{ font-size:.7rem; }

/* ---------- BREAKPOINTS ---------- */
@media (min-width:560px){
  .form__two{ grid-template-columns:1fr 1fr; }
  .sleeves{ grid-template-columns:repeat(2,1fr); }
  .creds{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(3,1fr); }
  .footer__cols{ grid-template-columns:repeat(3,1fr); }
}
@media (min-width:820px){
  :root{ --hdr-h:78px; }
  .nav{ display:flex; }
  .header__cta .btn{ display:inline-flex; }
  .burger{ display:none; }
  .callbar{ display:none; }
  .sides__cols{ grid-template-columns:1fr 1.05fr 1fr; align-items:center; }
  .sides__col{ gap:1rem; }
  .grid{ grid-template-columns:repeat(3,1fr); }
  .cell{ min-height:210px; }
  .contact__grid{ grid-template-columns:1fr 1.05fr; }
  .creds{ grid-template-columns:repeat(4,1fr); }
}
@media (min-width:1100px){
  .grid{ grid-template-columns:repeat(4,1fr); }
  .sleeves{ grid-template-columns:repeat(4,1fr); }
  .sleeve__meta p{ font-size:.86rem; }
  .frame{ flex-basis:440px; }
}

/* ---------- 19  MOTION & PRINT ---------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  .reveal{ opacity:1; transform:none; }
  .hero__disc,.footer__disc,.brand__disc,.rings__disc,.callband__disc,.cell__disc .disc,.mnav__disc{ animation:none; }
  .dial__arc-fg{ stroke-dashoffset:0; }
}

@media print{
  .header,.mnav,.callbar,.tonearm,.hero__scroll,.marquee-block,.callband__marq{ display:none !important; }
  body{ background:#fff; color:#000; }
  .approach,.practice,.record,.clients,.faq,.footer,.marquee-block{ background:#fff !important; color:#000 !important; }
  .sec-title,.approach .sec-title,.practice .sec-title{ color:#000 !important; }
  .disc{ display:none; }
}
