/* Apatosaurus Landing Page — styles
   Two-tone, bold, playful. Built on the brand's color/type tokens. */

/* ---------- Tokens ---------- */
:root {
  --apato-orange:       #F5A833;
  --apato-orange-deep:  #E08F1A;
  --apato-orange-soft:  #FBC373;
  --apato-orange-pale:  #FCE6BB;
  --apato-ink:          #0E0E0E;
  --apato-bone:         #FBF7EE;
  --apato-bone-deep:    #F1EADC;

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px; --sp-10: 128px;

  --r-pill: 999px;

  /* Surface tokens — flipped by [data-scheme] */
  --bg:    var(--apato-bone);
  --fg:    var(--apato-ink);
  --accent: var(--apato-orange);
  --muted: rgba(14,14,14,0.62);
  --rule:  rgba(14,14,14,0.12);
  --card:  #FFFFFF;
}

body[data-scheme="ink"] {
  --bg: var(--apato-ink);
  --fg: #FFFFFF;
  --accent: var(--apato-orange);
  --muted: rgba(255,255,255,0.66);
  --rule: rgba(255,255,255,0.14);
  --card: #1A1A1A;
}
body[data-scheme="orange"] {
  --bg: var(--apato-orange);
  --fg: var(--apato-ink);
  --accent: var(--apato-ink);
  --muted: rgba(14,14,14,0.7);
  --rule: rgba(14,14,14,0.18);
  --card: #FFE7B6;
}
body[data-scheme="bone"] {
  --bg: var(--apato-bone);
  --fg: var(--apato-ink);
  --accent: var(--apato-orange);
  --muted: rgba(14,14,14,0.62);
  --rule: rgba(14,14,14,0.12);
  --card: #FFFFFF;
}

/* ---------- Fonts ---------- */
/* Inter (full weight range) + Libre Baskerville Italic via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Libre+Baskerville:ital@1&display=swap');

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 320ms ease, color 320ms ease;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--apato-orange); color: var(--apato-ink); }

em { font-family: 'Libre Baskerville', Georgia, serif; font-style: italic; font-weight: 400; }

/* Common */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-tick { color: var(--accent); font-size: 16px; line-height: 1; }
.eyebrow--invert { color: var(--accent); }

.t-h {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 12px 0 0;
}
.t-h em { letter-spacing: -0.02em; color: var(--apato-orange); }

/* Reveal default state */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

body[data-anim="off"] [data-reveal] {
  opacity: 1; transform: none; transition: none;
}
body[data-anim="low"] [data-reveal] { transition-duration: 500ms; }
body[data-anim="high"] [data-reveal] { transition-duration: 900ms; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: transparent;
  transition: background 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-mark {
  display: flex; align-items: center;
}
.nav-wordmark { width: auto; height: 57px; display: block; }
@media (max-width: 720px) {
  .nav-wordmark { height: 48px; }
}
.nav-links {
  display: flex; gap: 32px;
  font-weight: 500;
  font-size: 15px;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  color: var(--fg);
  opacity: 0.85;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 220ms ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--apato-ink);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  transition: background 180ms ease, transform 80ms ease;
  letter-spacing: -0.005em;
}
.nav-cta:hover { background: var(--apato-orange-deep); }
.nav-cta:active { transform: scale(0.97); }
body[data-scheme="orange"] .nav-cta { background: var(--apato-ink); color: var(--apato-orange); }
body[data-scheme="orange"] .nav-cta:hover { background: #000; }

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 32px 80px;
  min-height: 78vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  filter: grayscale(0.4) contrast(1.05);
  pointer-events: none;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.85) 100%),
    radial-gradient(ellipse 60% 60% at 30% 50%, transparent 30%, rgba(14,14,14,0.6) 100%);
  pointer-events: none;
}
body[data-scheme="orange"] .hero-bg-scrim { background:
    linear-gradient(180deg, rgba(245,168,51,0.5) 0%, rgba(245,168,51,0.85) 100%); }
body[data-scheme="bone"] .hero-bg-scrim { background:
    linear-gradient(180deg, rgba(251,247,238,0.7) 0%, rgba(251,247,238,0.92) 100%); }
.hero-dots {
  position: absolute; inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at center, var(--accent) 1.4px, transparent 1.6px);
  background-size: 28px 28px;
  opacity: 0.08;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: block;
}
.hero-text { max-width: 900px; }

.hero-h {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 12vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 14px 0 0;
  color: #FFFFFF;
}
.hero-h .line { display: block; }
.hero-h .line-serif em {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--apato-orange);
}

.hero-sub {
  margin: 28px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  max-width: 540px;
  color: var(--muted);
  font-weight: 500;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  transition: background 180ms ease, transform 80ms ease, color 180ms ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: var(--apato-ink);
}
.btn-primary:hover { background: var(--apato-orange-deep); }
body[data-scheme="orange"] .btn-primary { background: var(--apato-ink); color: var(--apato-orange); }
body[data-scheme="orange"] .btn-primary:hover { background: #000; }
.btn:active { transform: scale(0.97); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--fg);
  padding: 14px 24px 14px 18px;
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); }
.btn-play {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.btn-play::after {
  content: '';
  position: absolute; left: 8px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--apato-ink);
}

.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats b {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-badge-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge {
  position: relative;
  width: clamp(280px, 38vw, 480px);
  aspect-ratio: 1;
  z-index: 2;
  animation: badge-spin 60s linear infinite;
}
body[data-anim="off"] .hero-badge { animation: none; }
body[data-anim="low"] .hero-badge { animation-duration: 120s; }
body[data-anim="high"] .hero-badge { animation-duration: 30s; }

.hero-badge img { width: 100%; height: 100%; object-fit: contain; }
.hero-badge-shadow {
  position: absolute;
  inset: 8% 8% 8% 8%;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(60px);
  opacity: 0.30;
  z-index: 1;
}
@keyframes badge-spin { to { transform: rotate(360deg); } }

.hero-stamp {
  position: absolute;
  z-index: 3;
  bottom: 28px; right: 32px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.hero-stamp::before {
  content: ''; width: 28px; height: 1px; background: currentColor;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badge-wrap { order: -1; }
  .hero-badge { width: 50vw; max-width: 320px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero { min-height: auto; padding-top: 32px; padding-bottom: 56px; }
  .hero-stamp { display: none; }
}

/* ---------- Logos marquee ---------- */
.logos {
  background: var(--apato-ink);
  color: var(--apato-bone);
  padding: 28px 0;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
  overflow: hidden;
}
body[data-scheme="orange"] .logos { background: var(--apato-ink); color: var(--apato-orange); }
body[data-scheme="bone"]   .logos { background: var(--apato-ink); color: var(--apato-bone); }

.logos-eyebrow {
  display: flex; justify-content: center; gap: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--apato-orange);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.logos-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.logos-track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 60s linear infinite;
  gap: 0;
}
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
body[data-anim="off"] .logos-track { animation: none; }

.logo-cell {
  flex: 0 0 auto;
  padding: 0 36px;
  display: flex; align-items: center; gap: 36px;
}
.logo-cell::after {
  content: '✦';
  color: var(--apato-orange);
  font-size: 14px;
  opacity: 0.6;
}
.logo-cell:last-child::after { display: none; }
.logo-cell img {
  height: clamp(28px, 3.2vw, 44px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 220ms ease;
}
.logo-cell:hover img { opacity: 1; }
@media (max-width: 720px) {
  .logo-cell { padding: 0 24px; gap: 24px; }
  .logo-cell img { height: 26px; max-width: 130px; }
}

/* ---------- Showreel ---------- */
.reel {
  padding: 64px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.reel-frame {
  position: relative;
}
.reel-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%),
    url('assets/reel-thumb.jpg') center/cover no-repeat,
    var(--apato-ink);
  background-blend-mode: normal;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--accent);
  border: 3px solid var(--apato-ink);
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease;
}
.reel-video:hover { transform: translate(-4px, -4px); box-shadow: 16px 16px 0 var(--accent); }
.reel-video::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,168,51,0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(245,168,51,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.reel-video::after {
  /* film grain */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.04) 1px, transparent 1.4px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.5;
}
.reel-play {
  width: 180px; height: 180px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  filter: drop-shadow(0 6px 0 rgba(0,0,0,0.4));
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reel-play svg, .reel-play .play-glyph { width: 100%; height: 100%; }
.reel-play:hover { transform: scale(1.06); }
.reel-play:active { transform: scale(0.97); }
.reel-meta {
  position: absolute;
  bottom: 18px; left: 22px; right: 22px;
  display: flex; justify-content: space-between;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--apato-bone);
  font-weight: 600;
  text-transform: uppercase;
}
.reel-tag { background: var(--apato-orange); color: var(--apato-ink); padding: 6px 12px; border-radius: 999px; }
.reel-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 3px solid var(--apato-orange);
  z-index: 2;
}
.reel-corner-tl { top: 16px; left: 16px;  border-right: 0; border-bottom: 0; }
.reel-corner-tr { top: 16px; right: 16px; border-left: 0;  border-bottom: 0; }
.reel-corner-bl { bottom: 56px; left: 16px;  border-right: 0; border-top: 0; }
.reel-corner-br { bottom: 56px; right: 16px; border-left: 0;  border-top: 0; }

.reel-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 4;
}
.reel-video.is-playing .reel-play,
.reel-video.is-playing .reel-meta,
.reel-video.is-playing .reel-corner,
.reel-video.is-playing::before,
.reel-video.is-playing::after { display: none; }
.reel-video.is-playing { box-shadow: 12px 12px 0 var(--accent); transform: none; cursor: default; }

/* ---------- Work / Portfolio ---------- */
.work {
  padding: 96px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.work-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.work-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: gap 180ms ease;
}
.work-all:hover { gap: 14px; }

.work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.work-tab {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
  background: transparent;
  border: 2px solid var(--rule);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.work-tab:hover { border-color: var(--accent); }
.work-tab.is-active {
  background: var(--accent);
  color: var(--apato-ink);
  border-color: var(--accent);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-thumb { aspect-ratio: 16 / 9; }

@media (max-width: 980px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
}

.work-cell { display: block; color: inherit; }
.work-cell.is-hidden { display: none; }
.work-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--apato-ink);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid var(--apato-ink);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 180ms ease;
}
.work-thumb:hover { transform: translateY(-3px); }
.work-cell.is-feature .work-thumb { border-color: var(--accent); }
.work-thumb::after {
  /* bottom-up vignette so overlay text stays readable on any thumbnail */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.work-play {
  position: absolute;
  z-index: 3;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--apato-orange);
  border: 3px solid var(--apato-ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.work-play::after {
  content: '';
  width: 0; height: 0;
  border: 10px solid transparent;
  border-left-color: var(--apato-ink);
  margin-left: 5px;
}
.work-thumb:hover .work-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.work-overlay {
  position: absolute;
  z-index: 3;
  left: 18px; right: 18px; bottom: 16px;
  color: var(--apato-bone);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}
.work-tag {
  background: var(--apato-bone);
  color: var(--apato-ink);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.work-title { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; line-height: 1.05; }
.work-title b { font-size: clamp(16px, 1.5vw, 22px); font-weight: 800; letter-spacing: -0.01em; }
.work-title i { font-family: 'Libre Baskerville', serif; font-size: 13px; opacity: 0.85; }

/* ---------- What we make ---------- */
/* Full-bleed split section with B&W stock backgrounds. */
.make {
  padding: 0;
  margin: 0;
  max-width: none;
}
.make-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px 56px;
}
.make-sub { color: var(--muted); margin-top: 18px; font-size: 18px; max-width: 560px; }

.make-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 880px) {
  .make-cards { grid-template-columns: 1fr; }
}

.make-card {
  position: relative;
  padding: 64px 56px 72px;
  display: flex; flex-direction: column;
  gap: 28px;
  overflow: hidden;
  isolation: isolate;
  min-height: 640px;
}
.make-card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  transition: transform 600ms ease;
}
.make-card:hover .make-card-bg { transform: scale(1.04); }
.make-card-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.make-card--orange .make-card-scrim {
  background: linear-gradient(180deg, rgba(245,168,51,0.78) 0%, rgba(245,168,51,0.92) 100%);
  mix-blend-mode: normal;
}
.make-card--orange { color: var(--apato-ink); }
.make-card--ink .make-card-scrim {
  background: linear-gradient(180deg, rgba(14,14,14,0.78) 0%, rgba(14,14,14,0.94) 100%);
}
.make-card--ink { color: var(--apato-bone); }

.make-card header { display: flex; flex-direction: column; gap: 14px; }
.make-stamp {
  display: inline-flex; align-items: baseline; gap: 12px;
  border: 3px solid var(--apato-ink);
  padding: 10px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.14);
  align-self: flex-start;
  letter-spacing: -0.01em;
}
.make-stamp span { font-size: 11px; letter-spacing: 0.2em; font-weight: 700; }
.make-stamp strong { font-size: 22px; font-weight: 900; }
.make-stamp--invert { border-color: var(--apato-orange); background: rgba(245,168,51,0.08); color: var(--apato-orange); }
.make-stamp--invert strong { color: var(--apato-orange); }

.make-card-kicker {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
  margin: 0;
  max-width: 420px;
}

.make-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 0;
}
.make-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  border-top: 1px solid currentColor;
  cursor: pointer;
  position: relative;
  transition: padding-left 200ms ease;
}
.make-list li:last-child { border-bottom: 1px solid currentColor; }
.make-card--orange .make-list li { border-top-color: rgba(14,14,14,0.35); }
.make-card--orange .make-list li:last-child { border-bottom-color: rgba(14,14,14,0.35); }
.make-card--ink .make-list li { border-top-color: rgba(245,168,51,0.32); }
.make-card--ink .make-list li:last-child { border-bottom-color: rgba(245,168,51,0.32); }
.make-list li:hover { padding-left: 12px; }

.ico-wrap {
  display: flex;
  flex-shrink: 0;
  opacity: 0.85;
}

.make-item h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.make-item p {
  margin: 4px 0 0;
  font-size: 14.5px;
  opacity: 0.82;
  line-height: 1.4;
}

.make-arrow {
  font-size: 22px;
  font-weight: 700;
  transition: transform 220ms ease;
  opacity: 0.6;
}
.make-list li:hover .make-arrow { transform: translateX(6px); opacity: 1; }

/* ---------- CTA ---------- */
.cta {
  background: var(--apato-ink);
  color: var(--apato-bone);
  padding: 96px 32px;
  margin-top: 32px;
}
body[data-scheme="orange"] .cta { background: var(--apato-ink); }
.cta-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
}

.cta-h {
  color: var(--apato-bone);
  font-size: clamp(56px, 7vw, 110px);
}
.cta-h em { color: var(--apato-orange); }
.cta-sub { color: rgba(255,255,255,0.7); font-size: 18px; margin-top: 18px; max-width: 480px; }

.cta-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.cta-bullets li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.86); }
.cta-bullets .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--apato-orange); }

.cta-form {
  background: var(--apato-bone);
  color: var(--apato-ink);
  border-radius: 14px;
  border: 3px solid var(--apato-orange);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  box-shadow: 8px 8px 0 var(--apato-orange);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(14,14,14,0.55);
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 2px solid var(--apato-ink);
  background: #FFFFFF;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--apato-ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--apato-orange);
  box-shadow: 0 0 0 3px rgba(245,168,51,0.4);
}
.btn-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
  justify-content: center;
  background: var(--apato-ink);
  color: var(--apato-orange);
  padding: 18px 28px;
  font-size: 16px;
}
.btn-submit:hover { background: #000; }

.recaptcha-wrap { display: flex; justify-content: center; margin-top: 4px; }
.cta-error {
  color: #B00020;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.cta-thanks {
  grid-column: 1 / -1;
  padding: 40px 8px;
  text-align: center;
}
.cta-thanks strong { font-size: 32px; font-weight: 900; letter-spacing: -0.02em; display: block; }
.cta-thanks p { color: rgba(14,14,14,0.7); margin-top: 8px; }

@media (max-width: 880px) {
  .cta { padding: 64px 24px 80px; margin-top: 0; }
  .cta-h { font-size: clamp(44px, 11vw, 72px); }
  .cta-form {
    padding: 22px;
    box-shadow: 5px 5px 0 var(--apato-orange);
    margin-right: 5px;
    gap: 14px 14px;
  }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 10px;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35),
              0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 220ms ease;
}
.wa-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-ico svg { width: 28px; height: 28px; fill: #25D366; }
.wa-label {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  padding-right: 4px;
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45),
              0 6px 14px rgba(0, 0, 0, 0.3);
}
.wa-fab:active { transform: translateY(0) scale(0.97); }
@media (max-width: 600px) {
  .wa-fab { right: 16px; bottom: 16px; padding: 8px 18px 8px 8px; gap: 10px; }
  .wa-ico { width: 40px; height: 40px; }
  .wa-ico svg { width: 25px; height: 25px; }
  .wa-label { font-size: 15px; }
}

/* ---------- Footer ---------- */
.foot {
  background: var(--apato-ink);
  color: var(--apato-bone);
  padding: 72px 32px 120px;
  border-top: 1px solid #1f1f1f;
}
.foot-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  flex-wrap: wrap;
}
.foot-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-mark {
  height: clamp(44px, 6vw, 72px);
  width: auto;
}
.foot-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
}
.foot-links a { opacity: 0.8; transition: opacity 180ms ease, color 180ms ease; }
.foot-links a:hover { opacity: 1; color: var(--apato-orange); }

.foot-meta {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.foot-meta a { color: var(--apato-orange); border-bottom: 1px solid currentColor; }

.foot-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.foot-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  transition: background 180ms ease, border-color 180ms ease;
}
.foot-social a:hover { background: var(--apato-orange); border-color: var(--apato-orange); }
.foot-social svg { width: 18px; height: 18px; fill: var(--apato-bone); }
.foot-social a:hover svg { fill: var(--apato-ink); }

@media (max-width: 600px) {
  .foot { padding: 56px 24px 110px; }
  .foot-inner { gap: 28px; }
}
