/* ============================================================
   RODNEY SILVA · ROD7 — Site institucional
   Direção: galeria contemporânea (museu, foco total na obra)
   Público: high-ticket, colecionadores, marcas premium
   Tipografia: Newsreader (display) + Inter Tight (sans) + JetBrains Mono
   Paleta: navy/sage/teal — refinada
============================================================ */

:root {
  /* Color tokens */
  --ink:        #000324;
  --ink-2:      #0a1432;
  --ink-3:      #1c2e4e;
  --bone:       #e8e6dd;
  --bone-2:     #d6d3c6;
  --bone-3:     #b7baaf;
  --line:       rgba(255,255,255,0.10);
  --line-2:     rgba(255,255,255,0.18);
  --line-l:     rgba(0,3,36,0.10);
  --line-l2:    rgba(0,3,36,0.20);
  --rust:       #1e5155;
  --rust-2:     #2a6b6f;
  --rust-3:     #3b8489;
  --gold:       #c9a96a;
  --muted:      #5a6770;
  --muted-d:    #7a8597;
  --bg:         var(--bone);
  --fg:         var(--ink);

  /* Type */
  --display:    "Newsreader", "Tiempos", "Bodoni Moda", Didot, serif;
  --sans:       "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --pad-x:      clamp(20px, 5vw, 80px);
  --gut:        clamp(14px, 1.4vw, 22px);
  --max:        1680px;

  /* Motion */
  --ease:       cubic-bezier(.7, 0, .2, 1);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
}

[data-theme="dark"] {
  --bg:         var(--ink);
  --fg:         var(--bone);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .6s var(--ease), color .6s var(--ease);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--rust); color: var(--bone); }

/* visually hidden but readable by Google and screen readers
   (a11yproject "visually-hidden" pattern, with !important to defeat
   inheritance from heavily-styled parents like .section__title) */
.sr-only,
.sr-only * {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  font-size: 1px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  pointer-events: none !important;
}

/* ============================================================
   CUSTOM CURSOR
============================================================ */
.cursor {
  position: fixed; left: 0; top: 0;
  pointer-events: none; z-index: 9998;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--rust);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), background .25s, opacity .25s;
  opacity: 0;
}
.cursor.is-ready { opacity: 1; }
.cursor.is-hover {
  width: 64px; height: 64px;
  background: transparent;
  border: 1px solid var(--bone);
  mix-blend-mode: difference;
}
.cursor.is-zoom {
  width: 84px; height: 84px;
  background: var(--rust);
  mix-blend-mode: normal;
}
.cursor__label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .26em;
  color: var(--bone);
  opacity: 0;
  transition: opacity .25s;
  text-transform: uppercase;
}
.cursor.is-zoom .cursor__label { opacity: 1; }
@media (hover: none), (max-width: 760px) {
  .cursor { display: none; }
}

/* ============================================================
   GRAIN OVERLAY
============================================================ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .07; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
}

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink); color: var(--bone);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
.preloader.is-out { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; width: min(560px, 84vw); }
.preloader__row {
  display: flex; align-items: baseline; justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 10vw, 120px);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 36px;
}
.preloader__row span:nth-child(2) {
  font-style: italic;
  color: var(--rust-3);
}
.preloader__bar {
  height: 14px;
  background: transparent;
  position: relative;
  overflow: visible;
}
/* faint guide line behind the brush stroke (gives sense of "track") */
.preloader__bar::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(232,230,221,.10);
  transform: translateY(-50%);
}
.preloader__bar span {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0;
  /* soft edges so the displacement filter has something to warp organically */
  background: linear-gradient(90deg,
    transparent 0%,
    var(--bone) 4%,
    var(--bone) 94%,
    rgba(232,230,221,.85) 99%,
    transparent 100%);
  /* hand-painted brush texture */
  filter: url(#brush-stroke);
  animation: load 1.8s cubic-bezier(.65,.05,.35,1) forwards;
  will-change: width;
}
@keyframes load { to { width: 100%; } }

/* the brush itself — sibling of the painted span so the displacement filter
   doesn't warp it. moves left-to-right in sync with the load animation. */
.preloader__brush {
  position: absolute;
  left: 0;
  top: 50%;
  width: 56px;
  height: 112px;
  transform-origin: 50% 92%;
  transform: translate(-30%, -88%) rotate(28deg);
  animation: brush-move 1.8s cubic-bezier(.65,.05,.35,1) forwards;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.45));
}
.preloader__brush svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* tiny tremor so the brush feels held by a hand */
.preloader__brush svg {
  animation: brush-tremor 1.8s ease-in-out infinite;
}
@keyframes brush-move {
  to { left: 100%; }
}
@keyframes brush-tremor {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(-1px) rotate(-.6deg); }
  50%      { transform: translateY(.5px) rotate(.4deg); }
  75%      { transform: translateY(-.5px) rotate(-.3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__brush svg { animation: none; }
}
.preloader__meta {
  margin-top: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .3em;
  color: var(--muted-d);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--pad-x);
  color: var(--bone);
  transition: background .4s var(--ease), padding .4s var(--ease), color .4s var(--ease);
}
.nav.is-stuck {
  background: rgba(0,3,36,.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.nav.is-stuck.is-light {
  background: rgba(232,230,221,.86);
  color: var(--ink);
  border-bottom-color: var(--line-l);
}
.nav__brand { display: inline-flex; align-items: baseline; gap: 12px; }
.nav__brand-mark {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -.02em;
  line-height: 1;
}
.nav__brand-mark em {
  font-style: italic;
  color: var(--rust-3);
}
.nav__brand-name { display: none; }

.nav__menu {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}
@media (min-width: 980px) { .nav__menu { display: flex; } }

.nav__menu a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .7;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.nav__menu a em {
  font-style: normal;
  color: var(--rust-3);
  font-size: 8px;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .3s, transform .3s;
}
.nav__menu a:hover,
.nav__menu a.is-active {
  opacity: 1;
  border-color: var(--rust-3);
  color: var(--rust-3);
}
.nav__menu a:hover em,
.nav__menu a.is-active em { opacity: 1; transform: none; }

.nav__right {
  justify-self: end;
  display: flex; align-items: center; gap: 14px;
}
.nav__cta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .35s, color .35s, border-color .35s;
  display: none;
}
@media (min-width: 980px) { .nav__cta { display: inline-flex; } }
.nav__cta:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--bone);
}

.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 8px;
  justify-self: end;
}
@media (min-width: 980px) { .nav__toggle { display: none; } }
.nav__toggle span {
  display: block; width: 24px; height: 1px; background: currentColor;
  transition: transform .3s, opacity .3s;
}

/* drawer */
.drawer {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink); color: var(--bone);
  padding: 24px var(--pad-x);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
.drawer__mark {
  font-family: var(--display); font-weight: 400; font-style: italic; font-size: 26px;
}
.drawer__mark em {
  font-style: italic;
  color: var(--rust-3);
}
.drawer__close {
  font-family: var(--display); font-size: 36px; line-height: 1; font-weight: 300;
}
.drawer__menu { display: flex; flex-direction: column; gap: 4px; }
.drawer__menu a {
  font-family: var(--display);
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 300;
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer__menu em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px; letter-spacing: .28em;
  color: var(--rust-3);
}
.drawer__foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .28em;
  color: var(--muted-d);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
}
.hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(80px, 12vh, 130px) var(--pad-x) clamp(40px, 6vh, 80px);
}
.hero__giant {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__giant span {
  font-family: var(--display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(420px, 90vw, 1400px);
  line-height: .8;
  letter-spacing: -.06em;
  color: rgba(59, 132, 137, .055);
  user-select: none;
}
.hero__portrait {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: center;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}
.hero__portrait img {
  display: block;
  max-height: min(74vh, 720px);
  width: auto;
  max-width: 520px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  clip-path: inset(100% 0 0 0);
  transform: scale(1.05);
  transition: clip-path 1.4s var(--ease-out), transform 1.6s var(--ease-out);
}
.hero.is-ready .hero__portrait img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}
.hero__title-wrap {
  position: relative; z-index: 2;
  justify-self: end;
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 22px;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rust-3);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
  display: inline-block;
}
.hero__title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(96px, 16vw, 260px);
  line-height: .86;
  letter-spacing: -.045em;
  margin: 0;
  color: var(--bone);
  display: flex; align-items: baseline; gap: 0;
}
.hero__title-7 {
  font-style: italic;
  font-weight: 300;
  color: var(--rust-3);
  margin-left: -.04em;
}
.hero__slogan {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--rust-3);
  margin: 0;
}
.hero__slogan em {
  font-style: italic;
}
.hero__sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--bone-2);
  max-width: 360px;
  margin: 0;
}

/* hero footer (meta strip across bottom) */
.hero__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px var(--pad-x) 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-d);
  position: relative; z-index: 2;
  background: var(--ink);
}
.hero__footer > div { display: flex; flex-direction: column; gap: 4px; }
.hero__footer strong {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--bone);
}
.hero__footer .hero__scroll {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rust-3);
}
.hero__scroll::after {
  content: "↓"; font-size: 14px;
  animation: nudge 2s infinite var(--ease);
}
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (max-width: 900px) {
  .hero__stage {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 110px;
    padding-bottom: 40px;
  }
  .hero__title-wrap { justify-self: start; align-items: flex-start; text-align: left; }
  .hero__portrait { justify-content: center; }
  .hero__portrait img { max-height: 46vh; max-width: 320px; }
  .hero__footer { grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* scramble target */
.scramble { display: inline-block; }

/* ============================================================
   STATEMENT
============================================================ */
.statement {
  background: var(--bg);
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line-l);
  position: relative;
}
@media (min-width: 760px) {
  .statement {
    grid-template-columns: 200px 1fr;
    align-items: start;
  }
}
.statement__index {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.statement__index span:last-child {
  color: var(--muted);
  font-size: 9px;
}
.statement__text {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.35;
  letter-spacing: -.01em;
  margin: 0;
  max-width: 1000px;
  color: var(--ink-2);
  text-wrap: pretty;
}
[data-theme="dark"] .statement__text { color: var(--bone); }
.statement__text em {
  font-style: italic;
  font-weight: 300;
  color: var(--rust);
}
[data-theme="dark"] .statement__text em { color: var(--rust-3); }

/* ============================================================
   SECTIONS
============================================================ */
.section {
  padding: clamp(90px, 14vh, 160px) 0;
  position: relative;
}
.section--light { background: var(--bg); color: var(--fg); }
.section--dark  { background: var(--ink); color: var(--bone); }

.section__container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: clamp(16px, 3vw, 40px);
  padding-bottom: 32px;
  margin-bottom: clamp(40px, 7vh, 80px);
  border-bottom: 1px solid var(--line-l);
}
.section--dark .section__head { border-bottom-color: var(--line); }

.section__num {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 8px;
}
.section--dark .section__num { color: var(--rust-3); }

.section__title {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 9vw, 140px);
  line-height: .92;
  letter-spacing: -.035em;
  margin: 0;
}
.section__tag {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  padding-bottom: 12px;
  display: none;
}
@media (min-width: 760px) { .section__tag { display: inline; } }
.section--dark .section__tag { color: var(--muted-d); }

/* ============================================================
   PROSE
============================================================ */
.prose {
  max-width: 880px;
  margin: 0 0 clamp(40px, 7vh, 80px);
  padding: 0;
}
.prose__lead {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.25;
  margin: 0 0 28px;
  letter-spacing: -.012em;
  text-wrap: balance;
}
.prose p {
  font-size: 16px;
  line-height: 1.78;
  margin: 0 0 18px;
  color: var(--ink-3);
  max-width: 64ch;
}
.section--dark .prose p { color: var(--bone-2); }
[data-theme="dark"] .section--light .prose p { color: var(--bone-2); }
.prose p em { font-style: italic; color: var(--rust); }
.section--dark .prose p em { color: var(--rust-3); }
.prose__lead em { color: var(--rust); }
.section--dark .prose__lead em { color: var(--rust-3); }

/* ============================================================
   BIO
============================================================ */
.bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
@media (min-width: 900px) {
  .bio { grid-template-columns: minmax(280px, 42%) 1fr; gap: clamp(40px, 6vw, 90px); }
}
.bio__portrait {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.bio__portrait img {
  width: 100%;
  filter: grayscale(20%) contrast(1.05);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.bio__portrait:hover img { filter: grayscale(0%) contrast(1.05); transform: scale(1.02); }
.bio__portrait::after {
  content: "";
  position: absolute;
  inset: auto -16px -16px auto;
  width: 50%; height: 50%;
  border-right: 1px solid var(--rust);
  border-bottom: 1px solid var(--rust);
  z-index: -1;
  pointer-events: none;
}
.bio__portrait figcaption {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

.bio__copy { max-width: 720px; }
.bio__lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  margin: 0 0 28px;
  letter-spacing: -.005em;
}
.bio__lead em { font-style: italic; color: var(--rust); }
.bio__copy p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-3);
  margin: 0 0 18px;
}
[data-theme="dark"] .bio__copy p { color: var(--bone-2); }
.bio__copy p em { font-style: italic; color: var(--rust); }
[data-theme="dark"] .bio__copy p em { color: var(--rust-3); }

.bio__facts {
  list-style: none; padding: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--line-l);
}
[data-theme="dark"] .bio__facts { border-top-color: var(--line); }
.bio__facts li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-l);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .bio__facts li { border-bottom-color: var(--line); }
.bio__facts li::before {
  content: "";
  position: absolute; left: 0; right: 100%; top: 0; bottom: 0;
  background: var(--rust);
  opacity: .04;
  transition: right .5s var(--ease);
}
.bio__facts li:hover::before { right: 0; }
.bio__facts span {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rust);
}
.bio__facts strong {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
}

/* ============================================================
   CONCEPT — featured / hero treatment
============================================================ */
.section--concept {
  background: var(--ink);
  color: var(--bone);
  padding-bottom: 0;
}
.concept-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 10vh, 120px);
}
@media (min-width: 1000px) {
  .concept-feature { grid-template-columns: 1fr 1fr; }
}
.concept-feature__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.concept-feature__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease);
}
.concept-feature__media:hover img { transform: scale(1); }
.concept-feature__media::before {
  content: "";
  position: absolute;
  inset: -20px -20px auto auto;
  width: 80px; height: 80px;
  background: var(--rust);
  z-index: -1;
}
.concept-feature__copy {
  display: flex; flex-direction: column;
  gap: 24px;
  max-width: 560px;
}
.concept-feature__pill {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--rust-3);
  display: inline-flex; gap: 10px; align-items: center;
}
.concept-feature__pill span {
  width: 28px; height: 1px; background: currentColor;
}
.concept-feature__title {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0;
}
.concept-feature__text {
  font-size: 16px; line-height: 1.78;
  color: var(--bone-2);
  margin: 0;
}
.concept-feature__text em { color: var(--rust-3); font-style: italic; }
.concept-feature__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.concept-feature__stats div {
  display: flex; flex-direction: column; gap: 4px;
}
.concept-feature__stats strong {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--bone);
}
.concept-feature__stats span {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted-d);
}

/* ============================================================
   CAROUSEL — generic
============================================================ */
.carousel {
  position: relative;
  padding: clamp(20px, 3vh, 40px) 0;
}
.carousel__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 20px;
  padding: 0 var(--pad-x);
  margin-bottom: 28px;
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.carousel__head h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  margin: 0;
  letter-spacing: -.01em;
}
.carousel__head .carousel__meta {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted-d);
  display: flex; align-items: center; gap: 14px;
}
.section--light .carousel__head .carousel__meta { color: var(--muted); }

.carousel__progress {
  flex: 0 0 80px;
  height: 1px;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.section--light .carousel__progress { background: rgba(0,3,36,.18); }
.carousel__progress span {
  position: absolute; left: 0; top: 0; height: 100%;
  width: 30%;
  background: var(--rust-3);
  transition: width .35s var(--ease), transform .35s var(--ease);
}

.carousel__viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  position: relative;
}
.carousel__viewport.is-grabbing { cursor: grabbing; }
.carousel__track {
  display: flex;
  gap: var(--gut);
  padding: 0 var(--pad-x);
  will-change: transform;
}
/* Uniform square gallery — same width for every variant.
   The original aspect ratio is preserved in the lightbox (object-fit: contain). */
.carousel__slide {
  flex: 0 0 auto;
  position: relative;
  width: clamp(280px, 36vw, 480px);
}
.carousel__slide--tall,
.carousel__slide--wide { width: clamp(280px, 36vw, 480px); }

.carousel__slide a {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.carousel__slide a img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: contrast(1.04);
  pointer-events: none;
}
/* Modifier classes kept for backward compat — all render as squares */
.carousel__slide--portrait a img,
.carousel__slide--square a img,
.carousel__slide--tall a img,
.carousel__slide--wide a img { aspect-ratio: 1/1; }
.carousel__slide a:hover img { transform: scale(1.04); }

.carousel__slide-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--bone);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.carousel__slide a:hover .carousel__slide-meta {
  opacity: 1; transform: none;
}
.carousel__slide-meta strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -.005em;
  text-transform: none;
}

.carousel__nav {
  display: flex; gap: 10px;
  margin-left: 14px;
}
.carousel__btn {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
  font-size: 18px;
  line-height: 1;
}
.carousel__btn:hover {
  background: var(--rust);
  color: var(--bone);
  border-color: var(--rust);
}
.carousel__btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.carousel__btn:active:not(:disabled) { transform: scale(.94); }

/* Marquee variant — auto-scrolling continuous */
.carousel--marquee .carousel__viewport { cursor: default; }
.carousel--marquee .carousel__track {
  animation: marquee var(--marquee-speed, 60s) linear infinite;
}
.carousel--marquee:hover .carousel__track { animation-play-state: paused; }
.carousel--marquee .carousel__nav { display: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Coverflow / stack — center is hero */
.carousel--coverflow .carousel__slide {
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}

/* ============================================================
   COVER (hero image inside section)
============================================================ */
.cover {
  position: relative;
  margin: 0 calc(-1 * var(--pad-x)) clamp(40px, 7vh, 80px);
  overflow: hidden;
  max-height: 78svh;
}
.cover img {
  width: 100%;
  max-height: 78svh;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.8s var(--ease);
}
.cover:hover img { transform: scale(1); }
.cover__caption {
  position: absolute;
  left: var(--pad-x); bottom: clamp(20px, 4vh, 36px);
  color: var(--bone);
  display: flex; flex-direction: column; gap: 6px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.cover__caption span {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--rust-3);
}
.cover__caption strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 7vw, 90px);
  line-height: .9;
  letter-spacing: -.025em;
}

/* ============================================================
   TAKI — manifesto
============================================================ */
.section--taki {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.section--taki::before {
  content: "TAKI";
  position: absolute;
  left: 50%; top: 30%;
  transform: translate(-50%, 0);
  font-family: var(--display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(280px, 50vw, 760px);
  letter-spacing: -.04em;
  color: rgba(59, 132, 137, .055);
  pointer-events: none;
  z-index: 0;
}
.taki {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
@media (min-width: 980px) {
  .taki { grid-template-columns: minmax(300px, 44%) 1fr; }
}
.taki__hero { margin: 0; overflow: hidden; }
.taki__hero img {
  width: 100%;
  border: 1px solid var(--line);
  transition: transform 1.4s var(--ease);
}
.taki__hero:hover img { transform: scale(1.02); }

.taki__copy { max-width: 660px; }
.taki__lead {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
  margin: 0 0 28px;
  color: var(--bone);
  letter-spacing: -.01em;
}
.taki__copy p {
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 18px;
  color: var(--bone-2);
}
.taki__copy p em {
  font-style: normal;
  font-weight: 500;
  color: var(--rust-3);
}
.taki__motto {
  margin-top: 40px !important;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--display) !important;
  font-style: italic;
  font-weight: 300;
}
.taki__motto strong {
  display: block;
  font-style: normal;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.015em;
  color: var(--bone);
  line-height: 1.2;
  margin-top: 6px;
}
.taki__motto strong:last-child { color: var(--rust-3); font-style: italic; }

/* ============================================================
   CONTACT
============================================================ */
.section--contact {
  padding-bottom: 0;
}
.contact { max-width: var(--max); margin: 0 auto; }

.contact__lead {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.18;
  margin: 0 0 clamp(20px, 3vh, 28px);
  max-width: 1100px;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.contact__lead em { font-style: italic; color: var(--rust); }

.contact__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 clamp(28px, 4vh, 40px);
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact__eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: currentColor;
}

.contact__subtext {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 720px;
  margin: 0 0 clamp(40px, 6vh, 60px);
}

.contact__location {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 clamp(36px, 6vh, 56px);
  padding: 14px 0;
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
  display: inline-block;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 16px);
  max-width: 600px;
}
.contact__direct-link {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
  width: fit-content;
  transition: color .35s var(--ease);
}
.contact__direct-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--rust);
  transition: right .5s var(--ease);
}
.contact__direct-link:hover {
  color: var(--rust);
}
.contact__direct-link:hover::after {
  right: 0;
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(40px, 6vh, 64px);
  padding: 20px 36px;
  background: var(--rust);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease), padding-right .35s var(--ease);
  box-shadow: 0 12px 28px rgba(30, 81, 85, .25);
  position: relative;
  overflow: hidden;
}
.contact__cta::after {
  content: "→";
  margin-left: 4px;
  transition: transform .4s var(--ease);
}
.contact__cta svg { width: 20px; height: 20px; fill: currentColor; }
.contact__cta:hover {
  background: var(--rust-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(30, 81, 85, .35);
}
.contact__cta:hover::after { transform: translateX(6px); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 50px);
  border-top: 1px solid var(--line-l);
  padding-top: 40px;
}
[data-theme="dark"] .contact__grid { border-top-color: var(--line); }
@media (min-width: 720px) { .contact__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .contact__grid { grid-template-columns: repeat(4, 1fr); } }
.contact__label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 12px;
}
[data-theme="dark"] .contact__label { color: var(--rust-3); }
.contact__big {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0;
  display: inline-block;
  position: relative;
  transition: color .3s;
}
a.contact__big::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--rust);
  transition: right .4s var(--ease);
}
a.contact__big:hover::after { right: 0; }
a.contact__big:hover { color: var(--rust); }
[data-theme="dark"] a.contact__big:hover { color: var(--rust-3); }
.contact__big--alt { font-style: normal; font-weight: 300; }
.contact__links {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  font-weight: 300;
  margin: 0;
}
.contact__links a {
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color .3s;
}
.contact__links a:hover { color: var(--rust); }

.footer {
  margin-top: clamp(80px, 12vh, 130px);
  border-top: 1px solid var(--line-l);
  padding: 28px 0;
}
[data-theme="dark"] .footer { border-top-color: var(--line); }
.footer__row {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
[data-theme="dark"] .footer__row { color: var(--muted-d); }
.footer__mark {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--ink);
}
[data-theme="dark"] .footer__mark { color: var(--bone); }
.footer__mark em {
  font-style: italic;
  color: var(--rust);
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,3,36,.97);
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(40px, 5vw, 80px);
}
.lightbox.is-open { display: flex; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure {
  margin: 0;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox__figure img {
  max-width: 100%; max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__figure figcaption {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted-d);
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: var(--bone);
  font-family: var(--display);
  font-weight: 200;
  font-size: 36px; line-height: 1;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: background .3s, border-color .3s, color .3s;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--rust); border-color: var(--rust);
}

/* ============================================================
   REVEAL
============================================================ */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* split-text fragments rise individually */
.split-line { display: inline-block; overflow: hidden; line-height: 1.1; }
.split-line__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.is-in .split-line__inner { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 10px 30px rgba(37,211,102,.38),
    0 2px 6px rgba(0,0,0,.18);
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float:hover {
  background: #1FAA52;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.22) inset,
    0 14px 36px rgba(37,211,102,.50),
    0 2px 6px rgba(0,0,0,.20);
}
.wa-float__icon { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.wa-float__label { display: inline-block; margin-left: 10px; }
@media (max-width: 640px) {
  .wa-float { width: 56px; padding: 0; justify-content: center; }
  .wa-float__label { display: none; }
}

/* ============================================================
   TWEAKS PANEL (minimal stand-in styles for control surface)
============================================================ */
.tweaks-fab {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1199;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  display: none;
  place-items: center;
  border: 1px solid var(--line-2);
  box-shadow: 0 10px 30px rgba(0,3,36,.25);
  transition: transform .3s var(--ease), background .3s;
}
.tweaks-fab:hover { background: var(--rust); transform: scale(1.05); }
.tweaks-fab svg { width: 20px; height: 20px; fill: currentColor; }
@media print { .wa-float, .tweaks-fab { display: none !important; } }

/* ============================================================
   MOBILE TUNING (≤768px)
   Focused responsive overrides to fix layout breaks on phones.
============================================================ */
@media (max-width: 768px) {
  /* slightly looser side padding so things don't kiss the edge */
  :root { --pad-x: clamp(18px, 6vw, 28px); }

  /* HERO --------------------------------------------------- */
  .hero__stage {
    padding-top: 100px;
    padding-bottom: 32px;
    gap: 22px;
  }
  .hero__giant span { font-size: clamp(280px, 110vw, 600px); }
  .hero__portrait img { max-height: 38vh; max-width: 280px; }
  .hero__title { font-size: clamp(80px, 26vw, 160px); }
  .hero__sub { font-size: 16px; max-width: 100%; }
  .hero__eyebrow { font-size: 9px; letter-spacing: .26em; }
  .hero__eyebrow::before { width: 18px; }
  .hero__footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px var(--pad-x);
  }
  .hero__footer strong { font-size: 11px; }
  .hero__footer > div { gap: 2px; }
  .hero__footer > div:nth-child(3),
  .hero__footer > div:nth-child(4) { display: none; }

  /* STATEMENT ---------------------------------------------- */
  .statement {
    padding-top: clamp(60px, 10vh, 90px);
    padding-bottom: clamp(60px, 10vh, 90px);
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .statement__text { font-size: clamp(20px, 5.4vw, 26px); line-height: 1.4; }

  /* SECTION HEADS ------------------------------------------ */
  .section { padding: clamp(60px, 10vh, 100px) 0; }
  .section__head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 22px;
    margin-bottom: 36px;
  }
  .section__num { padding-bottom: 0; }
  .section__title { font-size: clamp(44px, 13vw, 88px); line-height: 1; }
  .section__tag { display: none; }

  /* PROSE -------------------------------------------------- */
  .prose__lead { font-size: clamp(22px, 5.6vw, 28px); line-height: 1.3; }
  .prose p { font-size: 15px; line-height: 1.7; }

  /* BIO ---------------------------------------------------- */
  .bio { gap: 28px; }
  .bio__portrait::after { display: none; }
  .bio__lead { font-size: clamp(20px, 5vw, 24px); line-height: 1.35; }
  .bio__copy p { font-size: 15px; line-height: 1.7; }
  .bio__facts li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
  .bio__facts span { font-size: 9px; letter-spacing: .22em; }
  .bio__facts strong { font-size: 16px; }

  /* CONCEPT FEATURE ---------------------------------------- */
  .concept-feature__title { font-size: clamp(30px, 8vw, 44px); }
  .concept-feature__text { font-size: 15px; line-height: 1.7; }
  .concept-feature__media::before { width: 50px; height: 50px; inset: -10px -10px auto auto; }
  .concept-feature__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 18px;
  }
  .concept-feature__stats strong { font-size: clamp(20px, 5vw, 26px); }
  .concept-feature__stats span { font-size: 8px; letter-spacing: .2em; }

  /* CAROUSEL ----------------------------------------------- */
  .carousel__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .carousel__head h3 { font-size: 20px; }
  .carousel__slide { width: clamp(240px, 78vw, 320px); }
  .carousel__slide--tall { width: clamp(220px, 68vw, 280px); }
  .carousel__slide--wide { width: clamp(280px, 88vw, 360px); }
  .carousel__btn { width: 38px; height: 38px; font-size: 16px; }

  /* COVER -------------------------------------------------- */
  .cover { max-height: 56svh; }
  .cover img { max-height: 56svh; }
  .cover__caption strong { font-size: clamp(28px, 8vw, 48px); }
  .cover__caption span { font-size: 9px; letter-spacing: .26em; }

  /* TAKI --------------------------------------------------- */
  .section--taki::before { font-size: clamp(160px, 50vw, 320px); top: 36%; }
  .taki__lead { font-size: clamp(20px, 5.2vw, 26px); line-height: 1.35; }
  .taki__copy p { font-size: 15px; line-height: 1.75; }
  .taki__motto strong { font-size: clamp(20px, 5.4vw, 28px); }

  /* CONTACT ------------------------------------------------ */
  .contact__lead { font-size: clamp(24px, 6.6vw, 36px); line-height: 1.2; }
  .contact__eyebrow { font-size: 10px; letter-spacing: .26em; gap: 10px; }
  .contact__eyebrow::before { width: 22px; }
  .contact__subtext { font-size: 15px; line-height: 1.55; }
  .contact__location { font-size: 10px; letter-spacing: .24em; padding: 12px 0; }
  .contact__direct { gap: 10px; }
  .contact__direct-link { font-size: clamp(17px, 4.4vw, 20px); }

  /* FOOTER ------------------------------------------------- */
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 9px;
    letter-spacing: .22em;
  }
  .footer__row > span:nth-child(3) { display: none; }

  /* LIGHTBOX ----------------------------------------------- */
  .lightbox { padding: 60px 12px; }
  .lightbox__close { top: 14px; right: 14px; width: 44px; height: 44px; font-size: 28px; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }

  /* WHATSAPP FLOATING ------------------------------------- */
  .wa-float {
    height: 52px;
    right: 14px; bottom: 14px;
  }

  /* DRAWER (mobile menu) ----------------------------------- */
  .drawer {
    left: auto;
    width: min(86vw, 380px);
    padding: 18px var(--pad-x);
  }
  .drawer__menu a { font-size: clamp(24px, 6.4vw, 36px); padding: 12px 0; }
}

/* very small phones (≤380px): extra tightening */
@media (max-width: 380px) {
  :root { --pad-x: 16px; }
  .hero__title { font-size: clamp(70px, 24vw, 120px); }
  .section__title { font-size: clamp(38px, 12vw, 64px); }
  .concept-feature__stats { grid-template-columns: 1fr 1fr; }
  .concept-feature__stats div:last-child { grid-column: 1 / -1; }
}
