/* ============================================================
   Last Minute Laura — style.css
   
   HOW THIS FILE IS ORGANISED
   1. CSS Custom Properties (variables) — change colours/fonts here
   2. Reset & Base
   3. Utilities (skip link, section label, video wrap)
   4. Navigation
   5. Hero
   6. Live Stream Section
   7. Latest Video Section
   8. Tiers / Community Section
   9. Community Strip
   10. Footer
   11. Responsive (mobile-first breakpoints)
   12. Accessibility (focus styles, reduced motion)

   WANT TO CHANGE THE COLOUR SCHEME?
   Edit the values in the :root block below — everything
   references those variables so changes cascade everywhere.
============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
============================================================ */
:root {
  /* --- Colour palette --- */
  --color-oat:           #f8f4ee;   /* Page background */
  --color-linen:         #ece5d8;   /* Hero background, borders */
  --color-cream:         #fdfaf6;   /* Card backgrounds, latest video section */
  --color-brown:         #2e1f1a;   /* Primary text, dark backgrounds */
  --color-brown-dark:    #1a0f0a;   /* Footer background */
  --color-muted:         #7a6458;   /* Secondary text */
  --color-border:        #e2d8cc;   /* Subtle borders */

  --color-terra:         #b5623a;   /* Primary brand accent (terracotta) */
  --color-terra-light:   #f5e0d8;   /* Light terra backgrounds */
  --color-terra-dark:    #8c3f28;   /* Terra hover states */

  --color-sage:          #4a6b4e;   /* Live section background */
  --color-sage-light:    #daeadb;   /* Sage tints, notes */

  --color-discord:       #5865f2;   /* Discord / community accent */
  --color-discord-light: #eef0fe;   /* Discord tint backgrounds */

  --color-etsy:          #f1641e;   /* Etsy brand colour */
  --color-patreon:       #ff424d;   /* Patreon brand colour */
  --color-youtube-red:   #dc2626;   /* YouTube red */

  /* --- Typography --- */
  --font-display: 'Cormorant Garamond', Georgia, serif;  /* Headings */
  --font-body:    'DM Sans', system-ui, sans-serif;       /* Body text */

  /* --- Spacing & layout --- */
  --max-width:      1100px;    /* Maximum content width */
  --max-width-mid:   860px;    /* Narrower sections (video, community strip) */
  --max-width-tight: 640px;    /* Hero */
  --section-pad:    4rem;      /* Default section vertical padding */
  --radius:         14px;      /* Card border radius */
  --radius-sm:       8px;      /* Smaller radius (pills, buttons) */
}


/* ============================================================
   2. RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brown);
  background: var(--color-oat);
}

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

ul {
  list-style: none;
}

a {
  color: inherit;
}


/* ============================================================
   3. UTILITIES
============================================================ */

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-terra);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* --- Section label (small uppercase eyebrow text) --- */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terra);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

/* --- 16:9 video wrapper --- */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-brown);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Live dot animation --- */
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ============================================================
   4. NAVIGATION
============================================================ */
nav {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 200;
  position: relative; /* anchors the mobile dropdown */
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-brown);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo em {
  font-style: italic;
  color: var(--color-terra);
  font-weight: 400;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--color-terra);
}

/* "All my links" CTA button in nav */
.nav-cta {
  background: var(--color-terra) !important;
  color: #fff !important;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--color-terra-dark) !important;
}

/* Mobile hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-terra);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   5. HERO
============================================================ */
.hero {
  background: var(--color-linen);
  padding: 4.5rem 1.5rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.hero-inner {
  max-width: var(--max-width-tight);
  margin: 0 auto;
}

/* Small eyebrow text above h1 */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-brown);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-terra);
  font-weight: 400;
}

.hero-sub {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* Dark banner — prominent "all my links" CTA */
.links-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-brown);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}
.links-banner:hover {
  background: var(--color-brown-dark);
}
.links-banner-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.links-banner-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.links-banner-text strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}
.links-banner-text span {
  font-size: 0.78rem;
  color: #9e7a70;
}
.links-banner-arrow {
  color: var(--color-terra-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Platform buttons row */
.btn-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Base button style */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: filter 0.2s, transform 0.1s;
}
.btn:hover   { filter: brightness(1.1); }
.btn:active  { transform: scale(0.98); }

.btn-youtube  { background: var(--color-terra);  color: #fff; }
.btn-twitch   { border: 1.5px solid var(--color-sage); color: var(--color-sage); }
.btn-facebook { border: 1.5px solid var(--color-border); color: var(--color-muted); }

.btn-twitch:hover   { background: rgba(74,107,78,0.08); }
.btn-facebook:hover { background: rgba(0,0,0,0.04); }


/* ============================================================
   6. LIVE STREAM SECTION
   Hidden by default — live.js removes `hidden` when you're live.
============================================================ */
.live-section {
  background: var(--color-sage);
  padding: var(--section-pad) 1.5rem;
}

.live-inner {
  max-width: var(--max-width-mid);
  margin: 0 auto;
}

.live-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

/* Red animated badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c0392b;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.live-top h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.live-schedule {
  font-size: 0.85rem;
  color: var(--color-sage-light);
  margin-left: auto;
}

/* Stream platform tabs */
.stream-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.stream-tab {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.stream-tab:hover,
.stream-tab.active {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.live-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-sage-light);
}
.live-note a {
  color: var(--color-sage-light);
  font-weight: 500;
  text-decoration: underline;
}


/* ============================================================
   7. LATEST VIDEO SECTION
============================================================ */
.latest-section {
  background: var(--color-cream);
  padding: var(--section-pad) 1.5rem;
}

.latest-inner {
  max-width: var(--max-width-mid);
  margin: 0 auto;
}

.latest-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.video-caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.video-caption a {
  color: var(--color-terra);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.video-caption a:hover {
  color: var(--color-terra-dark);
  text-decoration: underline;
}


/* ============================================================
   8. TIERS / COMMUNITY SECTION
============================================================ */
.tiers-section {
  background: var(--color-oat);
  padding: var(--section-pad) 1.5rem;
}

.tiers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.tiers-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.tiers-sub {
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Three-column grid — collapses on mobile */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

/* Base tier card */
.tier-card {
  background: var(--color-cream);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative; /* for the featured badge */
  height: 100%;
}

/* Featured card (community tier) */
.tier-card--featured {
  border: 2px solid var(--color-discord);
  background: #fff;
}

/* Number circle */
.tier-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.tier-num--free      { background: var(--color-terra-light); color: var(--color-terra); }
.tier-num--etsy      { background: #fde8d8; color: var(--color-etsy); }
.tier-num--community { background: var(--color-discord-light); color: var(--color-discord); }

/* Tag pill */
.tier-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  width: fit-content;
}
.tier-tag--free      { background: var(--color-terra-light); color: var(--color-terra); }
.tier-tag--etsy      { background: #fde8d8; color: #c44e12; }
.tier-tag--community { background: var(--color-discord-light); color: var(--color-discord); }

/* Card heading */
.tier-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-brown);
  line-height: 1.2;
}

/* Card body text */
.tier-card p {
  font-size: 0.83rem;
  color: var(--color-muted);
  line-height: 1.75;
  flex: 1;
}

/* "Join the community" badge on featured card */
.tier-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-discord);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Platform pills (watch & follow card) */
.platform-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 0.5px solid var(--color-border);
  color: var(--color-brown);
  background: var(--color-oat);
}

/* Perks list (community card) */
.perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.4rem 0;
}
.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-discord);
  flex-shrink: 0;
}

/* Tier buttons */
.tier-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  padding: 0.62rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  transition: filter 0.2s;
  margin-top: 0.5rem;
}
.tier-btn:hover { filter: brightness(1.1); }

.tier-btn--free     { background: var(--color-terra); color: #fff; }
.tier-btn--etsy     { background: var(--color-etsy);  color: #fff; }
.tier-btn--patreon  { background: var(--color-patreon); color: #fff; }
.tier-btn--ytmember { background: var(--color-youtube-red); color: #fff; }

/* "or" divider between the two membership buttons */
.membership-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.btn-divider {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-divider::before,
.btn-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--color-border);
}
.btn-divider span {
  font-size: 0.7rem;
  color: var(--color-muted);
}


/* ============================================================
   9. COMMUNITY STRIP
   Dark closing section reinforcing the membership pitch.
============================================================ */
.community-strip {
  background: var(--color-brown);
  padding: var(--section-pad) 1.5rem;
}

.community-strip-inner {
  max-width: var(--max-width-mid);
  margin: 0 auto;
  text-align: center;
}

.community-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.community-strip h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-terra-light);
}

.community-strip p {
  font-size: 0.92rem;
  color: #9e7a70;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Horizontal perks list */
.unified-perks {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.unified-perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: #c9a898;
}
.unified-perk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-discord);
  flex-shrink: 0;
}

/* Two equal platform cards */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.platform-card {
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: filter 0.2s;
}
.platform-card:hover { filter: brightness(1.08); }

.platform-card--patreon { background: var(--color-patreon); }
.platform-card--youtube { background: var(--color-youtube-red); }

.platform-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-card strong {
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
}
.platform-card span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}


/* ============================================================
   10. FOOTER
============================================================ */
footer {
  background: var(--color-brown-dark);
  padding: 2.25rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-oat);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.footer-logo em {
  font-style: italic;
  color: var(--color-terra-light);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  /* Reset nav element styles inherited from the top nav */
  background: transparent;
  border: none;
  padding: 0;
  height: auto;
  position: static;
  box-shadow: none;
}
.footer-links a {
  color: #6b4c43;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
  /* Reset padding inherited from nav link styles */
  padding: 0;
  display: inline;
  width: auto;
}
.footer-links a:hover {
  color: var(--color-terra-light);
}

.footer-copy {
  color: #3d2218;
  font-size: 0.75rem;
}

/* Thin vertical divider between main links and Privacy Policy */
.footer-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #3d2218;
  vertical-align: middle;
  margin: 0 0.1rem;
}

/* Privacy Policy link — slightly lighter to distinguish from platform links */
.footer-privacy {
  color: #8c6050 !important;
  font-weight: 500;
}


/* ============================================================
   11. RESPONSIVE — MOBILE FIRST
   Breakpoints:
   - 640px: mobile (single column, stacked buttons)
   - 900px: tablet (about grid collapses)
============================================================ */
@media (max-width: 640px) {

  :root {
    --section-pad: 3rem; /* Slightly tighter on mobile */
  }

  /* Show hamburger, hide desktop nav links */
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 199; /* FIX: sits above hero and page content */
  }
  /* JS adds .open to show the menu */
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }
  /* FIX: nav-cta gets its own padding so it doesn't inherit
     the link padding and overflow the container */
  .nav-cta {
    padding: 0.65rem 1rem !important;
    margin: 0.4rem 1.5rem !important;
    width: calc(100% - 3rem) !important;
    font-size: 0.9rem !important;
    text-align: center;
    border-radius: 6px;
    display: block;
  }

  /* Hero: stack buttons full-width */
  .hero {
    padding: 3.5rem 1.25rem 4rem;
  }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
    width: 100%;
  }
  .links-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Live section: hide schedule, stack tabs */
  .live-schedule {
    display: none;
  }
  .stream-tabs {
    flex-wrap: wrap;
  }

  /* Tiers: single column */
  .tiers-grid {
    grid-template-columns: 1fr;
  }

  /* Community strip: stack perks and cards */
  .unified-perks {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .platform-cards {
    grid-template-columns: 1fr;
  }

  /* Footer: tighter link spacing */
  .footer-links {
    gap: 0.75rem;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  /* Tablet: two-column tiers */
  .tiers-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Community card spans full width on tablet */
  .tier-card--featured {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}


/* ============================================================
   12. ACCESSIBILITY
============================================================ */

/* Visible focus ring for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-terra);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}