/* ==========================================
   ESTUDIO PODCAST SANT JOAN DESPÍ
   Diseño: claro sofisticado · cream + terracota
   Mobile-first, sin frameworks, optimizado conversión
   ========================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }
ul, ol { list-style: none; }

:root {
  --bg: #f5f3ee;
  --bg-elevated: #ffffff;
  --bg-warm: #ebe7df;
  --bg-dark: #1a1a1a;
  --ink: #1a1a1a;
  --ink-soft: #4b4b4b;
  --ink-muted: #6b6b6b;
  --ink-subtle: #8a8a8a;
  --accent: #c9542d;
  --accent-soft: #e8a690;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 em, h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
}

p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 500;
  z-index: 1000;
}
.skip-link:focus { top: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* SCROLL OFFSET para header sticky */
section[id] {
  scroll-margin-top: 72px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 16px; height: 16px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-place {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 1px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all var(--transition);
}

.nav-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.nav-list.is-open { display: flex; }
.nav-list li { padding: 0.75rem 0; }
.nav-list a {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 14px;
}
.nav-list a:hover { color: var(--ink); }
.btn-nav {
  display: inline-block !important;
  padding: 8px 16px !important;
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-radius: 8px;
  font-weight: 500;
}
.btn-nav:hover { background: var(--accent) !important; }

/* HERO */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-image {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--bg) 0%,
    var(--bg) 20%,
    rgba(245, 243, 238, 0.85) 40%,
    rgba(245, 243, 238, 0.4) 60%,
    transparent 85%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
}
.pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--ink);
}

.btn-block { width: 100%; }

/* META BAR */
.meta-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.meta-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.meta-item {
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.meta-item:nth-child(2) { border-right: 0; }
.meta-item:first-child { padding-left: 0; }
.meta-num {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1;
}
.meta-num span {
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
}
.meta-label {
  font-size: 12px;
  color: var(--ink-muted);
}

/* SECTIONS */
section { padding: 5rem 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 3.5rem;
  max-width: 760px;
}
.section-num {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
}
.section-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 540px;
}

/* PACKS */
.packs { background: var(--bg); }

.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pack-card {
  background: var(--bg-elevated);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}
.pack-card:hover {
  background: var(--bg-warm);
}

.pack-featured {
  background: var(--bg-dark);
  color: var(--bg);
}
.pack-featured:hover {
  background: var(--bg-dark);
}
.pack-featured .pack-title { color: var(--bg); }
.pack-featured .pack-desc { color: rgba(245, 243, 238, 0.7); }
.pack-featured .pack-features { color: rgba(245, 243, 238, 0.7); }
.pack-featured .pack-features li::before {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}
.pack-featured .pack-price { color: var(--bg); }
.pack-featured .pack-price span { color: rgba(245, 243, 238, 0.5); }
.pack-featured .pack-price-from { color: rgba(245, 243, 238, 0.5); }
.pack-featured .pack-link {
  color: var(--accent);
  border-top-color: rgba(255, 255, 255, 0.1);
}
.pack-featured .pack-num-big { color: rgba(201, 84, 45, 0.4); }

.pack-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pack-num-big {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.pack-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pack-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pack-features {
  margin-bottom: 24px;
  flex: 1;
}
.pack-features li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}
.pack-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}
.pack-features li.pack-feature-no::before {
  content: '✕';
  background: rgba(201, 84, 45, 0.08);
  color: var(--accent);
}


  color: var(--ink-muted);
  font-style: normal;
  font-size: 12px;
}

.pack-pricing { margin-bottom: 20px; }
.pack-price {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.pack-price span {
  font-size: 16px;
  color: var(--ink-muted);
  font-weight: 400;
}
.pack-price-from {
  font-size: 12px;
  color: var(--ink-muted);
}

.pack-link {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-weight: 500;
  transition: color var(--transition);
}
.pack-link:hover {
  color: var(--accent);
}
.pack-link svg {
  transition: transform var(--transition);
}
.pack-link:hover svg {
  transform: translateX(3px);
}

/* PERKS */
.perks {
  background: var(--bg);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.perk {
  padding-top: 24px;
  border-top: 1px solid var(--border-strong);
}
.perk-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-bottom: 18px;
}
.perk h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.perk p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* STUDIO */
.studio { background: var(--bg-warm); }
.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.studio-text p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.studio-features {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.studio-features li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.studio-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.studio-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* GALLERY */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ZONES */
.zones { background: var(--bg); }
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.zone-card {
  display: block;
  padding: 24px 28px;
  background: var(--bg-elevated);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--transition);
}
.zone-card:hover {
  background: var(--bg-warm);
}
.zone-time {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.zone-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.zone-card p {
  color: var(--ink-muted);
  font-size: 13px;
  margin: 0;
}

/* FAQ */
.faq { background: var(--bg-warm); }

.faq-list {
  max-width: 760px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] {
  border-color: var(--border-strong);
}
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 48px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* CONTACT */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-details {
  display: grid;
  gap: 16px;
}
.contact-details li {
  padding: 18px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 6px;
}
.contact-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-details a, .contact-details span {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}
.contact-details a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-elevated);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
}
.optional {
  color: var(--ink-muted);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-check label { margin: 0; font-size: 13px; color: var(--ink-muted); font-weight: 400; }
.form-check a { color: var(--accent); text-decoration: underline; }

/* FOOTER */
.site-footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-mark {
  background: var(--bg);
  color: var(--ink);
}
.footer-brand .logo-name { color: var(--bg); }
.footer-brand .logo-place { color: rgba(245, 243, 238, 0.5); }

.footer-col p {
  color: rgba(245, 243, 238, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-address {
  font-size: 13px !important;
  color: rgba(245, 243, 238, 0.4) !important;
}
.footer-col h4 {
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul li {
  padding: 5px 0;
}
.footer-col ul a {
  color: rgba(245, 243, 238, 0.7);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(245, 243, 238, 0.4);
  margin: 0;
  font-size: 12px;
}
.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}
.footer-legal a {
  color: rgba(245, 243, 238, 0.4);
}
.footer-legal a:hover { color: var(--accent); }

/* RESPONSIVE — TABLET 768px+ */
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .nav-list {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 28px;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .nav-list li { padding: 0; }

  .hero-image { display: block; }
  .hero { padding: 0; }
  .hero .container { padding-top: 4rem; padding-bottom: 4rem; }

  .meta-bar-grid { grid-template-columns: repeat(4, 1fr); }
  .meta-item:nth-child(2) { border-right: 1px solid var(--border); }
  .meta-item:nth-child(4) { border-right: 0; }

  .section-head {
    grid-template-columns: 100px 1fr;
    gap: 32px;
    align-items: start;
  }
  .section-num { padding-top: 10px; }

  .packs-grid { grid-template-columns: repeat(3, 1fr); }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .gallery-grid {
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: minmax(280px, auto);
  }
  .gallery-large { grid-column: span 1; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* RESPONSIVE — DESKTOP 1024px+ */
@media (min-width: 1024px) {
  section { padding: 6rem 0; }
  .perks-grid { grid-template-columns: repeat(4, 1fr); }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* LANDINGS LOCALES */
.landing-content { padding: 5rem 0; background: var(--bg); }

.landing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.landing-main h2 { margin-bottom: 1.5rem; }
.landing-main h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}
.landing-main p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.landing-list {
  margin: 0.5rem 0 1rem;
}
.landing-list li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.landing-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.landing-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.aside-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.aside-cta { background: var(--bg-warm); }

.how-to-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.how-to-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  list-style: none;
}
.how-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.how-to-list strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 2px;
}

.other-zones {
  background: var(--bg-warm);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .landing-grid {
    grid-template-columns: 1fr 340px;
    gap: 64px;
  }
}
