/* ============================================================
   Twins Cleaners & Alterations — style.css
   Warm, crisp, family-owned. Deep teal + warm cream + soft gold.
   ============================================================ */

:root,
[data-theme='light'] {
  /* Surfaces — warm cream */
  --color-bg: #f7efe4;
  --color-surface: #fbf6ee;
  --color-surface-2: #fffdf8;
  --color-surface-offset: #efe6d6;
  --color-surface-offset-2: #e7d9c6;
  --color-divider: #e6d8c8;
  --color-border: #ddccbb;

  /* Text — deep ink with teal cast */
  --color-text: #2a1a1f;
  --color-text-muted: #6b5d60;
  --color-text-faint: #a39990;
  --color-text-inverse: #f7efe4;

  /* Primary — fresh deep teal */
  --color-primary: #6e2435;
  --color-primary-hover: #561b29;
  --color-primary-active: #3a121c;
  --color-primary-highlight: #ead6db;

  /* Accent — soft gold */
  --color-gold: #c59a42;
  --color-gold-hover: #a47d33;
  --color-gold-highlight: #f0e4cc;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 25 / 0.06);
  --shadow-md: 0 6px 18px oklch(0.2 0.02 25 / 0.08);
  --shadow-lg: 0 18px 44px oklch(0.2 0.02 25 / 0.14);

  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide: 1240px;

  --font-display: 'Boska', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
}

[data-theme='dark'] {
  --color-bg: #1a1216;
  --color-surface: #201419;
  --color-surface-2: #25191e;
  --color-surface-offset: #221519;
  --color-surface-offset-2: #2a1c21;
  --color-divider: #2c2026;
  --color-border: #34292e;

  --color-text: #ede0e2;
  --color-text-muted: #9a9091;
  --color-text-faint: #6a6062;
  --color-text-inverse: #2a1a1f;

  --color-primary: #b06376;
  --color-primary-hover: #974e5f;
  --color-primary-active: #7e3a4a;
  --color-primary-highlight: #3a2228;

  --color-gold: #e0b455;
  --color-gold-hover: #ecc477;
  --color-gold-highlight: #3a2f18;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
  --shadow-md: 0 6px 18px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 18px 44px oklch(0 0 0 / 0.5);
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1.1vw, 2.25rem);
  --text-2xl: clamp(2.1rem, 1.3rem + 3vw, 3.75rem);
  --text-hero: clamp(2.8rem, 1rem + 7vw, 6rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}

.container--wide {
  max-width: var(--content-wide);
}

.section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
}

.section--tight {
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: var(--space-3);
  max-width: 18ch;
}

.section-intro {
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 56ch;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.brand__mark {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.brand__name span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 3vw, var(--space-8));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2.5vw, var(--space-8));
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}

.nav__links a:hover {
  color: var(--color-text);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}

.nav__links a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* theme toggle */
.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
}

.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
}

/* mobile menu button */
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-surface);
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--on-dark.btn--ghost {
  color: #f7efe4;
  border-color: rgba(247, 243, 234, 0.45);
}

.btn--on-dark.btn--ghost:hover {
  border-color: #f7efe4;
  color: #ffffff;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 9vw, var(--space-24)) clamp(var(--space-16), 8vw, var(--space-20));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    95deg in oklab,
    oklch(0.22 0.06 25 / 0.9) 0%,
    oklch(0.19 0.06 25 / 0.7) 38%,
    oklch(0.16 0.04 25 / 0.32) 100%
  );
}

[data-theme='dark'] .hero__overlay {
  background: linear-gradient(
    95deg in oklab,
    oklch(0.10 0.05 25 / 0.9) 0%,
    oklch(0.10 0.05 25 / 0.7) 40%,
    oklch(0.09 0.03 25 / 0.4) 100%
  );
}

.hero__content {
  max-width: 46rem;
  color: #f7efe4;
}

.hero__eyebrow {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-top: var(--space-5);
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold);
}

.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.5;
  margin-top: var(--space-6);
  max-width: 40ch;
  color: rgba(247, 243, 234, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

/* trust strip */
.trust {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.trust__item {
  padding: var(--space-8) var(--space-4);
  text-align: center;
  border-right: 1px solid var(--color-divider);
}

.trust__item:last-child {
  border-right: none;
}

.trust__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.trust__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

/* ============================================================
   Services
   ============================================================ */
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-highlight);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  padding: 0.6rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-top: var(--space-5);
}

.service-card__desc {
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  font-size: var(--text-base);
}

.service-card__list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-card__list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
}

.service-card__list li::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* ============================================================
   About / feature split
   ============================================================ */
.about {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

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

.about__badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: color-mix(in oklab, var(--color-surface) 92%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-md);
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.about__badge span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.about__copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: var(--space-4);
}

.about__copy p {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.about__points {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.about__point {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.about__point svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about__point strong {
  display: block;
  font-size: var(--text-base);
}

.about__point span {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================================
   Process
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  counter-reset: step;
}

.process__step {
  position: relative;
  padding: var(--space-8) var(--space-6);
  border-top: 2px solid var(--color-primary);
}

.process__step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-4);
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
}

.process__step p {
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  font-size: var(--text-base);
}

/* ============================================================
   Visit (hours + map)
   ============================================================ */
.visit {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: stretch;
  margin-top: var(--space-12);
}

.visit__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.info-block h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}

.hours-table {
  margin-top: var(--space-4);
  width: 100%;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-divider);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: var(--space-3) 0;
  font-size: var(--text-base);
}

.hours-table td:first-child {
  color: var(--color-text-muted);
}

.hours-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.hours-table .closed {
  color: var(--color-text-faint);
}

.hours-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
}

.address {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.7;
}

.address a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.address a:hover {
  text-decoration: underline;
}

.visit__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 22rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-surface-offset);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  display: block;
}

.visit__cta {
  margin-top: var(--space-2);
}

/* ============================================================
   Testimonials
   ============================================================ */
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}

.quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
}

.quote::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--color-gold);
  opacity: 0.5;
  height: 1rem;
}

.quote p {
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--color-text);
  flex: 1;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
}

.quote__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
}

.quote__name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.quote__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  background: #6e2435;
  color: #f7efe4;
  text-align: center;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, oklch(0.9 0.12 90 / 0.12), transparent 50%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-inline: auto;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.cta p {
  margin-top: var(--space-5);
  color: rgba(247, 243, 234, 0.85);
}

.cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-10);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-16) var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
}

.footer__brand .brand__name {
  font-size: var(--text-lg);
}

.footer__about {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 32ch;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
}

.footer__col a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   Mobile action bar (sticky bottom on phones)
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  background: color-mix(in oklab, var(--color-surface) 95%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  gap: var(--space-3);
}

.mobile-bar .btn {
  flex: 1;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__links,
  .nav .btn--primary {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__media {
    order: -1;
  }
  .visit__grid {
    grid-template-columns: 1fr;
  }
  .quotes__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust__item {
    border-right: none;
    padding-inline: var(--space-2);
  }
  .trust__item:nth-child(1),
  .trust__item:nth-child(2) {
    border-bottom: 1px solid var(--color-divider);
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 4.5rem;
  }
  .hero__actions .btn {
    flex: 1;
  }
}

/* Mobile nav drawer open state */
@media (max-width: 900px) {
  .nav__links.is-open {
    display: flex;
    position: fixed;
    inset: 4.5rem 0 auto 0;
    flex-direction: column;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6) var(--space-5);
    gap: var(--space-5);
    box-shadow: var(--shadow-lg);
  }
  .nav__links.is-open a {
    font-size: var(--text-base);
  }
}
