*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }

:root {
  color-scheme: dark;
  --bg: #0d1117;
  --surface: #161b22;
  --surface-alt: #1c2128;
  --border: #30363d;
  --border-hover: #484f58;
  --text: #e6edf3;
  --text-dim: #8b949e;
  --text-faint: #6e7681;
  --accent: #238636;
  --accent-light: #1a2e22;
  --accent-hover: #2ea043;
  --green: #238636;
  --green-light: #3ecf8e;
  --amber: #d29922;
  --amber-light: #302200;
  --red: #da3633;
  --red-light: #301ch2;
  --cyan: #1a8a8a;
  --cyan-light: #0d2020;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Inter', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

#app { min-height: 100vh; display: flex; flex-direction: column; }
#main { flex: 1; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.site-footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.site-footer-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--text-dim);
  text-decoration: none; transition: color var(--transition);
}
.site-footer-brand:hover { color: var(--text); }
.site-footer-icon { display: block; object-fit: contain; }
.site-footer-copy { font-size: 11px; color: var(--text-faint); }

@media (max-width: 480px) {
  .site-footer-inner { flex-direction: column; text-align: center; }
}

.container { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }

h1 { font-weight: 700; font-size: 28px; letter-spacing: -0.025em; color: var(--text); margin-bottom: 6px; }
h2 { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--text); margin-bottom: 10px; }
h3 { font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 6px; }
p { font-size: 13.5px; color: var(--text-dim); line-height: 1.7; }

header { margin-bottom: 36px; }
.subtitle { font-weight: 400; font-size: 13px; color: var(--text-dim); margin-top: 6px; }
.section-sub { font-size: 12px; color: var(--text-faint); margin-bottom: 16px; }

/* ── Navigation ─────────────────────── */
.top-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.top-nav-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; height: 48px; display: flex; align-items: center; }
.back-link {
  font-weight: 500; font-size: 12px; color: var(--accent);
  text-decoration: none; transition: all var(--transition);
  display: flex; align-items: center; gap: 5px; padding: 5px 12px; margin-left: -12px;
  border-radius: var(--radius-sm);
}
.back-link:hover { background: var(--accent-light); color: var(--accent-hover); }

.brand-link {
  font-weight: 500; font-size: 12px; color: var(--text-dim);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  padding: 5px 12px; margin-left: -12px; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.brand-link:hover { background: var(--accent-light); color: var(--text); }
.brand-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  object-fit: contain;
  /* Favicon art has inner padding — scale up within the nav slot */
  transform: scale(1.35);
  transform-origin: center;
}

.nav-menu { position: relative; margin-left: auto; display: inline-flex; }
.nav-menu summary {
  list-style: none; cursor: pointer;
  font-size: 11px; font-weight: 500;
  color: var(--text-faint); background: transparent;
  border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 6px;
  transition: all var(--transition);
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary:hover { color: var(--text); border-color: var(--border-hover); }
.nav-menu[open] summary { color: var(--text); border-color: var(--border-hover); }
.nav-menu ul {
  position: absolute; left: 50%; top: calc(100% + 4px); transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 4px; min-width: 130px;
  box-shadow: var(--shadow-lg); z-index: 200;
  list-style: none;
}
.nav-menu li { text-align: center; }
.nav-menu li a,
.nav-menu li button {
  display: block; width: 100%; padding: 7px 12px; border-radius: 4px;
  font-size: 12px; color: var(--text-dim);
  text-decoration: none; background: none; border: none; cursor: pointer;
  transition: background var(--transition);
}
.nav-menu li a:hover,
.nav-menu li button:hover { background: var(--accent-light); color: var(--text); }

/* ── Tray Grid ─────────────────────── */
.tray-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.tray-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.tray-card.interactive { cursor: pointer; }
.tray-card.interactive:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); }

.tray-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.tray-seed { font-weight: 600; font-size: 15px; color: var(--text); }
.tray-id { font-size: 12px; color: var(--accent); font-weight: 700; }
.tray-meta-row { display: flex; align-items: center; gap: 4px; font-size: 12px; margin-top: 4px; flex-wrap: wrap; }
.tray-meta-label { color: var(--text-faint); }
.tray-meta-value { color: var(--text-dim); font-weight: 500; }

.tray-urgency-amber { border-left: 3px solid var(--amber); }
.tray-urgency-red { border-left: 3px solid var(--red); }

/* ── Detail Card ─────────────────────── */
.detail-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.detail-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; gap: 14px;
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  color: var(--text-faint); font-weight: 500;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em;
  width: 120px; flex-shrink: 0; padding-top: 2px;
}
.detail-value { color: var(--text); flex: 1; font-size: 13px; }

/* ── Status Bar ─────────────────────── */
.status-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.status-btn {
  font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface); color: var(--text-dim);
  cursor: pointer; transition: all var(--transition);
}
.status-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.status-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; cursor: default; }

/* ── Tray Status Badges ─────────────── */
.tray-status {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 100px;
  background: var(--accent-light); color: var(--accent);
}
.tray-status[data-status="soaking"] { background: #0d1f3c; color: #4d8bd4; }
.tray-status[data-status="blackout"] { background: #1c1530; color: #8b6fcf; }
.tray-status[data-status="light"] { background: var(--amber-light); color: var(--amber); }

section { margin-bottom: 24px; }

/* ── Dashboard panels ─────────────── */
.dashboard-header { margin-bottom: 28px; }
.dashboard-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.dashboard-panel-head { margin-bottom: 16px; }
.dashboard-panel-head-inline { margin-bottom: 14px; }
.dashboard-panel-head h2 { margin-bottom: 4px; }
.dashboard-panel-head .section-sub { margin-bottom: 0; }
.dashboard-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.dashboard-search {
  flex: 1;
  min-width: 180px;
  max-width: 320px;
}

/* ── Forms ───────────────────────────── */
.inline-form { display: flex; gap: 8px; flex-wrap: wrap; }

.soak-form {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.7fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.soak-form-actions { min-width: 0; }
.soak-list {
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 4px;
}
.soak-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.soak-row:last-child { border-bottom: none; }
.soak-row-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  min-width: 0;
}
.soak-row-seed { font-weight: 600; font-size: 13px; }
.soak-row-weight { font-family: var(--mono); font-size: 13px; color: var(--green-light); }
.soak-row-when { font-size: 12px; color: var(--text-dim); }
@media (max-width: 640px) {
  .soak-form { grid-template-columns: 1fr; }
  .dashboard-search { max-width: none; width: 100%; }
}

.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 10px; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em; }

input, select, textarea {
  background: var(--surface-alt); border: 1px solid var(--border);
  color: var(--text); font-family: var(--sans); font-size: 13px;
  padding: 8px 12px; border-radius: var(--radius-sm); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(35,134,54,0.15);
}
input[type="number"] { appearance: textfield; }
input::placeholder, textarea::placeholder { color: var(--text-faint); }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236e7681' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; padding-right: 32px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 16px; font-family: var(--sans); font-size: 12px; font-weight: 500;
  border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition);
  border: 1px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-small {
  padding: 5px 12px; font-size: 11px; font-weight: 500;
  background: var(--accent-light); color: var(--accent);
  border-color: transparent; border-radius: var(--radius-sm);
}
.btn-small:hover { background: rgba(35,134,54,0.2); }
.btn-ghost {
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--border); padding: 5px 12px; font-size: 11px;
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }
.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { background: #f85149; }
.btn-danger-small {
  padding: 5px 12px; font-size: 11px; font-weight: 500;
  background: rgba(218, 54, 51, 0.12); color: #f85149;
  border: 1px solid transparent; border-radius: var(--radius-sm);
}
.btn-danger-small:hover { background: var(--red); color: white; }

/* ── Interaction List ────────────────── */
.interaction-list { display: grid; gap: 8px; }
.interaction-item {
  display: grid; grid-template-columns: auto 1fr;
  gap: 10px; align-items: start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  transition: box-shadow var(--transition);
}
.interaction-item:hover { box-shadow: var(--shadow-sm); }
.interaction-icon { font-size: 14px; padding-top: 1px; color: var(--text-dim); }
.interaction-action { font-weight: 500; font-size: 12px; text-transform: capitalize; color: var(--text); }
.interaction-note { font-size: 12px; color: var(--text-dim); margin-top: 1px; }
.interaction-time { font-size: 10px; color: var(--text-faint); font-weight: 500; margin-top: 5px; }

/* ── Search & Utils ─────────────────── */
.loading-placeholder, .empty-state {
  padding: 40px; text-align: center;
  color: var(--text-faint); font-size: 13px; font-weight: 500;
}
.empty-state svg { display: block; margin: 0 auto 12px; opacity: 0.4; }

.error { color: var(--red); font-size: 13px; padding: 12px 16px; background: rgba(218,54,51,0.1); border: 1px solid var(--red); border-radius: var(--radius-sm); margin: 12px 0; }
.success { color: var(--accent); font-size: 13px; padding: 12px 16px; background: var(--accent-light); border: 1px solid var(--accent); border-radius: var(--radius-sm); margin: 12px 0; }

/* ── Modal ───────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.72);
  display: flex; align-items: center;
  justify-content: center; z-index: 200;
}
.modal-overlay[hidden] { display: none; }
.modal {
  contain: layout style;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 90%; max-width: 440px; overflow: hidden;
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
}
.modal-header h3 { margin: 0; font-size: 14px; font-weight: 600; }
.modal-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-faint); padding: 0 2px; line-height: 1; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.modal-footer { display: flex; gap: 8px; justify-content: flex-end; padding: 16px 20px; border-top: 1px solid var(--border); background: var(--surface-alt); }

/* ── Fade-up Animations ─────────────── */
.fade-up { opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease-out, transform 0.4s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SOPs ────────────────────────── */
.principles, .io-grid, .equipment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.principle, .io-item, .problem, .equipment-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 18px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.principle:hover, .io-item:hover, .problem:hover, .equipment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.principle strong, .io-item strong, .problem strong { display: block; font-size: 13px; margin-bottom: 4px; color: var(--text); }

.lessons { display: grid; gap: 8px; }
.lesson {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 12px; background: var(--surface);
  padding: 14px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.lesson:hover { box-shadow: var(--shadow-md); }
.lesson-num {
  font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  height: 36px; border-radius: var(--radius-sm);
}

.phases { display: grid; gap: 12px; }
.phase {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition);
}
.phase:hover { box-shadow: var(--shadow-md); }
.phase-header {
  padding: 11px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; background: var(--surface-alt);
}
.phase-tag {
  font-size: 10px; font-weight: 700; color: var(--accent); background: var(--accent-light);
  padding: 2px 8px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.phase-name { font-weight: 600; font-size: 13px; color: var(--text); }
.phase-body { padding: 16px; }
.steps { list-style: none; padding: 0; }
.steps li { font-size: 12.5px; color: var(--text-dim); padding-left: 16px; position: relative; margin-bottom: 6px; line-height: 1.6; }
.steps li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; opacity: 0.6; }

/* ── Login ─────────────────────────── */
.login-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
.login-card { width: 100%; max-width: 360px; }
.login-header { text-align: center; margin-bottom: 28px; }
.login-title { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.login-subtitle { font-size: 12px; color: var(--text-faint); }
.login-form { display: flex; flex-direction: column; gap: 12px; }
.login-error { color: var(--red); font-size: 12px; padding: 10px 14px; background: rgba(218,54,51,0.1); border: 1px solid var(--red); border-radius: var(--radius-sm); }

/* ── QR ───────────────────────────── */
.qr-container { text-align: center; }
.qr-container svg { max-width: 200px; }

/* ── Responsive ─────────────────────── */
@media (max-width: 640px) {
  .principles, .io-grid, .equipment-grid, .tray-grid { grid-template-columns: 1fr; }
  h1 { font-size: 22px; }
  .container { padding: 28px 14px 70px; }
}

/* ── Landing Page ──────────────────── */
.lp { max-width: 960px; margin: 0 auto; padding: 0 24px 80px; }

.lp-hero {
  position: relative; text-align: center;
  padding: 48px 24px 40px; overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(35,134,54,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-brand {
  display: block;
  width: min(400px, calc(80vw * 1.25));
  max-width: 100%;
  height: auto;
  margin: 0 auto 8px;
}
.lp-hero-logo { width: 72px; height: 72px; margin-bottom: 16px; }
.lp-hero-title {
  font-size: 42px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 10px;
}
.lp-hero-sub { font-size: 16px; color: var(--text-dim); margin: 0 0 24px; }
.lp-hero-actions { display: flex; gap: 12px; justify-content: center; }
.lp-hero-actions .btn { padding: 10px 24px; font-size: 14px; }
.lp-hero-info {
  margin-top: 28px; display: flex; gap: 10px; justify-content: center;
  font-size: 12px; color: var(--text-faint); flex-wrap: wrap;
}
.lp-hero-info a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
.lp-hero-info a:hover { color: var(--accent); }
.lp-hero-info span { color: var(--text-faint); }

.lp-section { margin-bottom: 64px; }
.lp-section-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  text-align: center; margin-bottom: 20px; color: var(--text);
}
.lp-section-sub { font-size: 14px; color: var(--text-dim); text-align: center; margin-bottom: 28px; }

/* Gallery */
.lp-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.lp-gallery-item {
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  aspect-ratio: 1; position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 200px 200px;
}
.lp-gallery-item:hover {
  box-shadow: var(--shadow-md); border-color: var(--accent);
}
.lp-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Lightbox */
.lp-lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.15s ease;
  padding: 24px;
}
.lp-lightbox-open { opacity: 1; }
.lp-lightbox img {
  max-width: min(90vw, 1200px); max-height: 90vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.lp-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 36px;
  cursor: pointer; opacity: 0.6; transition: opacity 0.2s; line-height: 1;
  padding: 4px 8px; border-radius: 6px;
}
.lp-lightbox-close:hover { opacity: 1; background: rgba(255,255,255,0.1); }

/* Options — living tray vs aluminum */
.lp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.lp-compare-card {
  padding: 24px 28px;
  background: transparent;
}
.lp-compare-living {
  border-right: 1px solid var(--border);
}
.lp-compare-heading {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 16px; text-align: center;
}
.lp-compare-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-compare-list li {
  font-size: 13px; color: var(--text-dim); line-height: 1.55;
  display: flex; align-items: flex-start; gap: 10px;
}
.lp-compare-icon {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; border-radius: 50%;
  background: rgba(35,134,54,0.15); color: var(--accent);
}
@media (max-width: 768px) {
  .lp-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
  .lp-hero-title { font-size: 30px; }
  .lp-hero { padding: 32px 16px 32px; }
  .lp-compare {
    grid-template-columns: 1fr;
  }
  .lp-compare-living {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .lp-section-title { font-size: 18px; }
}

@media (max-width: 480px) {
  .lp-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .lp-hero-title { font-size: 26px; }
  .lp-hero-actions { flex-direction: column; align-items: center; }
  .lp-hero-actions .btn { width: 100%; max-width: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}