/* ---------- Tokens ---------- */
:root {
  --bg: #f5f5f7;
  --ink: #0a0a0f;
  --cream: #ece4d7;
  --accent: #5b5bf0;
  --accent-hover: #3f3fd6;
  --accent-light: #8f8ff7;
  --accent-on-dark-hover: #7676f5;
  --white: #ffffff;

  --body-on-light: rgba(10, 10, 15, 0.66);
  --body-on-light-2: rgba(10, 10, 15, 0.68);
  --muted-on-light: rgba(10, 10, 15, 0.5);
  --muted-on-light-2: rgba(10, 10, 15, 0.55);
  --hairline-on-light: rgba(10, 10, 15, 0.1);
  --card-border-on-light: rgba(10, 10, 15, 0.08);
  --input-border: rgba(10, 10, 15, 0.12);
  --chip-border: rgba(10, 10, 15, 0.16);

  --body-on-dark: rgba(245, 245, 247, 0.6);
  --body-on-dark-2: rgba(245, 245, 247, 0.62);
  --body-on-dark-3: rgba(245, 245, 247, 0.66);
  --footer-link: rgba(245, 245, 247, 0.78);
  --footer-label: rgba(245, 245, 247, 0.45);
  --dark-card-fill: rgba(245, 245, 247, 0.05);
  --dark-card-border: rgba(245, 245, 247, 0.12);

  --error: #d64545;

  --font-heading: 'Satoshi', system-ui, sans-serif;
  --font-body: 'General Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--accent-hover); }

input, textarea, button, select { font-family: inherit; }

h1, h2, h3, p { margin: 0; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Layout helpers ---------- */
section[id] {
  scroll-margin-top: 96px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding-top: 96px;
}

.section-header.centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow-dark { color: var(--accent-light); }

.section-header h2,
.about-copy h2,
.contact-copy h2,
.testimonials-header h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.on-dark-heading { color: var(--cream); }

.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10, 10, 15, 0.6);
  margin: 0;
}

.on-dark-sub { color: var(--body-on-dark); }

.accent { color: var(--accent); }
.accent-light { color: var(--accent-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }

.btn-on-dark:hover { background: var(--accent-on-dark-hover); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10, 10, 15, 0.16);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.btn-sm {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
}

.btn-lg { padding: 16px 40px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 10, 15, 0.07);
}

.header-row {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark:hover { color: var(--ink); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.main-nav a:not(.btn):hover { color: var(--accent); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 20px;
}

.mobile-nav a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-on-light);
}

.mobile-nav .btn { margin-top: 12px; justify-content: center; }

@media (max-width: 640px) {
  .mobile-nav.is-open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 0;
}

.hero-blobs {
  position: absolute;
  top: -160px;
  bottom: 88px;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
  animation: heroGradientBreathe 14s ease-in-out infinite;
}

@keyframes heroGradientBreathe {
  0%, 100% { opacity: 0.88; filter: saturate(1); }
  50% { opacity: 1; filter: saturate(1.15); }
}

.blob {
  position: absolute;
  border-radius: 999px;
  will-change: transform;
}

.blob-a {
  top: 2%; left: 8%;
  width: 46vw; min-width: 560px;
  height: 46vw; min-height: 560px;
  background: radial-gradient(circle, rgba(91,91,240,0.42) 0%, rgba(91,91,240,0) 70%);
  filter: blur(80px);
  animation: blobA 26s ease-in-out infinite;
}
.blob-b {
  top: 16%; left: 34%;
  width: 50vw; min-width: 620px;
  height: 50vw; min-height: 620px;
  background: radial-gradient(circle, rgba(236,228,215,0.95) 0%, rgba(236,228,215,0) 70%);
  filter: blur(72px);
  animation: blobB 32s ease-in-out infinite;
}
.blob-c {
  top: -8%; right: 2%;
  width: 44vw; min-width: 540px;
  height: 44vw; min-height: 540px;
  background: radial-gradient(circle, rgba(143,143,247,0.38) 0%, rgba(143,143,247,0) 70%);
  filter: blur(88px);
  animation: blobC 24s ease-in-out infinite;
}
.blob-d {
  bottom: -10%; right: 20%;
  width: 40vw; min-width: 520px;
  height: 40vw; min-height: 520px;
  background: radial-gradient(circle, rgba(214,203,232,0.7) 0%, rgba(214,203,232,0) 70%);
  filter: blur(96px);
  animation: blobD 30s ease-in-out infinite;
}

@keyframes blobA { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(56px,-40px) scale(1.12); } 66% { transform: translate(-32px,32px) scale(0.94); } }
@keyframes blobB { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-48px,40px) scale(0.92); } 66% { transform: translate(40px,24px) scale(1.1); } }
@keyframes blobC { 0%,100% { transform: translate(0,0) scale(1.04); } 50% { transform: translate(40px,48px) scale(0.9); } }
@keyframes blobD { 0%,100% { transform: translate(0,0) scale(0.96); } 50% { transform: translate(-56px,-32px) scale(1.14); } }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.hero-copy { min-width: 0; max-width: 700px; }

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.pill-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

.hero-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  text-wrap: pretty;
  max-width: 100%;
}

.hero-subline { font-size: 48px; }

.hero-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-on-light);
  max-width: min(560px, 100%);
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-portrait-wrap {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--cream);
  overflow: hidden;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--hairline-on-light);
  border-bottom: 1px solid var(--hairline-on-light);
}

.stat { text-align: center; }

.stat-figure {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-light-2);
  margin-top: 8px;
}

/* ---------- Work cards ---------- */
.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
}

.work-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.2s ease;
}
.work-card:hover { transform: translateY(-4px); }

.work-cover {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 10, 15, 0.06);
  aspect-ratio: 4 / 3;
}

.work-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-body { padding: 0 8px 8px; }

.work-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.work-title-row h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.index-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  white-space: nowrap;
}

.work-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-on-light-2);
  margin-bottom: 24px;
  text-wrap: pretty;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--chip-border);
  color: rgba(10, 10, 15, 0.7);
}

/* ---------- Process band ---------- */
.process-band {
  margin-top: 96px;
  background: var(--ink);
  color: var(--bg);
  padding: 96px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  background: var(--dark-card-fill);
  border: 1px solid var(--dark-card-border);
  border-radius: 24px;
  padding: 40px 32px;
}

.process-number {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--bg);
}

.process-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-on-dark-2);
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.about-copy { min-width: 0; }

.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-on-light-2);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.about-copy p.last { margin-bottom: 0; }

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-on-light);
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin-bottom: 8px;
}

.meta-value {
  font-weight: 600;
  font-size: 16px;
}

.about-tiles {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.about-tile {
  background: var(--cream);
  border-radius: 24px;
  padding: 32px;
}

.tile-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin-bottom: 16px;
}

.tile-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.about-tile p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-on-light);
}

.about-tile-dark {
  background: var(--ink);
  color: var(--cream);
}
.about-tile-dark .tile-label { color: rgba(245, 245, 247, 0.5); }
.about-tile-dark p { color: var(--body-on-dark-2); }

/* ---------- Testimonials ---------- */
.testimonials-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.testimonials-header h2 { margin-bottom: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial {
  margin: 0;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-white {
  background: var(--white);
  border: 1px solid var(--card-border-on-light);
}

.testimonial-cream {
  background: var(--cream);
}

.testimonial p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--card-border-on-light);
  padding-top: 24px;
}

.testimonial-cream footer { border-top-color: rgba(10, 10, 15, 0.12); }

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--cream);
  flex-shrink: 0;
}
.avatar-muted { background: rgba(10, 10, 15, 0.1); }

.testimonial-name { font-weight: 600; font-size: 16px; }

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-on-light);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  border-radius: 32px;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}

.cta-copy { min-width: 0; }

.cta-copy h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--cream);
  text-wrap: pretty;
}

.cta-action {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}

.cta-action p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-on-dark-3);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.contact-copy { min-width: 0; }

.contact-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-on-light);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-value-link {
  font-weight: 600;
  font-size: 16px;
}

.contact-form {
  min-width: 0;
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-light-2);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--input-border);
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.field select { appearance: none; }

.field textarea {
  resize: vertical;
  line-height: 1.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field input:invalid[data-touched="true"],
.field textarea:invalid[data-touched="true"] {
  border-color: var(--error);
}

.field-error {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--error);
  min-height: 1em;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.form-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-on-light);
}

.form-status.is-error { color: var(--error); }
.form-status.is-success { color: var(--accent-hover); }

.contact-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 96px;
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr) minmax(0, 0.6fr) minmax(0, 0.8fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 245, 247, 0.14);
}

.footer-brand { min-width: 0; }

.footer-wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-on-dark);
  max-width: 320px;
}

.footer-col { min-width: 0; }

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-label);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 16px;
  color: var(--footer-link);
  margin-bottom: 12px;
}
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  flex-wrap: wrap;
}

.copyright {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--footer-label);
}

.back-to-top {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--body-on-dark);
}
.back-to-top:hover { color: var(--accent-light); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-portrait-wrap { order: -1; }
  .hero-portrait { max-width: 280px; }
}

@media (max-width: 720px) {
  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }
}

@media (max-width: 800px) {
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .about-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    border-radius: 24px;
  }
  .cta-action { align-items: start; }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: start; gap: 12px; }
}

@media (max-width: 640px) {
  .header-row { padding: 16px 20px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .wrap { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
