/* palette: bg=#E9E8E4 fg=#1A1A18 accent=#3B5266 */
/* fonts: display="Shippori Mincho" body="Zen Kaku Gothic New" mono="Space Mono" */

:root {
  --bg: #E9E8E4;
  --bg-alt: #DEDCD6;
  --bg-paper: #F1F0EC;
  --fg: #1A1A18;
  --fg-soft: #33322E;
  --muted: #79766D;
  --accent: #3B5266;
  --accent-deep: #29394A;
  --border: rgba(26, 26, 24, 0.14);
  --border-soft: rgba(26, 26, 24, 0.08);

  --serif: 'Shippori Mincho', ui-serif, Georgia, serif;
  --sans: 'Zen Kaku Gothic New', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad: clamp(80px, 12vw, 160px);
}

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

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: var(--pad) 0; }
.section--tight { padding: clamp(56px, 8vw, 104px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--fg);
  opacity: 0.55;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-title em { font-style: italic; color: var(--accent); }

.lede {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.78;
  color: var(--fg-soft);
  max-width: 62ch;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(233, 232, 228, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 1px 30px -12px rgba(0, 0, 0, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.brand sup { font-family: var(--mono); font-size: 9px; top: -0.9em; color: var(--muted); }

.nav { display: none; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--fg); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__right { display: flex; align-items: center; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 9999px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg-paper);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg-paper); border-color: var(--fg); }
.btn--sm { padding: 10px 20px; }
.header .btn { display: none; }
@media (min-width: 620px) { .header .btn { display: inline-flex; } }

.link-arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  transition: gap 0.35s var(--ease), border-color 0.35s var(--ease);
}
.link-arrow span { transition: transform 0.35s var(--ease); }
.link-arrow:hover { gap: 15px; border-color: var(--fg); }
.link-arrow:hover span { transform: translateX(3px); }

/* ---------- mobile menu ---------- */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: flex-end;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block; height: 1.5px; width: 24px;
  background: var(--fg);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}
.menu-toggle span:nth-child(2) { width: 17px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu__meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 2;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(48px, 7vw, 88px);
  padding-top: 40px;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.35fr 1fr; align-items: end; gap: 56px; }
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__side { max-width: 40ch; }
.hero__side p {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0 0 28px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.9;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(233,232,228,0.55) 0%, rgba(233,232,228,0.15) 42%, rgba(233,232,228,0.85) 100%);
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero__ticker {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__ticker span { display: inline-flex; align-items: center; gap: 10px; }
.hero__ticker span::before { content: "／"; color: var(--accent); }

/* ---------- lede / intro ---------- */
.intro__grid { display: grid; gap: 40px; }
@media (min-width: 860px) { .intro__grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.intro__big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
}
.intro__body p { margin: 0 0 22px; }
.intro__body p:last-child { margin-bottom: 0; }

/* ---------- services ---------- */
.services { display: grid; gap: 0; margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--border); }
.service {
  display: grid;
  gap: 18px;
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.45s var(--ease);
}
@media (min-width: 820px) {
  .service { grid-template-columns: 90px 1fr 1.1fr; align-items: start; gap: 40px; }
  .service:hover { padding-left: 18px; }
}
.service__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); padding-top: 8px; }
.service__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.service__title small { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.service__desc { color: var(--fg-soft); font-size: 16px; line-height: 1.72; margin: 0; }

/* ---------- showcase image band ---------- */
.showcase { position: relative; }
.showcase__media {
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.showcase__cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- manifesto (dark band) ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg);
}
.manifesto .container { text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: italic; color: #9DB3C4; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}
.manifesto__by {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 40px;
}

/* ---------- work / cases ---------- */
.work__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(40px, 5vw, 64px); }
.work-grid { display: grid; gap: clamp(32px, 4vw, 48px); }
@media (min-width: 760px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-card { display: block; }
.work-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
}
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 20px; }
.work-card__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: -0.01em; margin: 0; }
.work-card__cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 6px 0 0; }
.work-card__idx { font-family: var(--mono); font-size: 12px; color: var(--accent); }

/* ---------- stats ---------- */
.stats { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 680px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: clamp(32px, 4vw, 52px) clamp(20px, 3vw, 32px); }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.02em; line-height: 1; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }

/* ---------- principles / process ---------- */
.principles { display: grid; gap: clamp(24px, 3vw, 40px); margin-top: clamp(48px, 6vw, 72px); }
@media (min-width: 760px) { .principles { grid-template-columns: repeat(3, 1fr); } }
.principle { border-top: 1px solid var(--fg); padding-top: 24px; }
.principle__num { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.principle__title { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; margin: 16px 0 12px; letter-spacing: -0.01em; }
.principle__desc { font-size: 15px; line-height: 1.7; color: var(--fg-soft); margin: 0; }

/* ---------- team / studio (text-only) ---------- */
.people { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: clamp(40px, 5vw, 64px); }
@media (min-width: 680px) { .people { grid-template-columns: repeat(2, 1fr); } }
.person { background: var(--bg); padding: clamp(28px, 3.5vw, 44px); display: flex; gap: 22px; align-items: flex-start; }
.avatar {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--bg-paper);
  letter-spacing: 0.02em;
}
.person__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin: 0; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 6px 0 12px; }
.person__bio { font-size: 15px; line-height: 1.68; color: var(--fg-soft); margin: 0; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--border); margin-top: clamp(40px, 5vw, 64px); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: clamp(24px, 3vw, 34px) 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.faq__icon { flex: none; font-family: var(--mono); font-size: 20px; color: var(--accent); transition: transform 0.4s var(--ease); }
.faq__item[data-open="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), padding 0.4s var(--ease);
  opacity: 0;
}
.faq__item[data-open="true"] .faq__a { max-height: 340px; opacity: 1; padding-bottom: clamp(24px, 3vw, 34px); }
.faq__a p { margin: 0; max-width: 68ch; color: var(--fg-soft); font-size: 16px; line-height: 1.75; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.cta-band__title em { font-style: italic; color: var(--accent); }
.cta-band__sub { max-width: 46ch; margin: 0 auto 40px; color: var(--fg-soft); }

/* ---------- contact form ---------- */
.contact__grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 0.85fr 1.15fr; gap: 72px; } }
.contact__info dl { margin: 0; }
.contact__info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 28px; }
.contact__info dd { margin: 8px 0 0; font-size: 17px; line-height: 1.6; }
.contact__info dd a { border-bottom: 1px solid var(--border); }

.form { display: grid; gap: 24px; }
.field { display: grid; gap: 10px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--fg);
  padding: 12px 0;
  transition: border-color 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.form__row { display: grid; gap: 24px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form__note { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- footer ---------- */
.footer { background: var(--fg); color: var(--bg); padding: clamp(64px, 9vw, 120px) 0 40px; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; } }
.footer__brand { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.01em; line-height: 1; }
.footer__tag { color: rgba(255,255,255,0.6); max-width: 34ch; margin: 20px 0 0; font-size: 15px; line-height: 1.7; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 20px; font-weight: 400; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.82); font-size: 15px; line-height: 2.1; margin: 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.7); }
.footer__bottom a:hover { color: #fff; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(56px, 8vw, 96px); border-bottom: 1px solid var(--border); }
.page-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
}
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__sub { max-width: 56ch; margin: 28px 0 0; color: var(--fg-soft); font-size: clamp(17px, 2vw, 19px); }

/* ---------- legal ---------- */
.legal { max-width: 760px; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; margin: 48px 0 16px; }
.legal h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; margin: 32px 0 12px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.78; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 10px; }
.legal strong { color: var(--fg); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-paper); padding: 32px 36px; max-width: 480px; border-radius: 4px; box-shadow: 0 20px 60px -12px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin: 0 0 12px; letter-spacing: -0.01em; }
.cookie-popup__card p { font-size: 14px; line-height: 1.65; color: var(--fg-soft); margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 9999px; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg-paper); border-color: var(--fg); }

/* utilities */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
