/* ===================================================================
   DAY ONE MEDIA — Shared styles
   =================================================================== */

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

:root {
  --cream: #E9E5DA;
  --black: #151310;
  --mid: #5C5751;
  --light: #9A948C;
  --rule: rgba(21,19,16,0.12);
  --body-text: var(--black);
  --close-sub-text: var(--black);
  --tile: #E9E5DA;
  --fill: #151310;
  --fill-text: #E9E5DA;
}

[data-theme="dark"] {
  --cream: #0a0a08;
  --black: #fdfd09;
  --mid: #c9c907;
  --light: #8a8a05;
  --rule: rgba(253,253,9,0.18);
  --body-text: #f0f06b;
  --close-sub-text: #f0f06b;
  --tile: #0a0a08;
  --fill: #fdfd09;
  --fill-text: #0a0a08;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Public Sans', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection { background: var(--black); color: var(--cream); }

a { color: inherit; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: var(--black);
}

.nav-logo .logo-main {
  font-family: 'Blinker', system-ui, sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.nav-logo .logo-sub {
  font-family: 'Blinker', system-ui, sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 2px;
  padding-left: 0.4em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.theme-toggle:active { transform: scale(0.94); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ── MOBILE NAV TOGGLE ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── MAIN / PAGE WRAP ── */
main {
  flex: 1;
}

.page-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 40px 120px;
}

/* ── SHARED SECTION LABEL ── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 28px;
}

/* ── HERO (home) ── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 120px;
  position: relative;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s ease both;
}

.hero-logo .logo-main {
  font-family: 'Blinker', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-logo .logo-sub {
  font-family: 'Blinker', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 3vw, 28px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-top: 8px;
  padding-left: 0.45em;
}

.hero-motto {
  margin-top: 48px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 46px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 22ch;
  line-height: 1.15;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--mid);
  max-width: 48ch;
  line-height: 1.6;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-cta {
  margin-top: 44px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 0.7s both;
}

.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn:hover { background: var(--black); color: var(--cream); }
.btn-solid { background: var(--black); color: var(--cream); }
.btn-solid:hover { opacity: 0.85; }

.hero-announce {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 9px 18px;
  background: transparent;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
  animation: fadeUp 1s ease 0.85s both;
}
.hero-announce .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  display: inline-block;
  flex: 0 0 auto;
}
.hero-announce:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}
.hero-announce:hover .dot { background: var(--cream); }

/* ── PAGE HEADLINE ── */
.page-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-intro {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--mid);
  max-width: 56ch;
  margin-bottom: 72px;
}

/* ── MANIFESTO BODY (about) ── */
.headline-from {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 28px;
  text-align: center;
}

.manifesto-headline {
  margin-bottom: 80px;
  text-align: center;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 24px;
}

.headline-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 20px);
  flex-wrap: wrap;
}

.headline-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.headline-word.outline {
  -webkit-text-stroke: 1.5px var(--black);
  color: transparent;
}
.headline-arrow {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--light);
  line-height: 1;
}

.manifesto-body {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.7;
  color: var(--body-text);
}
.manifesto-body p { margin-bottom: 28px; }
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-body .stat { font-weight: 500; }

.kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
  display: block;
  margin: 56px 0 40px;
}

.manifesto-close {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.manifesto-close .close-lead {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.manifesto-close .close-sub {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--close-sub-text);
  line-height: 1.55;
  max-width: 60ch;
}

/* ── BRANDS ── */
.division-block {
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.division-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.division-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.division-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--rule);
  padding: 6px 12px;
  white-space: nowrap;
  align-self: center;
}
.division-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.division-desc {
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.6;
  color: var(--body-text);
  max-width: 60ch;
}

.brand-card-static {
  cursor: default;
}
.brand-card-filler {
  background: var(--cream);
  pointer-events: none;
}
.brand-card-filler:hover { background: var(--cream); }
@media (max-width: 820px) {
  .brand-card-filler { display: none; }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.brand-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  text-decoration: none;
  color: var(--black);
  transition: background 0.3s ease, color 0.3s ease;
}
.brand-card:hover {
  background: var(--black);
  color: var(--cream);
}
.brand-card:hover .brand-handle { color: var(--cream); opacity: 0.7; }
.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.brand-desc {
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.brand-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-handle .arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-variant-emoji: text;
  -webkit-font-feature-settings: normal;
}

/* ── CONTACT ── */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 16px;
}
.contact-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}
.contact-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--black);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-link:hover { border-bottom-color: var(--black); }

.contact-x {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.2s ease;
}
.contact-x:hover { opacity: 0.6; }
.contact-x svg { width: 32px; height: 32px; }

/* ── TEAM (interactive roster) ── */
.team-head { text-align: center; margin-bottom: 18px; }
.team-eyebrow {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 22px;
}
.team-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 8vw, 102px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.team-sub {
  font-family: 'Public Sans', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--mid);
  margin: 18px auto 0;
  max-width: 46ch;
  line-height: 1.5;
}

/* founder band */
.founder {
  position: relative;
  display: block;
  padding: 38px 40px;
  border: 1px solid var(--rule);
  background: var(--cream);
  margin: 56px 0 64px;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fill);
  transform: translateX(-101%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.founder:hover::before { transform: translateX(0); }
.founder > * { position: relative; z-index: 1; transition: color 0.45s ease; }
.founder .ftag {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
  transition: color 0.45s ease;
}
.founder .fname {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.founder .fname-link {
  text-decoration: none;
  color: var(--black);
  display: inline-block;
  transition: color 0.45s ease, opacity 0.2s ease;
}
.founder .fname-link:hover { opacity: 0.75; }
.founder:hover .fname-link { color: var(--fill-text); }
.founder .frole {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1.7vw, 17px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 10px;
  transition: color 0.45s ease;
}
.founder:hover .fname { color: var(--fill-text); }
.founder:hover .ftag,
.founder:hover .frole { color: var(--fill-text); opacity: 0.7; }

/* roster grid */
.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.closer-tile {
  background: var(--tile);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  min-height: 120px;
}
.closer-tile span {
  font-family: 'Public Sans', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--mid);
  line-height: 1.5;
}

.person {
  position: relative;
  background: var(--tile);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}
.roster.reveal .person { opacity: 0; transform: translateY(20px); }
.roster.reveal .person.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.person::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: var(--fill);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.person:hover::before { transform: scaleY(1); }
.person > * { position: relative; z-index: 1; }

/* monogram = portrait */
.mono {
  position: absolute;
  right: 6px;
  bottom: -22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(150px, 14vw, 210px);
  line-height: 0.7;
  letter-spacing: -0.05em;
  color: var(--rule);
  -webkit-text-stroke: 1.6px var(--mid);
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.45s ease, color 0.45s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.person:hover .mono {
  -webkit-text-stroke-color: var(--fill-text);
  color: transparent;
  transform: translateY(-8px) scale(1.05);
}

.p-top { display: flex; justify-content: space-between; align-items: flex-start; }
.p-idx {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--light);
  transition: color 0.45s ease;
}
.p-dept {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  text-align: right;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s ease, transform 0.45s ease, color 0.45s ease;
}
.person:hover .p-idx { color: var(--fill-text); opacity: 0.6; }
.person:hover .p-dept { opacity: 0.7; color: var(--fill-text); transform: translateY(0); }

.p-bottom .p-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.45s ease;
}
.p-bottom .p-name-link {
  text-decoration: none;
  color: var(--black);
  display: inline-block;
  transition: color 0.45s ease, opacity 0.2s ease;
}
.p-bottom .p-name-link:hover { opacity: 0.75; }
.person:hover .p-name-link { color: var(--fill-text); }
.p-bottom .p-role {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 7px;
  transition: color 0.45s ease, opacity 0.4s ease;
}
.person:hover .p-name { color: var(--fill-text); }
.person:hover .p-role { color: var(--fill-text); opacity: 0.7; }

@media (max-width: 900px) { .roster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .roster { grid-template-columns: repeat(2, 1fr); }
  .person { aspect-ratio: auto; min-height: 170px; padding: 16px; }
  .person .p-bottom .p-name { font-size: 22px; }
  .person .p-bottom .p-role { font-size: 9px; letter-spacing: 0.04em; }
  .mono { font-size: 96px; bottom: -10px; right: 4px; -webkit-text-stroke-width: 1.2px; }
  .p-idx { font-size: 10px; }
  .closer-tile { min-height: 100px; padding: 16px; }
  .closer-tile span { font-size: 14px; }
}



/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease;
}
footer .footer-logo {
  font-family: 'Blinker', system-ui, sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  justify-self: start;
}
footer .footer-social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer .footer-social-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
footer .footer-social-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--black);
}
footer .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
footer .footer-social:hover { opacity: 0.6; transform: translateY(-1px); }
footer .footer-social svg { width: 28px; height: 28px; }
footer .footer-copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--light);
  text-transform: uppercase;
  justify-self: end;
  text-align: right;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .nav { padding: 18px 22px; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(75vw, 320px);
    background: var(--cream);
    border-left: 1px solid var(--rule);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 95;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; }
  .nav-burger { display: flex; z-index: 96; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .page-wrap { padding: 70px 24px 90px; }

  .brand-grid { grid-template-columns: 1fr; }

  footer {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    padding: 28px 24px;
  }
  footer .footer-logo, footer .footer-copy {
    justify-self: center;
    text-align: center;
  }
  footer .footer-logo { font-size: 13px; }
  footer .footer-social-block { gap: 8px; }
  footer .footer-social-label { font-size: 12px; padding-bottom: 8px; letter-spacing: 0.15em; }
  footer .footer-social-label::after { width: 24px; }
  footer .footer-social svg { width: 20px; height: 20px; }
  footer .footer-copy { font-size: 10px; }

  .contact-row { flex-direction: column; gap: 40px; }
}
