/* =======================================================
   Foot Salad — Main Stylesheet
   Fresh, modern design for a community gallery
   ======================================================= */

/* ─── Custom Properties ─── */
:root {
  /* Colors */
  --clr-bg:            #F8FAF5;
  --clr-surface:       #FFFFFF;
  --clr-surface-2:     #F0F6F2;
  --clr-primary:       #1D6E47;
  --clr-primary-dark:  #145234;
  --clr-primary-light: #E6F4EC;
  --clr-accent:        #D4882A;
  --clr-accent-light:  #FDF3E3;
  --clr-text:          #0F1F15;
  --clr-text-2:        #364D41;
  --clr-text-muted:    #6B7F74;
  --clr-border:        #CDDDD5;
  --clr-border-light:  #E5EFE9;
  --clr-error:         #DC2626;
  --clr-success:       #16A34A;
  --clr-success-bg:    #DCFCE7;

  /* Typography */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Border radius */
  --r-sm:   0.375rem;
  --r-md:   0.75rem;
  --r-lg:   1.25rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 8px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.09), 0 4px 10px -2px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 50px -10px rgba(0,0,0,0.16);

  /* Transitions */
  --t:      180ms ease;
  --t-slow: 300ms ease;

  /* Layout */
  --max-w:  1200px;
  --nav-h:  70px;
  --px:     clamp(1rem, 5vw, 3rem);
}

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

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--t);
}

a:hover { color: var(--clr-primary-dark); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

main { flex: 1; }

.section { padding-block: var(--s-20); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--clr-text);
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); }

p { color: var(--clr-text-2); }

.text-muted  { color: var(--clr-text-muted); }
.text-center { text-align: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.6875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.4;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(29, 110, 71, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary-light);
  color: var(--clr-primary-dark);
}

/* ─── Navigation ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  transition: color var(--t);
}

.nav-logo:hover { color: var(--clr-primary-dark); }

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--clr-primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}

.nav-link {
  padding: var(--s-2) var(--s-4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-text-2);
  border-radius: var(--r-md);
  transition: all var(--t);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-primary);
  background: var(--clr-primary-light);
}

.nav-cta {
  margin-left: var(--s-4);
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t);
}

.nav-burger:hover { background: var(--clr-surface-2); }

.burger-line {
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--t-slow);
  transform-origin: center;
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  padding: var(--s-3) var(--px) var(--s-5);
  flex-direction: column;
  gap: var(--s-1);
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  padding: var(--s-3) var(--s-4);
  font-size: 1.0625rem;
}

/* ─── Page Header ─── */
.page-header {
  padding: var(--s-16) 0 var(--s-12);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% -20%, var(--clr-primary-light) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  text-align: center;
}

.page-header-inner .page-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  margin-bottom: var(--s-4);
}

.page-header-inner h1 {
  margin-bottom: var(--s-4);
}

.page-header-inner .lead {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ─── Hero ─── */
.hero {
  padding-block: var(--s-24) var(--s-16);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, var(--clr-primary-light) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  margin-bottom: var(--s-5);
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--s-6);
}

.hero-title .highlight {
  color: var(--clr-primary);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--s-8);
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

/* Hero image side */
.hero-visual {
  position: relative;
}

.hero-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  background: var(--clr-surface-2);
  position: relative;
}

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

.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--clr-primary-light) 0%, var(--clr-accent-light) 100%);
}

.hero-badge {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  right: var(--s-4);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: var(--r-full);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.25); }
}

.hero-badge-text p {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}

.hero-badge-text strong {
  font-size: 0.9375rem;
  color: var(--clr-text);
  font-weight: 700;
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: var(--s-12);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  margin-bottom: var(--s-4);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  max-width: 55ch;
  margin-inline: auto;
  line-height: 1.75;
  margin-top: var(--s-3);
}

/* ─── How It Works (Steps) ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-5);
}

.step-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-6);
  text-align: center;
  transition: all var(--t-slow);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border);
  transform: translateY(-3px);
}

.step-icon {
  width: 58px;
  height: 58px;
  background: var(--clr-primary-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-5);
  font-size: 1.75rem;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-2);
}

.step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--s-3);
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ─── Gallery Grid ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--clr-surface-2);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.025);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,21,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--s-3);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Gallery empty state */
.gallery-empty {
  text-align: center;
  padding: var(--s-24) 0;
  color: var(--clr-text-muted);
}

.gallery-empty-icon {
  font-size: 4rem;
  margin-bottom: var(--s-4);
}

/* Gallery count badge */
.gallery-count {
  display: flex;
  gap: var(--s-8);
  justify-content: center;
  margin-bottom: var(--s-10);
  flex-wrap: wrap;
}

.gallery-count-item {
  text-align: center;
}

.gallery-count-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: var(--s-1);
}

.gallery-count-label {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 12, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow), visibility var(--t-slow);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  transition: opacity var(--t);
}

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  margin-top: var(--s-3);
}

.lb-btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--r-full);
  color: #fff;
  font-size: 1.125rem;
  transition: background var(--t);
  border: none;
  cursor: pointer;
}

.lb-btn:hover { background: rgba(255, 255, 255, 0.25); }

.lb-close { top: var(--s-4); right: var(--s-4); }
.lb-prev  { top: 50%; left: var(--s-4);  transform: translateY(-50%); }
.lb-next  { top: 50%; right: var(--s-4); transform: translateY(-50%); }

.lb-counter {
  position: fixed;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ─── Forms ─── */
.form-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  box-shadow: var(--shadow-md);
  max-width: 580px;
  margin-inline: auto;
}

.form-group { margin-bottom: var(--s-5); }

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--s-2);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: 1rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px var(--clr-primary-light);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--clr-text-muted); }

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Honeypot — visually hidden but present for bots */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-submit {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  border-radius: var(--r-md);
  background: var(--clr-primary);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--t);
}

.form-submit:hover {
  background: var(--clr-primary-dark);
  box-shadow: 0 4px 14px rgba(29, 110, 71, 0.35);
  transform: translateY(-1px);
}

/* ─── Alert ─── */
.alert {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  margin-bottom: var(--s-6);
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
}

.alert-success {
  background: var(--clr-success-bg);
  color: var(--clr-success);
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.alert-error {
  background: #FEF2F2;
  color: var(--clr-error);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ─── Submit / Info Cards ─── */
.info-cards { display: flex; flex-direction: column; gap: var(--s-5); }

.info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--r-lg);
  padding: var(--s-7, 1.75rem);
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
  transition: all var(--t-slow);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border);
}

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-card-body h3 { font-size: 1.0625rem; margin-bottom: var(--s-2); }
.info-card-body p  { font-size: 0.9375rem; color: var(--clr-text-muted); line-height: 1.7; }

.hashtag-box {
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-accent-light));
  border: 2px dashed var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--s-10) var(--s-8);
  text-align: center;
  margin: var(--s-8) 0;
}

.hashtag-box .hashtag {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: var(--s-2);
}

.hashtag-box p {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--clr-text);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--s-12) 0 var(--s-8);
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-12);
  align-items: start;
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--s-6);
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: var(--s-3);
}

.footer-brand .nav-logo:hover { color: var(--clr-accent); }

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 32ch;
  line-height: 1.65;
}

.footer-nav { display: flex; flex-direction: column; gap: var(--s-3); }

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--s-1);
}

.footer-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--t);
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer-twitter {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--t);
  text-decoration: none;
}

.footer-twitter:hover { color: #fff; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .hero-visual { order: -1; }

  .hero-title,
  .hero-label,
  .hero-desc { text-align: center; }

  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta   { display: none; }
  .nav-burger { display: flex; }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--s-3);
  }

  .form-card { padding: var(--s-6); }

  .info-card { flex-direction: column; }

  .lb-prev,
  .lb-next   { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-2);
  }

  .hero { padding-block: var(--s-12) var(--s-10); }

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

  .hero-frame { aspect-ratio: 3 / 2; }
}

/* ─── Skeleton shimmer (loading placeholder) ─── */
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--clr-surface-2) 25%, var(--clr-border-light) 50%, var(--clr-surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  border-radius: var(--r-md);
}
