/* ─── Fonts ─────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/Figtree-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Variable";
  src: url("/assets/fonts/MinionVariableConcept-Roman.otf") format("opentype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("/assets/fonts/MyriadPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Tokens ─────────────────────────────────────────────────────────────────── */

:root {
  --bg:          #0d0d0d;
  --surface:     #171717;
  --text:        #f0ece4;
  --muted:       #888480;
  --faint:       #545250;
  --line:        rgba(240, 236, 228, 0.08);
  --line-strong: rgba(240, 236, 228, 0.14);
  --accent:      #f0ece4;
  --container:   1140px;
}

/* ─── Base reset ─────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: #0c0f0b;
}

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

img {
  display: block;
  max-width: 100%;
}

p {
  margin: 0;
}

/* ─── Typography ─────────────────────────────────────────────────────────────── */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Minion Variable", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
}

/* ─── Labels and micro text ──────────────────────────────────────────────────── */

.kicker {
  display: block;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.eyebrow::before {
  content: '> ';
  opacity: 0.6;
}

.meta-note {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--faint);
  letter-spacing: 0.07em;
}

/* ─── Topbar ─────────────────────────────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  overflow-x: clip;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 4rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: clamp(7.5rem, 11vw, 10.5rem);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav a {
  padding: 0.3rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 120ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav a.active {
  font-weight: 600;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.25rem;
}

.lang-switch::before {
  content: "|";
  color: var(--faint);
  margin-right: 0.1rem;
}

.lang-item {
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0.2rem 0.32rem;
  border-radius: 4px;
  transition: color 120ms ease;
}

.lang-item:hover,
.lang-item.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--accent);
  border-radius: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease;
}

.menu-toggle-bar {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

/* ─── Homepage hero ──────────────────────────────────────────────────────────── */

.hero {
  padding: 9rem 0 7rem;
}

.hero-inner {
  display: grid;
  gap: 3rem;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tag-bar {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-tag-text {
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1::after {
  content: '_';
  color: var(--accent);
  animation: cursor-blink 1.2s step-end infinite;
  margin-left: 0.05em;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 52ch;
}

/* ─── Horizontal rule ────────────────────────────────────────────────────────── */

hr.rule {
  border: none;
  border-top: 1px solid var(--line-strong);
  margin: 0;
}

/* ─── Generic section wrapper ────────────────────────────────────────────────── */

.section {
  padding: 5.5rem 0;
}

/* ─── Homepage overview ──────────────────────────────────────────────────────── */

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.overview-head h2 {
  max-width: 12ch;
}

.overview-body {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
  max-width: 54ch;
  padding-top: 0.6rem;
}

/* ─── Homepage portfolio list ────────────────────────────────────────────────── */

.plist-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.plist-count {
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--faint);
}

.plist {
  display: grid;
}

.plist-row {
  display: grid;
  grid-template-columns: 4rem 1fr minmax(0, 28ch);
  gap: 0 2.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.plist-num {
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.plist-name {
  font-family: "Minion Variable", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0;
}

.plist-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: right;
}

.stage-line {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: auto minmax(4rem, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.1rem;
  margin-top: 0.15rem;
  border-top: 1px solid var(--line);
}

.stage-label,
.stage-value {
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-label {
  color: var(--faint);
}

.stage-value {
  color: var(--accent);
  text-align: right;
}

.stage-track {
  position: relative;
  display: block;
  height: 1px;
  background: var(--line-strong);
  --progress: 50%;
}

.stage-dot {
  position: absolute;
  top: 50%;
  left: var(--progress);
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(240, 236, 228, 0.34);
  animation: stage-pulse 2.1s ease-out infinite;
}

@keyframes stage-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(240, 236, 228, 0.34);
  }

  70% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 0 14px rgba(240, 236, 228, 0);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(240, 236, 228, 0);
  }
}


/* ─── Subpage hero ───────────────────────────────────────────────────────────── */

.subpage-hero {
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--line-strong);
}

.sh-inner {
  display: grid;
  gap: 1.75rem;
}

.sh-inner h1 {
  max-width: 18ch;
}

.sh-lede {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 54ch;
}

/* ─── Portfolio page: product blocks ─────────────────────────────────────────── */

.product-block {
  padding: 5.5rem 0;
  border-top: 1px solid var(--line-strong);
}

.product-inner {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0 3rem;
  align-items: start;
}

.product-num {
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 0.5rem;
}

.product-body {
  display: grid;
  gap: 1.75rem;
}

.product-name {
  font-family: "Minion Variable", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 20ch;
}

.product-brief {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 56ch;
}

.product-detail {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.82;
  max-width: 62ch;
}

.product-tags {
  font-size: 0.8rem;
  color: var(--faint);
  letter-spacing: 0.04em;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.stage-line-product {
  grid-column: auto;
}

/* ─── About page ─────────────────────────────────────────────────────────────── */

.about-sections {
  display: grid;
}

.about-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0 3rem;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.about-row:first-child {
  padding-top: 0;
  border-top: none;
}

.about-col-label {
  padding-top: 0.15rem;
}

.about-content {
  display: grid;
  gap: 1.2rem;
  max-width: 60ch;
}

.about-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

/* ─── Contact page ───────────────────────────────────────────────────────────── */

.contact-wrap {
  max-width: 46rem;
}

.contact-intro {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
  max-width: 54ch;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.contact-items {
  display: grid;
}

.contact-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}

.c-label {
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.c-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.c-note {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
  max-width: 50ch;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

/* ─── Legal pages ────────────────────────────────────────────────────────────── */

.legal-wrap {
  max-width: 66ch;
}

.legal-body h2 {
  font-family: "Minion Variable", Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  padding-top: 3rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.legal-body h2:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.legal-body p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.82;
  margin-top: 0.75rem;
}

.legal-body ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.legal-body li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line-strong);
  padding: 4rem 0 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 1.2rem;
}

.footer-logo {
  width: clamp(7rem, 9vw, 9rem);
  height: auto;
  opacity: 0.55;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 34ch;
}

.footer-links {
  display: flex;
  gap: 3.5rem;
  flex-shrink: 0;
}

.footer-col {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-col-label {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  padding-bottom: 0.35rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  transition: color 120ms ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-soon {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline;
}

.footer-social {
  gap: 0.45rem;
}

.social-item {
  display: grid;
  grid-template-columns: 1.25rem auto auto;
  align-items: center;
  column-gap: 0.45rem;
}

.social-icon {
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  color: var(--faint);
}

.social-icon i {
  line-height: 1;
}

.social-note {
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer-base {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  color: var(--faint);
}

/* ─── Responsive: 900px ──────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-body {
    padding-top: 0;
  }

  .plist-row {
    grid-template-columns: 4rem 1fr;
  }

  .plist-desc {
    display: none;
  }

  .stage-line {
    grid-column: 2 / -1;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-links {
    gap: 2.5rem;
  }

}

/* ─── Responsive: 640px ──────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .topbar .container.topbar-inner {
    width: 100%;
    margin: 0;
    padding: 0.75rem 0;
  }

  .topbar-inner {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    gap: 0.35rem;
  }

  .topbar-inner.js-menu-ready .nav {
    position: static;
    order: 3;
    width: 100%;
    align-self: stretch;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .lang-switch {
    margin-left: 0.35rem;
    margin-right: 1.5rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    margin-left: 1.5rem;
  }

  .topbar-inner.js-menu-ready.menu-open .nav {
    max-height: 18rem;
    opacity: 1;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    border-top: 1px solid var(--line);
  }

  .topbar-inner.js-menu-ready.menu-open {
    padding-bottom: 0;
  }

  .topbar-inner.js-menu-ready.menu-open .menu-toggle {
    background: rgba(240, 236, 228, 0.08);
    border-color: var(--accent);
  }

  .topbar-inner.js-menu-ready.menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(0.34rem) rotate(45deg);
  }

  .topbar-inner.js-menu-ready.menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .topbar-inner.js-menu-ready.menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-0.34rem) rotate(-45deg);
  }

  .topbar-inner.js-menu-ready .nav a {
    display: block;
    width: 100%;
    padding: 0.52rem 1.5rem;
  }

  .topbar-inner.js-menu-ready .nav a + a {
    border-top: 1px solid var(--line);
  }

  .hero {
    padding: 5.5rem 0 4.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .subpage-hero {
    padding: 4rem 0 3.5rem;
  }

  .plist-row {
    grid-template-columns: 1fr;
    padding: 1.75rem 0;
    gap: 0.6rem;
  }

  .plist-desc {
    display: block;
    text-align: left;
  }

  .stage-line {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .stage-value {
    text-align: left;
  }

  .product-block {
    padding: 4rem 0;
  }

  .product-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-num {
    padding-top: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.75rem;
  }
}

/* ─── Structured sections (legal / cookie policy) ────────────────────────────── */

.cp-sections {
  display: grid;
}

.cp-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0 3rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.cp-row:first-child {
  border-top: none;
  padding-top: 0;
}

.cp-index {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 0.3rem;
}

.cp-content {
  display: grid;
  gap: 1rem;
}

.cp-content h2 {
  font-family: "Minion Variable", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.cp-content p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.82;
  max-width: 64ch;
}

.cp-content ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.cp-content li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
}

@media (max-width: 640px) {
  .cp-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.5rem 0;
  }
}

/* ─── Cookie table ───────────────────────────────────────────────────────────── */

.cookie-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  -webkit-overflow-scrolling: touch;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px;
}

.cookie-table thead th {
  text-align: left;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0 1.5rem 0.85rem 0;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}

.cookie-table thead th:last-child {
  padding-right: 0;
}

.cookie-table tbody td {
  padding: 1.1rem 1.5rem 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  vertical-align: top;
}

.cookie-table tbody td:last-child {
  padding-right: 0;
}

.cookie-table tbody td:first-child {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.82rem;
  color: var(--accent);
  white-space: nowrap;
}

.cookie-table tbody td:nth-child(2) {
  white-space: nowrap;
}

/* ─── Cookie consent banner ──────────────────────────────────────────────────── */

[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #171717;
  border-top: 1px solid var(--line-strong);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 0;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Figtree", system-ui, sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid;
  background: transparent;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}

.cookie-btn-decline {
  color: var(--faint);
  border-color: var(--faint);
}

.cookie-btn-decline:hover {
  color: var(--muted);
  border-color: var(--muted);
}

.cookie-btn-accept {
  color: #0d0d0d;
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-btn-accept:hover {
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
  }
}
