:root {
  --primary: #c0392b;
  --accent: #27ae60;
  --bg: #fefefe;
  --text: #2c2c2c;
  --light: #f8f4f0;
  --border: #e8ddd5;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --radius: 8px;
  --font: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; padding-top: 36px; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* DEMO BAR */
.demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: var(--primary); color: var(--white);
  text-align: center; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
}
.demo-bar a { color: var(--white); text-decoration: underline; margin: 0 4px; }

/* HEADER */
header {
  background: var(--white); border-bottom: 3px solid var(--primary);
  position: sticky; top: 36px; z-index: 900; box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-name { font-size: 1.05rem; font-weight: 800; color: var(--primary); display: block; line-height: 1.2; }
.logo-sub { font-size: 0.68rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; display: block; }

#nav-toggle { display: none; }
.nav-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-label span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }

nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
nav ul li a {
  display: block; padding: 8px 14px; color: var(--text); font-weight: 600;
  font-size: 0.9rem; border-radius: var(--radius); transition: all 0.2s; text-decoration: none;
}
nav ul li a:hover, nav ul li a.active { background: var(--primary); color: var(--white); }
nav ul li a.nav-cta { background: var(--accent); color: var(--white); }
nav ul li a.nav-cta:hover { background: #219a52; }

@media (max-width: 768px) {
  .nav-label { display: flex; }
  nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border);
    box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height 0.3s;
  }
  #nav-toggle:checked ~ nav { max-height: 400px; }
  nav ul { flex-direction: column; gap: 0; padding: 12px 20px; align-items: stretch; }
  nav ul li a { padding: 10px 16px; }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 40%, #1a2d0a 100%);
  color: var(--white); padding: 80px 20px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(39,174,96,0.2) 0%, transparent 60%);
}
.hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: var(--accent); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.hero h1 span { color: #f5c842; }
.hero-sub { font-size: 1.05rem; opacity: 0.85; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.92rem; cursor: pointer; transition: all 0.2s;
  border: none; text-decoration: none; font-family: var(--font);
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #a93226; text-decoration: none; }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #219a52; text-decoration: none; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--text); text-decoration: none; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* SECTIONS */
section { padding: 60px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.section-title span { color: var(--primary); }
.section-desc { color: #666; max-width: 560px; margin: 0 auto; font-size: 0.95rem; }

/* FLAG STRIP */
.flag-strip { display: flex; height: 6px; }
.flag-green { flex: 1; background: var(--accent); }
.flag-white { flex: 1; background: var(--white); border-top: 1px solid #eee; }
.flag-red { flex: 1; background: var(--primary); }

/* PIZZA CARDS */
.pizza-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pizza-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.pizza-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.pizza-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #6b3410 0%, #8b4513 100%);
}
.pizza-info { padding: 20px; }
.pizza-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.pizza-desc { color: #666; font-size: 0.88rem; margin-bottom: 14px; }
.pizza-footer { display: flex; align-items: center; justify-content: space-between; }
.pizza-price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.pizza-badge { background: var(--light); color: var(--accent); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid var(--accent); }

/* PROSES */
.proses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.proses-item { text-align: center; }
.proses-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #e74c3c);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
}
.proses-icon.green { background: linear-gradient(135deg, var(--accent), #2ecc71); }
.proses-icon.gold { background: linear-gradient(135deg, #f39c12, #e67e22); }
.proses-title { font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.proses-desc { font-size: 0.88rem; color: #666; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #a93226 50%, #2d0f0f 100%);
  color: var(--white); text-align: center; padding: 64px 20px;
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { opacity: 0.88; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* MENU NAV */
.menu-nav { background: var(--white); border-bottom: 2px solid var(--border); padding: 0 20px; position: sticky; top: 100px; z-index: 100; }
.menu-nav-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav-link { display: block; padding: 14px 20px; font-weight: 700; font-size: 0.88rem; color: var(--text); white-space: nowrap; border-bottom: 3px solid transparent; text-decoration: none; transition: all 0.2s; }
.menu-nav-link:hover, .menu-nav-link.active { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }

/* MENU ITEMS */
.menu-section { padding: 48px 20px; }
.menu-section:nth-child(even) { background: var(--light); }
.menu-section-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.menu-section-title::after { content: ''; flex: 1; height: 2px; background: var(--border); }
.menu-section-sub { color: #888; font-size: 0.85rem; margin-bottom: 28px; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.menu-item {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; transition: box-shadow 0.2s;
}
.menu-item:hover { box-shadow: var(--shadow); }
.menu-item-thumb { width: 64px; height: 64px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.thumb-pizza { background: radial-gradient(circle, #f5c842 30%, #c47c20 70%, #8b4513 100%); border-radius: 50%; }
.thumb-pasta { background: linear-gradient(135deg, #f0c060, #d4a020); }
.thumb-appetizer { background: linear-gradient(135deg, #e8f5e0, #a8d87a); }
.thumb-dessert { background: linear-gradient(135deg, #3d1a08, #6b3410); }
.thumb-drink { background: linear-gradient(135deg, #1a6b3a, #27ae60); }
.menu-item-info { flex: 1; }
.menu-item-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.menu-item-desc { font-size: 0.82rem; color: #777; margin-bottom: 10px; line-height: 1.5; }
.menu-item-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-item-price { font-weight: 800; color: var(--primary); font-size: 1rem; }
.menu-tag { font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; }
.tag-bestseller { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.tag-spicy { background: #ffe0e0; color: #c0392b; border: 1px solid #c0392b; }
.tag-veg { background: #e0f5e9; color: #27ae60; border: 1px solid #27ae60; }
.tag-new { background: #e3f2fd; color: #1565c0; border: 1px solid #1565c0; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.value-item { background: var(--white); border-radius: var(--radius); padding: 24px 20px; text-align: center; border: 1px solid var(--border); }
.value-num { font-size: 2rem; font-weight: 900; color: var(--primary); display: block; line-height: 1; margin-bottom: 6px; }
.value-label { font-size: 0.82rem; color: #666; font-weight: 600; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-thumb { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.gallery-caption { background: var(--white); padding: 14px 16px; }
.gallery-caption-title { font-weight: 700; font-size: 0.92rem; }
.gallery-caption-sub { font-size: 0.78rem; color: #888; margin-top: 3px; }

/* CSS Art: Pizza */
.art-pizza-bg { background: radial-gradient(circle at 50% 50%, #8b4513 0%, #6b3410 100%); width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.css-pizza { width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, #f5c842 0%, #d4a020 50%, #8b4513 80%, #6b3410 100%); position: relative; }
.css-pizza-sauce { position: absolute; top: 12%; left: 12%; width: 76%; height: 76%; border-radius: 50%; background: radial-gradient(circle, #e74c3c 0%, #c0392b 70%); }
.css-pizza-cheese { position: absolute; top: 20%; left: 20%; width: 60%; height: 60%; border-radius: 50%; background: radial-gradient(circle, #ffeaa7 0%, #fdcb6e 60%, #f9ca24 100%); opacity: 0.9; }
.css-pizza-dot { position: absolute; border-radius: 50%; background: #27ae60; }

/* CSS Art: Pasta */
.art-pasta-bg { background: linear-gradient(180deg, #2d1a0a 0%, #4a2a10 100%); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.pasta-wave { position: absolute; width: 130%; height: 10px; border-radius: 5px; background: linear-gradient(90deg, transparent, #f5c842, #e8a820, #f5c842, transparent); }

/* CSS Art: Tiramisu */
.art-tiramisu-bg { background: #3d1a08; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.css-tiramisu { width: 160px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.tira-layer { height: 26px; }
.tira-cream { background: linear-gradient(90deg, #f5e6d0, #ede0c8); }
.tira-coffee { background: linear-gradient(90deg, #3d1a08, #5c2a10); }
.tira-cocoa { background: linear-gradient(90deg, #2d1000, #3d1a08); }

/* CSS Art: Trattoria */
.art-trattoria-bg { background: linear-gradient(160deg, #1a0a0a 0%, #2d0f0f 40%, #0a1a0a 100%); width: 100%; height: 100%; position: relative; overflow: hidden; }
.trattoria-wall { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px); }
.trattoria-table { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 160px; height: 10px; background: #8b5a2b; border-radius: 3px; }
.trattoria-tablecloth { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); width: 140px; height: 4px; background: repeating-linear-gradient(90deg, #c0392b 0px, #c0392b 8px, white 8px, white 16px); }
.trattoria-candle { position: absolute; bottom: 40px; left: calc(50% - 6px); }
.t-candle-body { width: 10px; height: 32px; background: #faebd7; border-radius: 2px; }
.t-candle-flame { width: 8px; height: 14px; background: radial-gradient(ellipse, #fff7aa 0%, #ffaa00 50%, #ff4400 100%); border-radius: 50% 50% 30% 30%; margin: 0 auto; }
.trattoria-wine-l { position: absolute; bottom: 40px; left: calc(50% + 30px); }
.trattoria-wine-r { position: absolute; bottom: 40px; right: calc(50% - 60px); display: none; }
.wine-bowl { width: 22px; height: 18px; background: rgba(192,57,43,0.7); border-radius: 0 0 14px 14px; }
.wine-stem { width: 3px; height: 20px; background: rgba(255,255,255,0.5); margin: 0 auto; }
.wine-base { width: 16px; height: 3px; background: rgba(255,255,255,0.5); margin: 0 auto; border-radius: 2px; }

/* CSS Art: Gelato */
.art-gelato-bg { background: linear-gradient(135deg, #e8f4f8, #b8e0f0); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.css-gelato { display: flex; flex-direction: column; align-items: center; }
.gelato-scoops { display: flex; flex-direction: column; align-items: center; margin-bottom: -4px; }
.g-scoop { width: 58px; height: 58px; border-radius: 50%; margin-bottom: -10px; }
.g-pistachio { background: radial-gradient(circle, #b8e07a, #5a9a2a); }
.g-strawberry { background: radial-gradient(circle, #ff8fa3, #c0392b); }
.g-vanilla { background: radial-gradient(circle, #ffeaa7, #e8c840); }
.gelato-cone-shape { width: 0; height: 0; border-left: 32px solid transparent; border-right: 32px solid transparent; border-top: 72px solid #d4892a; }

/* CSS Art: Oven */
.art-oven-bg { background: radial-gradient(ellipse at 50% 120%, #ff6600 0%, #cc3300 30%, #800000 60%, #1a0000 100%); width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 0; position: relative; overflow: hidden; }
.oven-body { position: absolute; bottom: 0; width: 200px; height: 120px; background: linear-gradient(180deg, #555 0%, #333 100%); border-radius: 8px 8px 0 0; }
.oven-opening { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 120px; height: 70px; background: radial-gradient(ellipse, #ffcc00 0%, #ff6600 40%, #cc2200 70%, #330000 100%); border-radius: 50% 50% 0 0; }
.oven-door { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 140px; height: 42px; background: #444; border-radius: 4px 4px 0 0; border: 2px solid #666; }

/* ABOUT GRID */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.cert-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.cert-badge { display: flex; align-items: center; gap: 8px; background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 14px; font-size: 0.82rem; font-weight: 600; }
.cert-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: 12px; padding: 28px 20px; text-align: center; box-shadow: var(--shadow); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 900; color: white; }
.team-name { font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: #666; }

/* FORM */
.reservasi-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .reservasi-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border-radius: 12px; padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.form-card > p { color: #666; font-size: 0.88rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
label .req { color: var(--primary); }
input, select, textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem; color: var(--text); background: var(--bg); transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); }
textarea { resize: vertical; min-height: 90px; }
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.radio-option { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; transition: all 0.2s; }
.radio-option input[type="radio"] { width: auto; flex-shrink: 0; }
.radio-option:has(input:checked) { border-color: var(--primary); background: #fef0ee; color: var(--primary); }
.btn-submit { width: 100%; padding: 14px; background: var(--primary); color: var(--white); border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; font-family: var(--font); }
.btn-submit:hover { background: #a93226; }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.info-card.green { border-left-color: var(--accent); }
.info-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.info-card p, .info-card li { font-size: 0.85rem; color: #555; line-height: 1.7; }
.info-card ul { padding-left: 18px; }
.prebook-box { background: linear-gradient(135deg, var(--primary), #a93226); color: var(--white); border-radius: var(--radius); padding: 20px; }
.prebook-box h3 { color: var(--white); }
.prebook-box p { color: rgba(255,255,255,0.88); font-size: 0.85rem; }

/* FOOTER */
footer { background: #1a0a0a; color: rgba(255,255,255,0.8); padding: 48px 20px 24px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-tagline { font-size: 0.85rem; opacity: 0.7; margin-top: 10px; line-height: 1.6; }
.footer-halal { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-top: 12px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; align-items: flex-start; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; opacity: 0.6; flex-wrap: wrap; gap: 8px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.hours-table td { padding: 5px 0; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-today { color: var(--accent); font-weight: 700; }

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
