/* ═══════════════════════════════════════════════════════════════
   COPPERLINE PLUMBING Co. — Design System
   Navy blueprint × cream editorial × brushed copper
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Fonts (self-hosted) ─────────────────────────────────── */
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-normal-300-800.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-italic-300-800.woff2') format('woff2');
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/manrope-normal-200-800.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../assets/fonts/spacemono-normal-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../assets/fonts/spacemono-normal-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── 2. Tokens ──────────────────────────────────────────────── */
:root {
  --ink:        #081420;
  --navy:       #0B1926;
  --navy-2:     #0F2436;
  --cream:      #F4EEE3;
  --cream-2:    #EAE1D0;
  --paper:      #FBF8F1;

  --copper:     #C67A3B;
  --copper-2:   #E09A55;
  --copper-3:   #E8B078;
  --copper-deep:#9A5B27;

  --text:       #131F29;
  --muted:      #5A6772;
  --fog:        rgba(246, 241, 232, .66);
  --fog-soft:   rgba(246, 241, 232, .42);

  --line-l:     rgba(19, 31, 41, .14);
  --line-d:     rgba(246, 241, 232, .13);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'SF Mono', monospace;

  --ease:     cubic-bezier(.16, 1, .3, 1);
  --ease-io:  cubic-bezier(.65, 0, .35, 1);

  --pad-section: clamp(96px, 11vw, 176px);
  --wrap: 1320px;
}

/* ── 3. Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* fine film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }
main { display: block; }

::selection { background: var(--copper-2); color: var(--ink); }

:focus-visible {
  outline: 2px dashed var(--copper);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── 4. Utilities ───────────────────────────────────────────── */
.wrap {
  width: min(100% - clamp(40px, 6vw, 96px), var(--wrap));
  margin-inline: auto;
}
.wrap-narrow { max-width: 940px; }

.section-cream { background: var(--cream); color: var(--text); }
.section-dark  { background: var(--navy);  color: var(--cream); position: relative; }

.standard, .services, .process, .work, .reviews, .faq, .book {
  padding-block: var(--pad-section);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow-light { color: var(--copper-2); }

.section-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: 480;
  font-size: clamp(2.3rem, 4.8vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -.015em;
}
.section-dark .section-title { color: var(--cream); }

.accent {
  font-style: italic;
  font-weight: 420;
  background: linear-gradient(102deg, var(--copper-3) 0%, var(--copper-2) 42%, var(--copper) 78%, var(--copper-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--copper-2); /* fallback */
}

.section-head { margin-bottom: clamp(52px, 6.5vw, 92px); }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}
.section-aside {
  max-width: 33ch;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--muted);
  padding-bottom: 8px;
}
.section-dark .section-aside { color: var(--fog); }

/* ── 5. Buttons ─────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.05rem 1.75rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: .95rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              box-shadow .45s var(--ease), color .35s var(--ease);
  will-change: transform;
  overflow: hidden;
}
.btn-solid {
  background: linear-gradient(135deg, var(--copper-3) 0%, var(--copper-2) 38%, var(--copper) 72%, var(--copper-deep) 110%);
  color: #221105;
  box-shadow: 0 14px 34px -14px rgba(198, 122, 59, .65),
              inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,.42) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease);
}
.btn-solid:hover::after { transform: translateX(120%); }
.btn-solid:hover { box-shadow: 0 20px 44px -14px rgba(198, 122, 59, .8), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-solid svg { transition: transform .4s var(--ease); position: relative; z-index: 1; }
.btn-solid span { position: relative; z-index: 1; }
.btn-solid:hover svg { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid rgba(246, 241, 232, .28);
  color: var(--cream);
  background: rgba(246, 241, 232, .02);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--copper); color: var(--copper-2); background: rgba(198, 122, 59, .08); }

.section-cream .btn-ghost, .form-success .btn-ghost { border-color: var(--line-l); color: var(--text); }
.section-cream .btn-ghost:hover { border-color: var(--copper); color: var(--copper-deep); background: rgba(198,122,59,.07); }

.btn-sm { padding: .72rem 1.3rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ── 6. Cursor / progress / skip / to-top ───────────────────── */
.cursor { display: none; }
html.cursor-on .cursor { display: block; }
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 6px; height: 6px;
  background: var(--copper-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity .3s;
}
.cursor-dot.off { opacity: 0; }
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 38px; height: 38px;
  border: 1px solid rgba(224, 154, 85, .65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: grid;
  place-items: center;
  transition: width .35s var(--ease), height .35s var(--ease),
              background .35s var(--ease), border-color .35s var(--ease);
}
.cursor-ring span {
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-2);
  opacity: 0;
  transition: opacity .25s;
}
.cursor-ring.grow {
  width: 68px; height: 68px;
  background: rgba(11, 25, 38, .7);
  border-color: var(--copper);
  backdrop-filter: blur(2px);
}
.cursor-ring.grow span { opacity: 1; }
html.cursor-on, html.cursor-on a, html.cursor-on button,
html.cursor-on label, html.cursor-on .chip { cursor: none; }

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9900;
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper-2));
}

.skip-link {
  position: fixed; top: -80px; left: 20px; z-index: 10001;
  background: var(--copper-2); color: var(--ink);
  font-weight: 700; font-size: .85rem;
  padding: 12px 20px; border-radius: 10px;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }

.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 800;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-3), var(--copper) 70%);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px rgba(198,122,59,.7);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* ── 7. Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: var(--fog);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 20;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 11px;
}
.topbar-note { display: flex; align-items: center; gap: 10px; }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--copper-2);
  flex: none;
  animation: pulse 2.4s var(--ease-io) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 154, 85, .55); }
  55%      { box-shadow: 0 0 0 7px rgba(224, 154, 85, 0); }
}
.topbar-right { display: flex; align-items: center; gap: 22px; flex: none; }
.topbar-tel { display: inline-flex; align-items: center; gap: 8px; color: var(--copper-3); transition: color .3s; }
.topbar-tel:hover { color: var(--cream); }

.open-status { display: inline-flex; align-items: center; color: var(--fog); }
.open-status::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--status, #74C98E);
  margin-right: 8px;
  flex: none;
}
.open-status.closed { --status: #D97757; }

/* ── 8. Header ──────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 25, 38, 0);
  transition: background .5s var(--ease), box-shadow .5s var(--ease), backdrop-filter .5s;
}
.header.menu-open { background: transparent; backdrop-filter: none; box-shadow: none; }
.header.menu-open .nav,
.header.menu-open .header-tel,
.header.menu-open .header-cta .btn { opacity: 0; pointer-events: none; }
.nav, .header-tel, .header-cta .btn { transition: opacity .35s; }
.header.scrolled {
  background: rgba(8, 20, 32, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(246, 241, 232, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 20px;
  transition: padding .5s var(--ease);
}
.header.scrolled .header-inner { padding-block: 13px; }

.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo-mark { display: grid; place-items: center; }
.logo-mark svg { display: block; transition: transform .7s var(--ease); }
.logo:hover .logo-mark svg { transform: rotate(18deg); }
.logo-type {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.32rem;
  color: var(--cream);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-type em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--copper-2);
}

.nav { display: flex; gap: clamp(20px, 2.6vw, 40px); }
.nav-link {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fog);
  position: relative;
  padding-block: 6px;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--copper-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-tel {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--cream);
  transition: color .3s;
}
.header-tel:hover { color: var(--copper-2); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-d);
  border-radius: 50%;
  position: relative;
  z-index: 1001;
  transition: border-color .3s, background .3s;
}
.menu-toggle span {
  position: absolute;
  left: 13px; right: 13px;
  height: 1.6px;
  background: var(--cream);
  transition: transform .45s var(--ease), top .45s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
.menu-toggle.open { border-color: var(--copper); }

/* ── 9. Mobile menu ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 110px clamp(24px, 7vw, 48px) 44px;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .7s var(--ease-io), visibility 0s .7s;
}
.mobile-menu.open {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  transition: clip-path .7s var(--ease-io);
}
.mobile-nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 3.4rem);
  font-weight: 480;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(246, 241, 232, .08);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
  transition-delay: var(--d, 0s);
}
.mobile-menu.open .mobile-link { opacity: 1; transform: none; }
.mobile-link:hover { color: var(--copper-2); }
.mobile-num {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--copper);
}
.mobile-menu-foot {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  line-height: 2;
  color: var(--fog);
  text-transform: uppercase;
}
.mobile-tel {
  display: block;
  font-size: 1.2rem;
  color: var(--copper-2);
  margin-bottom: 10px;
}

/* ── 10. Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  min-height: calc(100svh - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(72px, 9vh, 120px) clamp(120px, 14vh, 160px);
  overflow: clip;
  color: var(--cream);
}
.hero-blueprint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(246, 241, 232, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 232, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 68% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 80% at 68% 40%, #000 30%, transparent 78%);
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 46% 42% at 82% 18%, rgba(198, 122, 59, .16), transparent 70%),
    radial-gradient(ellipse 55% 45% at 10% 110%, rgba(24, 58, 84, .5), transparent 72%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: 470;
  font-size: clamp(3.4rem, 8vw, 7.3rem);
  line-height: .99;
  letter-spacing: -.022em;
  margin-bottom: clamp(26px, 3vw, 38px);
}
/* word-split masks (added by JS) */
.hero-title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: .09em;
  margin-bottom: -.09em;
}
.hero-title .w > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1.1s var(--ease);
  transition-delay: var(--wd, 0s);
}
.hero-title.in .w > span { transform: translateY(0); }

.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.09rem);
  line-height: 1.78;
  color: var(--fog);
  max-width: 47ch;
  margin-bottom: clamp(30px, 3.4vw, 42px);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(30px, 3.4vw, 40px); }
.hero-chips {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fog-soft);
}
.hero-chips li[aria-hidden] { color: var(--copper); }

.hero-visual { position: relative; justify-self: end; width: min(100%, 470px); }
.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  isolation: isolate;
}
.hero-figure::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(224, 154, 85, .4);
  border-radius: 16px;
  transform: translate(16px, 16px);
  z-index: -1;
  transition: transform .8s var(--ease);
}
.hero-visual:hover .hero-figure::before { transform: translate(10px, 10px); }
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.hero-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(8, 20, 32, .62);
  border: 1px solid rgba(246, 241, 232, .14);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 8px;
}
.hero-badge {
  position: absolute;
  left: -30px; bottom: 52px;
  background: var(--cream);
  color: var(--text);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, .55);
  animation: floaty 5.5s ease-in-out infinite alternate;
}
@keyframes floaty {
  from { transform: translateY(-6px); }
  to   { transform: translateY(7px); }
}
.hero-badge-num {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 2.05rem;
  line-height: 1;
  color: var(--copper-deep);
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hero-badge-num span { font-size: .95rem; font-family: var(--font-mono); color: var(--muted); }
.hero-badge-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--muted);
}
.hero-stamp {
  position: absolute;
  top: -42px; right: -8px;
  animation: spin 26s linear infinite;
  opacity: .9;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stamp-text {
  font-family: var(--font-mono);
  font-size: 9.2px;
  letter-spacing: .18em;
  fill: rgba(246, 241, 232, .55);
}

.hero-scroll {
  position: absolute;
  left: clamp(20px, 3vw, 48px);
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fog-soft);
  transition: color .3s;
}
.hero-scroll:hover { color: var(--copper-2); }
.hero-scroll svg { animation: drip 2s var(--ease-io) infinite; }
@keyframes drip {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55%      { transform: translateY(7px); opacity: .35; }
}

/* ── 11. Marquee ────────────────────────────────────────────── */
.marquee {
  background: var(--ink);
  border-block: 1px solid rgba(246, 241, 232, .09);
  overflow: hidden;
  padding-block: 20px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-set {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 1.35rem;
  color: rgba(246, 241, 232, .7);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.marquee-set i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--copper);
  margin-inline: 26px;
  flex: none;
}

/* ── 12. Standard / stats ───────────────────────────────────── */
.standard-statement {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(1.85rem, 3.7vw, 3.3rem);
  line-height: 1.3;
  letter-spacing: -.01em;
  max-width: 1130px;
}
.standard-statement .sw { opacity: .13; transition: opacity .5s ease; transition-delay: var(--swd, 0s); }
.standard-statement.in .sw { opacity: 1; }
.standard-support {
  max-width: 62ch;
  margin-top: clamp(30px, 3.5vw, 44px);
  font-size: 1.02rem;
  line-height: 1.85;
  color: #49565F;
}
.standard-support em { font-family: var(--font-display); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(64px, 8vw, 110px);
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--line-l);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: 520;
  font-size: clamp(2.7rem, 4.2vw, 4rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.stat-num::after {
  content: '.';
  color: var(--copper);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.8;
  color: var(--muted);
}

/* ── 13. Services ───────────────────────────────────────────── */
.services { overflow: clip; }
.services-blueprint, .book-blueprint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(246, 241, 232, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 232, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.services .wrap, .book .wrap { position: relative; }

.service-list { border-top: 1px solid var(--line-d); }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr auto 58px;
  grid-template-areas: "idx body price arrow";
  align-items: center;
  gap: clamp(16px, 2.6vw, 40px);
  padding-block: clamp(24px, 3vw, 34px);
  border-bottom: 1px solid var(--line-d);
  isolation: isolate;
}
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(198, 122, 59, .1), transparent 65%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: -1;
}
.service-row:hover::before { opacity: 1; }

.service-index {
  grid-area: idx;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--copper);
  transition: transform .5s var(--ease);
}
.service-body { grid-area: body; }
.service-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 460;
  font-size: clamp(1.55rem, 2.9vw, 2.35rem);
  line-height: 1.12;
  color: var(--cream);
  transition: transform .55s var(--ease), color .4s;
}
.service-desc {
  display: block;
  font-size: .86rem;
  line-height: 1.65;
  color: rgba(246, 241, 232, .52);
  max-width: 56ch;
  margin-top: 8px;
  transition: color .4s;
}
.service-price {
  grid-area: price;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--copper-3);
  border: 1px solid rgba(224, 154, 85, .4);
  padding: 9px 15px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .4s, color .4s, border-color .4s;
}
.service-arrow {
  grid-area: arrow;
  width: 50px; height: 50px;
  border: 1px solid var(--line-d);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease), transform .55s var(--ease);
}
@media (hover: hover) {
  .service-row:hover .service-name { transform: translateX(14px); color: var(--copper-3); }
  .service-row:hover .service-desc { color: var(--fog); }
  .service-row:hover .service-index { transform: rotate(90deg); }
  .service-row:hover .service-arrow {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--ink);
    transform: rotate(45deg);
  }
  .service-row:hover .service-price { background: rgba(224,154,85,.1); border-color: var(--copper-2); }
}

.service-note {
  margin-top: clamp(40px, 5vw, 60px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px dashed rgba(224, 154, 85, .38);
  border-radius: 16px;
  padding: 22px 26px;
  color: var(--fog);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 860px;
}
.service-note svg { flex: none; color: var(--copper-2); margin-top: 3px; }
.service-note strong { color: var(--copper-3); font-weight: 700; }

.service-preview {
  position: fixed;
  z-index: 950;
  width: min(310px, 26vw);
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.82) rotate(-5deg);
  transition: opacity .35s var(--ease), transform .5s var(--ease);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .7);
  border: 1px solid rgba(246, 241, 232, .16);
}
.service-preview.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-2.5deg);
}
.service-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ── 14. Process ────────────────────────────────────────────── */
.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.4vw, 52px);
  padding-top: clamp(36px, 4vw, 52px);
}
.process-list::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: rgba(19, 31, 41, .3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s var(--ease-io) .25s;
}
.process-list.in::before { transform: scaleX(1); }
.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--copper-deep);
  display: inline-block;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 18px 0 12px;
}
.process-step p {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--muted);
}

.founder {
  margin-top: clamp(80px, 10vw, 130px);
  display: grid;
  grid-template-columns: .44fr .56fr;
  gap: clamp(40px, 5.5vw, 84px);
  align-items: center;
}
.founder-figure {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-1.6deg);
  box-shadow: 18px 24px 0 -6px var(--cream-2);
  transition: transform .8s var(--ease);
}
.founder-figure:hover { transform: rotate(0deg); }
.founder-figure img { width: 100%; height: 112%; object-fit: cover; }
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 430;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  line-height: 1.42;
  letter-spacing: -.005em;
  color: var(--text);
}
.founder-quote::before {
  content: '“';
  display: block;
  font-size: 3.4rem;
  line-height: .6;
  color: var(--copper);
  margin-bottom: 18px;
}
.founder-name {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
.founder-name span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  letter-spacing: .1em;
}

/* ── 15. Work ───────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 34px);
}
.work-card {
  position: relative;
  display: block;
  border: 1px solid var(--line-d);
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-2);
  transition: border-color .5s var(--ease), transform .6s var(--ease);
}
.work-card-wide { grid-column: 1 / -1; }
.work-card figure { aspect-ratio: 16 / 10; overflow: hidden; }
.work-card-wide figure { aspect-ratio: 21 / 9; }
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.3s var(--ease);
}
@media (hover: hover) {
  .work-card:hover { border-color: rgba(224, 154, 85, .5); transform: translateY(-5px); }
  .work-card:hover img { transform: scale(1.08); }
}
.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 32, .94) 4%, rgba(8, 20, 32, .28) 42%, transparent 68%);
  pointer-events: none;
}
.work-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(8, 20, 32, .55);
  border: 1px solid rgba(246, 241, 232, .18);
  backdrop-filter: blur(8px);
  padding: 8px 13px;
  border-radius: 999px;
}
.work-card-foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: clamp(20px, 2.6vw, 30px);
}
.work-card-foot h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--cream);
  margin-bottom: 8px;
}
.work-card-foot p {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  line-height: 1.7;
  color: var(--fog);
  text-transform: uppercase;
  max-width: 60ch;
}
.work-duration {
  flex: none;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--copper-3);
  border: 1px solid rgba(224, 154, 85, .42);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  background: rgba(8, 20, 32, .35);
  backdrop-filter: blur(6px);
}

/* ── 16. Reviews ────────────────────────────────────────────── */
.reviews-agg { text-align: right; padding-bottom: 8px; }
.reviews-agg-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 2.9rem;
  line-height: 1;
  color: var(--copper-deep);
  margin-bottom: 8px;
}
.reviews-agg-meta {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.stars { display: inline-flex; gap: 2.5px; color: var(--copper); }

.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .75s var(--ease-io);
  will-change: transform;
}
.carousel.dragging .carousel-track { transition: none; }
.review { flex: 0 0 100%; padding-right: clamp(0px, 6vw, 90px); }
.review p {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.55rem, 2.9vw, 2.5rem);
  line-height: 1.36;
  letter-spacing: -.008em;
  max-width: 960px;
}
.review footer {
  margin-top: clamp(26px, 3vw, 40px);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.review-name { font-weight: 700; font-size: .98rem; }
.review-loc {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
.carousel-foot {
  margin-top: clamp(36px, 4vw, 52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.carousel-count {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  color: var(--muted);
}
.carousel-arrows { display: flex; gap: 12px; }
.carousel-btn {
  width: 54px; height: 54px;
  border: 1px solid var(--line-l);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .3s var(--ease);
}
.carousel-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.carousel-btn:active { transform: scale(.93); }

/* ── 17. FAQ ────────────────────────────────────────────────── */
.faq { padding-top: 0; }
.faq-list { border-top: 1px solid var(--line-l); }
.faq-item { border-bottom: 1px solid var(--line-l); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: clamp(22px, 2.6vw, 30px) 4px;
  font-family: var(--font-display);
  font-weight: 490;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.3;
  color: var(--text);
  transition: color .35s;
}
.faq-q:hover { color: var(--copper-deep); }
.faq-icon {
  position: relative;
  flex: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line-l);
  border-radius: 50%;
  transition: transform .55s var(--ease), background .4s, border-color .4s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.6px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .5s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--ink); border-color: var(--ink); color: var(--cream); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-io);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  min-height: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: .97rem;
  max-width: 66ch;
  padding-right: 40px;
  transition: padding .55s var(--ease-io);
}
.faq-item.open .faq-a > p { padding-bottom: clamp(24px, 2.6vw, 32px); }

/* ── 18. CTA band ───────────────────────────────────────────── */
.cta {
  position: relative;
  background: linear-gradient(165deg, #12314A 0%, var(--navy) 58%);
  color: var(--cream);
  padding-block: clamp(104px, 13vw, 190px);
  overflow: clip;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 42% 46% at 50% 46%, rgba(198, 122, 59, .22), transparent 72%);
  pointer-events: none;
}
.cta-ripple { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.cta-ripple span {
  position: absolute;
  width: 620px; height: 620px;
  border: 1px solid rgba(232, 176, 120, .35);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 7s var(--ease-io) infinite;
}
.cta-ripple span:nth-child(2) { animation-delay: 2.33s; }
.cta-ripple span:nth-child(3) { animation-delay: 4.66s; }
@keyframes ripple {
  0%   { transform: scale(.24); opacity: 0; }
  12%  { opacity: .8; }
  68%  { opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.cta-inner { position: relative; }
.cta-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: 470;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -.018em;
  margin-bottom: 24px;
}
.cta-sub {
  color: var(--fog);
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 52ch;
  margin-inline: auto;
}
.cta-actions {
  margin-top: clamp(36px, 4.5vw, 54px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  flex-wrap: wrap;
}
.cta-phone {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  color: var(--cream);
  letter-spacing: -.01em;
  transition: color .35s;
  padding-bottom: 6px;
}
.cta-phone::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--copper-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s var(--ease);
}
.cta-phone:hover { color: var(--copper-3); }
.cta-phone:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 19. Book ───────────────────────────────────────────────── */
.book-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.book-blocks { display: grid; gap: clamp(26px, 3vw, 38px); margin-top: clamp(36px, 4vw, 52px); }
.book-block-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 10px;
}
.book-phone-row { display: flex; align-items: center; gap: 16px; }
.book-phone {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--cream);
  transition: color .3s;
  width: fit-content;
}
.book-phone:hover { color: var(--copper-3); }
.copy-btn {
  position: relative;
  flex: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-d);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--fog);
  transition: border-color .3s, color .3s, background .3s;
}
.copy-btn:hover { border-color: var(--copper); color: var(--copper-2); background: rgba(198, 122, 59, .08); }
.copy-tip {
  position: absolute;
  top: -34px; left: 50%;
  transform: translate(-50%, 6px);
  background: var(--copper-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity .3s, transform .3s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.copy-btn.copied .copy-tip { opacity: 1; transform: translate(-50%, 0); }
.copy-btn.copied { border-color: var(--copper); color: var(--copper-2); }
.book-mail {
  font-size: 1.12rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(224, 154, 85, .5);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.book-mail:hover { color: var(--copper-3); border-color: var(--copper-3); }
.book-addr { color: var(--fog); line-height: 1.8; font-size: .98rem; }

.book-hours { margin-top: clamp(32px, 4vw, 46px); max-width: 430px; }
.book-hours .open-status { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.book-hours-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 4px; }
.book-hours table { width: 100%; }
.book-hours td {
  padding: 11px 0;
  border-bottom: 1px dashed var(--line-d);
  font-size: .92rem;
  color: var(--fog);
}
.book-hours td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--cream);
}

.book-area { margin-top: clamp(32px, 4vw, 46px); }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.area-tags li {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog);
  border: 1px solid var(--line-d);
  border-radius: 999px;
  padding: 8px 14px;
  transition: border-color .3s, color .3s;
}
.area-tags li:hover { border-color: var(--copper); color: var(--copper-2); }

/* form card */
.book-form-wrap { position: relative; }
.book-form, .form-success {
  background: var(--paper);
  color: var(--text);
  border-radius: 20px;
  padding: clamp(28px, 3.6vw, 46px);
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, .55);
}
.form-kicker {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
.form-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  line-height: 1.25;
  margin: 12px 0 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; border: 0; }
.field label, .field legend {
  display: block;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
  padding: 0;
}
.field-opt { text-transform: none; letter-spacing: .04em; opacity: .7; }
.field input[type="text"],
.field input[type="tel"],
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: .98rem;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(19, 31, 41, .16);
  border-radius: 11px;
  padding: 14px 16px;
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 104px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(19, 31, 41, .3); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(198, 122, 59, .16);
}
.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding-right: 44px; cursor: pointer; }
.select-wrap svg {
  position: absolute;
  right: 15px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}
.field-err {
  display: none;
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .06em;
  color: #B23A2D;
  margin-top: 7px;
}
.field.err .field-err { display: block; }
.field.err input { border-color: #B23A2D; box-shadow: 0 0 0 4px rgba(178, 58, 45, .1); }

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line-l);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background .35s, color .35s, border-color .35s;
}
.chip:hover span { border-color: var(--copper); color: var(--copper-deep); }
.chip input:checked + span { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.chip input:focus-visible + span { outline: 2px dashed var(--copper); outline-offset: 3px; }

.form-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .05em;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
}
.form-note a { color: var(--copper-deep); border-bottom: 1px solid rgba(154, 91, 39, .4); }

/* success state */
.form-success { text-align: center; padding-block: clamp(52px, 6vw, 72px); }
.form-success[hidden] { display: none; }
.success-ring {
  width: 76px; height: 76px;
  margin: 0 auto 26px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--copper-deep);
  animation: pop .6s var(--ease);
}
@keyframes pop {
  0% { transform: scale(.5); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.success-copy { max-width: 40ch; margin: 0 auto 14px; line-height: 1.75; color: var(--muted); }
.success-copy strong { color: var(--copper-deep); }
.success-meta { font-family: var(--font-mono); font-size: .66rem; color: var(--muted); margin-bottom: 28px; }
.success-meta a { color: var(--copper-deep); border-bottom: 1px solid rgba(154,91,39,.4); }

/* ── 20. Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--fog);
  padding-top: clamp(72px, 9vw, 120px);
  overflow: clip;
}
.footer-word {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: 600;
  font-size: clamp(2.6rem, 8.6vw, 8.2rem);
  line-height: 1;
  letter-spacing: .01em;
  user-select: none;
}
.footer-word span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 241, 232, .24);
  transition: color .45s var(--ease), transform .45s var(--ease), -webkit-text-stroke .45s;
  cursor: default;
}
.footer-word span:hover {
  color: var(--copper-2);
  -webkit-text-stroke: 1px transparent;
  transform: translateY(-8px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  margin-top: clamp(56px, 7vw, 84px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid rgba(246, 241, 232, .09);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-2);
  font-weight: 400;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  width: fit-content;
  font-size: .93rem;
  padding-block: 5px;
  color: var(--fog);
  transition: color .3s, transform .35s var(--ease);
}
.footer-col a:hover { color: var(--copper-3); transform: translateX(5px); }
.footer-col p { font-size: .93rem; line-height: 1.8; }
.footer-tag { max-width: 42ch; }
.footer-license {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog-soft);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(48px, 6vw, 72px);
  padding-block: 26px 34px;
  border-top: 1px solid rgba(246, 241, 232, .09);
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fog-soft);
}
.footer-credit { color: rgba(224, 154, 85, .65); }

/* ── 21. Reveal system ──────────────────────────────────────── */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ── 22. Responsive ─────────────────────────────────────────── */
@media (max-width: 1180px) {
  .hero-badge { left: -12px; }
}

@media (max-width: 1060px) {
  html { scroll-padding-top: 86px; }
  .hero { min-height: 0; padding-top: clamp(56px, 8vh, 84px); }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { justify-self: start; width: min(100%, 480px); }
  .hero-scroll { display: none; }
  .founder { grid-template-columns: 1fr; gap: 48px; }
  .founder-figure { max-width: 420px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .work-card-wide { grid-column: auto; }
  .work-card-wide figure { aspect-ratio: 16 / 10; }
  .book-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-preview { display: none; }
}

@media (max-width: 980px) {
  .nav, .header-tel { display: none; }
  .menu-toggle { display: block; }
}

@media (max-width: 600px) {
  .topbar-inner { justify-content: center; }
  .topbar-note { display: none; }
}

@media (max-width: 760px) {
  .hero-title { font-size: clamp(3rem, 13.5vw, 4.4rem); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { left: 8px; bottom: 22px; padding: 12px 16px; }
  .hero-badge-num { font-size: 1.65rem; }
  .hero-stamp { display: none; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 20px; }
  .service-row {
    grid-template-columns: auto 1fr 46px;
    grid-template-areas: "idx body arrow" "idx price arrow";
    row-gap: 12px;
  }
  .service-price { justify-self: start; }
  .service-arrow { width: 42px; height: 42px; }
  .process-list { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; gap: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .review { padding-right: 0; }
  .carousel-btn { width: 48px; height: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-word { flex-wrap: wrap; row-gap: 8px; }
  .to-top { right: 18px; bottom: 18px; width: 46px; height: 46px; }
}

/* ── 23. Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .hero-title .w > span { transform: none; }
  .standard-statement .sw { opacity: 1; }
  .process-list::before { transform: scaleX(1); }
  .marquee-track { animation: none; }
}
