@font-face {
  font-family: "Fredoka";
  src: url("fonts/Fredoka-SemiBold.woff2") format("woff2"),
       url("fonts/Fredoka-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fredoka";
  src: url("fonts/Fredoka-SemiBold.woff2") format("woff2"),
       url("fonts/Fredoka-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("fonts/NunitoSans-Variable.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a2332;
  --soft-cloud: #f4f7f9;
  --white: #ffffff;
  --happy-blue: #2e9dc4;
  --muted: rgba(26, 35, 50, 0.68);
  --line: rgba(26, 35, 50, 0.08);
  --shadow: 0 10px 30px rgba(26, 35, 50, 0.06);
  --radius: 14px;
  --max: 1100px;
  --page-pad: 48px;
  --font-display: "Fredoka", "Nunito Sans", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--page, var(--soft-cloud));
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px var(--page-pad);
  background: transparent;
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 0 auto;
}
.brand-mark {
  display: block;
  width: 148px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav a {
  padding: 4px 10px;
  position: relative;
}
.nav a + a::before {
  content: "·";
  position: absolute;
  left: -2px;
  color: rgba(26, 35, 50, 0.28);
  pointer-events: none;
}
.nav a.is-active,
.nav a:hover { color: var(--ink); }
.contact {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-left: 8px;
  padding: 4px 0;
}
.contact:hover { color: var(--happy-blue); }

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px var(--page-pad) 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0 56px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 11ch;
}
.lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.55;
}
.hero-art {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.band { padding: 28px 0 8px; }
.band-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.grid { display: grid; gap: 16px; }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 22px 20px 24px;
  min-height: 132px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.card-wide {
  padding: 28px 28px 32px;
  min-height: 120px;
}
.card-wide h3 { font-size: 20px; }
.card-wide p { max-width: 62ch; font-size: 15px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px var(--page-pad) 40px;
  max-width: calc(var(--max) + var(--page-pad) * 2);
  margin: 40px auto 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.footer-links a:hover { color: var(--ink); }

@media (max-width: 900px) {
  :root { --page-pad: 24px; }
  .site-header { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; margin-left: 0; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: none; }
  .grid.four { grid-template-columns: 1fr 1fr; }
  .grid.three { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid.four { grid-template-columns: 1fr; }
}

/* —— Dark mode (architecture) ——
   Soft Cloud ↔ near-ink page; cream wordmark; Happy Blue accents retained.
   Toggle: html[data-theme="dark"] | also respects prefers-color-scheme when unset.
*/
.brand-mark-dark { display: none; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
}
.theme-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.theme-toggle:hover { border-color: var(--happy-blue); color: var(--happy-blue); }
.theme-toggle [data-dark] { display: none; }

:root {
  --surface: #ffffff;
  --page: var(--soft-cloud);
  color-scheme: light;
}
body { background: var(--page); }

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f5f0e8;
  --soft-cloud: #0f1419;
  --page: #0f1419;
  --white: #161c24;
  --surface: #161c24;
  --happy-blue: #3aafd4;
  --muted: rgba(245, 240, 232, 0.68);
  --line: rgba(245, 240, 232, 0.12);
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}
html[data-theme="dark"] .brand-mark-light { display: none; }
html[data-theme="dark"] .brand-mark-dark { display: block; }
html[data-theme="dark"] .theme-toggle [data-light] { display: none; }
html[data-theme="dark"] .theme-toggle [data-dark] { display: inline; }

html[data-theme="dark"] .card,
html[data-theme="dark"] .hero-art {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme="dark"] .hero-art img {
  filter: brightness(0.92) saturate(1.05);
  mix-blend-mode: screen;
  opacity: 0.92;
}
html[data-theme="dark"] .site-footer {
  border-top-color: var(--line);
}
html[data-theme="dark"] .nav a + a::before {
  color: rgba(245, 240, 232, 0.28);
}
html[data-theme="dark"] .contact:hover {
  color: var(--happy-blue);
}

/* System preference when user has not chosen */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) {
    color-scheme: dark;
    --ink: #f5f0e8;
    --soft-cloud: #0f1419;
    --page: #0f1419;
    --white: #161c24;
    --surface: #161c24;
    --happy-blue: #3aafd4;
    --muted: rgba(245, 240, 232, 0.68);
    --line: rgba(245, 240, 232, 0.12);
    --shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  }
  html:not([data-theme="light"]):not([data-theme="dark"]) .brand-mark-light { display: none; }
  html:not([data-theme="light"]):not([data-theme="dark"]) .brand-mark-dark { display: block; }
  html:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle [data-light] { display: none; }
  html:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle [data-dark] { display: inline; }
  html:not([data-theme="light"]):not([data-theme="dark"]) .card,
  html:not([data-theme="light"]):not([data-theme="dark"]) .hero-art {
    background: var(--surface);
    border-color: var(--line);
  }
  html:not([data-theme="light"]):not([data-theme="dark"]) .hero-art img {
    filter: brightness(0.92) saturate(1.05);
    mix-blend-mode: screen;
    opacity: 0.92;
  }
}

/* —— Polish pass: more restrained corporate craft ——
   Content and structure unchanged. Quieter type, softer effects, clearer hierarchy.
*/
:root {
  --radius: 10px;
  --shadow: none;
  --line: rgba(26, 35, 50, 0.10);
  --muted: rgba(26, 35, 50, 0.62);
  --page-pad: 56px;
  --max: 1080px;
}

.site-header {
  padding: 20px var(--page-pad);
  gap: 24px;
  border-bottom: 1px solid transparent;
}
.brand-mark { width: 128px; }
.nav {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav a { padding: 6px 12px; }
.nav a + a::before { color: rgba(26, 35, 50, 0.18); }
.contact {
  font-size: 13px;
  font-weight: 600;
}
.contact:hover { color: var(--ink); opacity: 0.7; }

.theme-toggle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 6px;
  background: transparent;
}
.theme-toggle:hover {
  border-color: var(--line);
  color: var(--ink);
  opacity: 0.75;
}

main { padding: 12px var(--page-pad) 88px; }

.hero {
  gap: 48px;
  padding: 48px 0 64px;
}
.hero-copy h1 {
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 12ch;
}
.lede {
  font-size: 15px;
  line-height: 1.65;
  max-width: 40ch;
  font-weight: 400;
}
.hero-art {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.band { padding: 40px 0 12px; }
.band-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.grid { gap: 14px; }

.card {
  border-radius: var(--radius);
  box-shadow: none;
  border: 1px solid var(--line);
  padding: 24px 22px 26px;
  min-height: 124px;
  background: var(--white);
}
.card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.card p {
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 400;
}
.card-wide {
  padding: 28px 30px 30px;
}
.card-wide h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.card-wide p { font-size: 14px; max-width: 58ch; }

.site-footer {
  margin-top: 56px;
  padding: 32px var(--page-pad) 48px;
}
.footer-note,
.footer-links {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Dark: quieter — drop flashy blend */
html[data-theme="dark"] {
  --shadow: none;
  --line: rgba(245, 240, 232, 0.10);
  --muted: rgba(245, 240, 232, 0.58);
}
html[data-theme="dark"] .hero-art img {
  filter: brightness(0.88) saturate(0.95);
  mix-blend-mode: normal;
  opacity: 0.85;
}
html[data-theme="dark"] .contact:hover {
  color: var(--ink);
  opacity: 0.75;
}
html[data-theme="dark"] .band-title { color: var(--muted); }

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) .hero-art img {
    filter: brightness(0.88) saturate(0.95);
    mix-blend-mode: normal;
    opacity: 0.85;
  }
}

.hero-cta-wrap { margin-top: 20px; }
.hero-cta { display: inline-block; font-size: 15px; }

/* —— Stage 1 section expansion (corporate section expansion) —— */
.band-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 58ch;
  margin: -6px 0 18px;
  line-height: 1.55;
}
.band-subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 14px;
  letter-spacing: -0.01em;
}
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card-media { padding: 0; overflow: hidden; min-height: 0; display: flex; flex-direction: column; }
.card-media-art { aspect-ratio: 16 / 9; background: var(--soft-cloud); }
.card-media-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-media-body { padding: 20px 20px 24px; }
.card-media-body h3 { margin-bottom: 8px; }
.card-story .story-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--happy-blue);
  margin-bottom: 10px;
}
.mission h3 { margin-bottom: 12px; }
.mission p { font-size: 16px; max-width: 68ch; color: var(--ink); }
.closer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.band-closer { padding-bottom: 24px; }
@media (max-width: 900px) {
  .grid.two { grid-template-columns: 1fr; }
  .closer-grid { grid-template-columns: 1fr; }
}
html[data-theme="dark"] .mission p { color: var(--ink); }
html[data-theme="dark"] .card-media-art { background: #161C24; }
.contact-note { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* —— Visual polish: motion, hover, hero, carousel, texture —— */

:root {
  --shadow-soft: 0 8px 24px rgba(26, 35, 50, 0.06);
  --shadow-lift: 0 16px 40px rgba(26, 35, 50, 0.10);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 0.7s;
}

html[data-theme="dark"] {
  --shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.35);
  --shadow-lift: 0 18px 44px rgba(0, 0, 0, 0.5);
}

/* Soft page texture — Soft Cloud base + restrained Happy Blue wash */
body {
  background:
    radial-gradient(ellipse 90% 55% at 12% -8%, rgba(46, 157, 196, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 8%, rgba(46, 157, 196, 0.045), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(26, 35, 50, 0.03), transparent 55%),
    var(--page);
  background-attachment: fixed;
}
html[data-theme="dark"] body {
  background:
    radial-gradient(ellipse 90% 55% at 12% -8%, rgba(58, 175, 212, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 8%, rgba(58, 175, 212, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 0, 0, 0.25), transparent 55%),
    var(--page);
  background-attachment: fixed;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) body {
    background:
      radial-gradient(ellipse 90% 55% at 12% -8%, rgba(58, 175, 212, 0.08), transparent 55%),
      radial-gradient(ellipse 70% 45% at 92% 8%, rgba(58, 175, 212, 0.05), transparent 50%),
      radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 0, 0, 0.25), transparent 55%),
      var(--page);
    background-attachment: fixed;
  }
}

/* Scroll entrance — fade + rise */
.reveal,
.reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--reveal-dur) var(--ease-out),
    transform var(--reveal-dur) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible,
.reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy.reveal {
  transform: translateY(14px);
}
.hero-art.reveal {
  transform: translateY(14px) scale(0.985);
}
.hero-art.reveal.is-visible {
  transform: translateY(0) scale(1);
}

/* Hero ken-burns on smoke art */
.hero-art {
  position: relative;
  overflow: hidden;
}
.hero-art-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  position: relative;
}
.hero-art img,
.hero-kenburns {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transform-origin: 40% 45%;
}
.hero-kenburns {
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0% { transform: scale(1.06) translate(0, 0); }
  50% { transform: scale(1.12) translate(-1.5%, 1%); }
  100% { transform: scale(1.08) translate(1%, -0.8%); }
}

/* Soft animated wash behind Soft Cloud hero zone */
.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -8% -4% auto -4%;
  height: 120%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 60% at 70% 40%, rgba(46, 157, 196, 0.06), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(46, 157, 196, 0.04), transparent 65%);
  animation: heroWash 16s ease-in-out infinite alternate;
  opacity: 0.9;
}
@keyframes heroWash {
  0% { opacity: 0.65; transform: translateY(0) scale(1); }
  100% { opacity: 1; transform: translateY(-6px) scale(1.03); }
}
html[data-theme="dark"] .hero::before {
  background:
    radial-gradient(ellipse 50% 60% at 70% 40%, rgba(58, 175, 212, 0.09), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(58, 175, 212, 0.05), transparent 65%);
}

/* Cards — richer hover lift + shadow */
.card {
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(46, 157, 196, 0.22);
}
html[data-theme="dark"] .card:hover {
  border-color: rgba(58, 175, 212, 0.28);
}
.card-media:hover .card-media-art img {
  transform: scale(1.04);
}
.card-media-art {
  overflow: hidden;
}
.card-media-art img {
  transition: transform 0.55s var(--ease-out);
}

/* Nav links — underline slide */
.nav a {
  transition: color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 1.5px;
  background: var(--happy-blue);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out);
  opacity: 0.85;
}
.nav a:hover::after,
.nav a.is-active::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}
.nav a.is-active { color: var(--ink); }
.nav a:focus-visible {
  outline: 2px solid var(--happy-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* CTA / contact — underline slide */
.contact,
.hero-cta {
  position: relative;
  display: inline-block;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.contact::after,
.hero-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
  opacity: 0.55;
}
.contact:hover::after,
.hero-cta:hover::after,
.contact:focus-visible::after,
.hero-cta:focus-visible::after {
  transform: scaleX(1);
}
.contact:hover,
.hero-cta:hover {
  color: var(--happy-blue);
  opacity: 1;
}
.hero-cta {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.contact:focus-visible,
.hero-cta:focus-visible {
  outline: 2px solid var(--happy-blue);
  outline-offset: 4px;
  border-radius: 3px;
}

/* Theme toggle micro-interaction */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s var(--ease-out),
    background 0.25s ease;
}
.theme-toggle-track {
  display: inline-block;
  width: 28px;
  height: 14px;
  border-radius: 999px;
  background: rgba(26, 35, 50, 0.12);
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}
html[data-theme="dark"] .theme-toggle-track {
  background: rgba(58, 175, 212, 0.28);
}
html[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(14px);
  background: var(--happy-blue);
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle-track {
    background: rgba(58, 175, 212, 0.28);
  }
  html:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle-thumb {
    transform: translateX(14px);
    background: var(--happy-blue);
  }
}
.theme-toggle:hover {
  border-color: rgba(46, 157, 196, 0.35);
  color: var(--happy-blue);
  opacity: 1;
}
.theme-toggle.is-toggling {
  transform: scale(0.96);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--happy-blue);
  outline-offset: 3px;
}

/* Story meta accent */
.card-story .story-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-left: 0;
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}
.card-story .story-meta::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--happy-blue);
  border-radius: 1px;
  flex-shrink: 0;
  transition: width 0.35s var(--ease-out);
}
.card-story:hover .story-meta::before {
  width: 22px;
}
.card-story:hover .story-meta {
  letter-spacing: 0.08em;
}

/* Brands carousel */
.brands-carousel {
  position: relative;
  margin-top: 4px;
}
.brands-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  outline: none;
}
.brands-carousel-viewport:focus-visible {
  box-shadow: 0 0 0 2px var(--page), 0 0 0 4px var(--happy-blue);
}
.brands-carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}
.brands-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  min-height: 0;
}
.brands-slide.card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.brands-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.carousel-btn {
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.25s ease;
}
.carousel-btn:hover {
  border-color: var(--happy-blue);
  color: var(--happy-blue);
  box-shadow: var(--shadow-soft);
}
.carousel-btn:active {
  transform: scale(0.94);
}
.carousel-btn:focus-visible {
  outline: 2px solid var(--happy-blue);
  outline-offset: 2px;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(26, 35, 50, 0.22);
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    background 0.25s ease,
    width 0.25s var(--ease-out);
}
.carousel-dot.is-active {
  background: var(--happy-blue);
  width: 22px;
  border-radius: 999px;
}
.carousel-dot:hover {
  background: var(--happy-blue);
  opacity: 0.7;
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--happy-blue);
  outline-offset: 3px;
}
html[data-theme="dark"] .carousel-btn {
  background: var(--surface);
}
html[data-theme="dark"] .carousel-dot {
  background: rgba(245, 240, 232, 0.28);
}
html[data-theme="dark"] .carousel-dot.is-active {
  background: var(--happy-blue);
}

/* Footer link hover polish */
.footer-links a {
  position: relative;
  transition: color 0.25s ease;
}
.footer-links a:hover {
  color: var(--happy-blue);
}

/* Contact note removed — keep rule harmless if reintroduced */
.contact-note { display: none; }

/* prefers-reduced-motion: disable / minimize */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-kenburns {
    animation: none;
    transform: scale(1);
  }
  .hero::before {
    animation: none;
  }
  .card,
  .card-media-art img,
  .nav a::after,
  .contact::after,
  .hero-cta::after,
  .theme-toggle,
  .theme-toggle-thumb,
  .carousel-btn,
  .carousel-dot,
  .brands-carousel-track {
    transition: none !important;
    animation: none !important;
  }
  .card:hover {
    transform: none;
  }
  .card-media:hover .card-media-art img {
    transform: none;
  }
  body {
    background-attachment: scroll;
  }
}
