@import url("/css/fonts.css");

:root {
  --bg: oklch(0.97 0.012 75);
  --text: oklch(0.22 0.02 40);
  --text-muted: oklch(0.4 0.03 45);
  --text-muted-2: oklch(0.48 0.03 45);
  --text-muted-3: oklch(0.5 0.03 45);
  --brand: oklch(0.32 0.13 20);
  --brand-hover: oklch(0.24 0.13 20);
  --brand-light: oklch(0.55 0.14 20);
  --accent-label: oklch(0.5 0.1 25);
  --border: oklch(0.89 0.02 65);
  --border-strong: oklch(0.86 0.02 60);
  --card-bg: oklch(0.995 0.005 70);
  --section-alt: oklch(0.94 0.015 60);
  --footer-bg: oklch(0.2 0.02 35);
  --footer-text: oklch(0.85 0.015 55);
  --footer-text-muted: oklch(0.72 0.015 55);
  --ok: oklch(0.45 0.1 145);
  --warn: oklch(0.5 0.15 30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Karla', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; margin: 0; }
input, select, textarea, button { font-family: 'Karla', Arial, sans-serif; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }
::placeholder { color: oklch(0.55 0.02 60); }
img { max-width: 100%; display: block; }
button { font: inherit; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
.fade-in { animation: fadeIn 0.4s ease; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.97 0.012 75 / 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand-link {
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: oklch(0.97 0.01 60);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', Georgia, serif; font-weight: 700; font-size: 18px;
}
.brand-name {
  font-family: 'Lora', Georgia, serif; font-weight: 700; font-size: 21px;
  letter-spacing: 0.01em; color: var(--text);
}
.desktop-nav { display: none; gap: 16px; margin-left: 8px; flex: 1; overflow-x: auto; min-width: 0; }
.desktop-nav a {
  background: none; border: none; cursor: pointer; padding: 6px 0;
  font-size: 14.5px; font-weight: 600; color: oklch(0.32 0.03 45); white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--brand); }
.desktop-search { display: none; align-items: center; gap: 6px; flex: 1; max-width: 320px; }
.desktop-search input {
  width: 100%; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: oklch(0.995 0.005 70); font-size: 13.5px; outline: none;
}
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; flex-shrink: 0; }
.icon-btn {
  background: none; border: none; cursor: pointer; width: 22px; height: 22px;
  border-radius: 50%; border: 1.6px solid oklch(0.3 0.03 45); position: relative; padding: 0;
}
.cart-btn { background: none; border: none; cursor: pointer; position: relative; padding: 2px; }
.cart-icon { width: 22px; height: 18px; border: 1.6px solid oklch(0.3 0.03 45); border-radius: 3px 3px 6px 6px; }
.cart-badge {
  position: absolute; top: -6px; right: -6px; background: var(--brand); color: white;
  font-size: 10.5px; font-weight: 700; min-width: 17px; height: 17px; border-radius: 50%;
  display: none; align-items: center; justify-content: center; padding: 0 3px;
}
.cart-badge.show { display: flex; }
.hamburger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 4px; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; }
.mobile-menu {
  border-top: 1px solid var(--border); padding: 16px 24px 20px; display: none;
  flex-direction: column; gap: 2px; background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu input[type="text"] {
  width: 100%; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border-strong);
  margin-bottom: 12px; font-size: 14px; outline: none;
}
.mobile-menu a {
  text-align: left; background: none; border: none; cursor: pointer; padding: 10px 4px;
  font-size: 15px; font-weight: 600; color: oklch(0.28 0.03 45); border-bottom: 1px solid var(--border);
  text-decoration: none;
}

@media (min-width: 1280px) {
  .desktop-nav { display: flex !important; }
  .desktop-search { display: flex !important; }
  .hamburger { display: none !important; }
  .mobile-search-btn { display: none !important; }
  .mobile-menu { display: none !important; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--footer-bg); color: oklch(0.95 0.01 60); padding: 16px 24px;
  display: none; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 13.5px; max-width: 640px; }
.cookie-banner a { color: oklch(0.85 0.03 60); text-decoration: underline; }
.cookie-accept {
  background: oklch(0.5 0.1 20); color: white; border: none; padding: 8px 18px;
  border-radius: 999px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
}

main { flex: 1; }

/* HERO */
.hero-section { position: relative; max-width: 1280px; margin: 24px auto 0; padding: 0 24px; }
.hero-box { position: relative; border-radius: 6px; overflow: hidden; height: 560px; }
.hero-box img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.15 0.02 30 / 0.15), oklch(0.1 0.02 30 / 0.75));
}
.hero-content { position: absolute; bottom: 0; left: 0; padding: 56px 56px 64px; max-width: 620px; }
.hero-content h1 { font-size: 46px; color: oklch(0.98 0.01 60); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.hero-content p { font-size: 17px; color: oklch(0.93 0.02 60); margin-bottom: 30px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; padding: 15px 30px; border-radius: 999px; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--brand-light); color: white; }
.btn-ghost-light { background: oklch(0.98 0.01 60 / 0.12); color: white; border: 1.5px solid oklch(0.9 0.02 60 / 0.6); }
.btn-solid { background: var(--brand); color: white; }
.btn-solid:hover { background: var(--brand-hover); color: white; }
.btn-outline { background: none; border: 1.5px solid oklch(0.3 0.03 45); color: var(--text); }
.btn-text { background: none; border: none; cursor: pointer; font-weight: 700; font-size: 14px; color: var(--brand); }

@media (max-width: 640px) {
  .hero-box { height: 460px; }
  .hero-content { padding: 32px 24px 40px; }
  .hero-content h1 { font-size: 32px; }
}

/* SECTIONS */
.section { max-width: 1280px; margin: 0 auto; padding: 88px 24px 20px; }
.section-alt { background: var(--section-alt); margin-top: 88px; padding: 90px 24px; }
.section-alt-inner { max-width: 1280px; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 12px; }
.section-head h2 { font-size: 30px; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent-label); text-transform: uppercase; margin-bottom: 10px; }
.section-center { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-center h2 { font-size: 32px; }

/* GRIDS */
.grid-categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.category-tile {
  text-align: left; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 0; cursor: pointer; overflow: hidden; text-decoration: none; color: inherit; display: block;
}
.category-tile img { height: 130px; width: 100%; object-fit: cover; }
.category-tile-body { padding: 16px 18px; }
.category-tile-body .name { font-family: 'Lora', Georgia, serif; font-weight: 600; font-size: 16.5px; margin-bottom: 4px; }
.category-tile-body .desc { font-size: 12.5px; color: var(--text-muted-3); }

.grid-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }

/* PRODUCT CARD */
.product-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
}
.product-card-img-link { background: none; border: none; cursor: pointer; padding: 0; display: block; text-align: left; text-decoration: none; }
.product-card-img { height: 160px; width: 100%; object-fit: cover; }
.product-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-card-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-label); margin-bottom: 6px; }
.product-card-name {
  background: none; border: none; cursor: pointer; padding: 0; text-align: left;
  font-family: 'Lora', Georgia, serif; font-weight: 600; font-size: 15.5px; color: var(--text);
  margin-bottom: 6px; line-height: 1.3; text-decoration: none; display: block;
}
.product-card-desc { font-size: 12.5px; color: var(--text-muted-3); margin-bottom: 12px; flex: 1; }
.product-card-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.product-card-price { font-size: 17px; font-weight: 700; color: var(--brand); }
.product-card-weight { font-size: 12px; color: var(--text-muted-3); }
.product-card-avail { font-size: 11.5px; margin-bottom: 12px; }
.product-card-avail.ok { color: var(--ok); }
.product-card-avail.no { color: var(--warn); }
.btn-add {
  background: var(--brand); color: white; border: none; padding: 11px 14px; border-radius: 999px;
  font-weight: 700; font-size: 13px; cursor: pointer; width: 100%;
}
.btn-add:hover { background: var(--brand-hover); }

/* TRADITION STEPS */
.grid-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.step { text-align: center; padding: 20px 14px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: white;
  display: flex; align-items: center; justify-content: center; font-family: 'Lora', Georgia, serif;
  font-weight: 700; font-size: 20px; margin: 0 auto 16px;
}
.step-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; font-family: 'Lora', Georgia, serif; }
.step-desc { font-size: 12.5px; color: var(--text-muted-2); }

/* ADVANTAGES */
.grid-advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.advantage { padding: 8px; }
.advantage-icon { width: 44px; height: 44px; border-radius: 10px; background: oklch(0.9 0.03 40); margin-bottom: 18px; }
.advantage-title { font-family: 'Lora', Georgia, serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.advantage-desc { font-size: 13.5px; color: oklch(0.46 0.03 45); }

/* BLOG */
.grid-blog { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.blog-card {
  text-align: left; background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; cursor: pointer; padding: 0; text-decoration: none; color: inherit; display: block;
}
.blog-card img { height: 140px; width: 100%; object-fit: cover; }
.blog-card-body { padding: 18px 20px; }
.blog-card-title { font-family: 'Lora', Georgia, serif; font-weight: 600; font-size: 16px; margin-bottom: 8px; line-height: 1.35; }
.blog-card-excerpt { font-size: 13px; color: var(--text-muted-3); }

/* FOOTER */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: auto; }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 64px 24px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer-brand { font-family: 'Lora', Georgia, serif; font-weight: 700; font-size: 20px; color: oklch(0.97 0.01 60); margin-bottom: 14px; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: var(--footer-text-muted); max-width: 260px; }
.footer-col-title { font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: oklch(0.97 0.01 60); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-align: left; background: none; border: none; cursor: pointer; padding: 0; font-size: 13.5px; color: oklch(0.75 0.015 55); text-decoration: none; }
.footer-links a:hover { color: oklch(0.95 0.01 60); }
.footer-contact { font-size: 13px; line-height: 1.9; color: var(--footer-text-muted); }
.footer-contact a { color: oklch(0.85 0.03 60); text-decoration: underline; margin-top: 8px; display: inline-block; font-size: 13px; }
.footer-bottom { border-top: 1px solid oklch(0.3 0.02 35); padding: 20px 24px; text-align: center; font-size: 12px; color: oklch(0.6 0.015 55); }

@media (max-width: 899px) {
  .catalog-grid { grid-template-columns: 1fr !important; }
  .product-grid { grid-template-columns: 1fr !important; }
  .checkout-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* GENERIC PAGE */
.page { max-width: 1280px; margin: 0 auto; padding: 40px 24px 90px; }
.page-narrow { max-width: 720px; margin: 0 auto; padding: 60px 24px 100px; }
.page-medium { max-width: 900px; margin: 0 auto; padding: 50px 24px 100px; }
.page-1000 { max-width: 1000px; margin: 0 auto; padding: 50px 24px 100px; }
.page-1080 { max-width: 1080px; margin: 0 auto; padding: 60px 24px 100px; }
.page-center { max-width: 620px; margin: 0 auto; padding: 100px 24px 140px; text-align: center; }
.page-account { max-width: 500px; margin: 0 auto; padding: 100px 24px 140px; text-align: center; }

.back-link { background: none; border: none; cursor: pointer; font-size: 13px; color: var(--text-muted-3); margin-bottom: 20px; display: inline-block; text-decoration: none; }

/* CATALOG */
.catalog-grid { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.filters { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 90px; }
.filter-label { font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 4px; }
.filter-list button { text-align: left; background: none; border: none; cursor: pointer; padding: 6px 8px; border-radius: 6px; font-size: 13.5px; color: oklch(0.3 0.03 45); }
.filter-list button:hover, .filter-list button.active { background: oklch(0.92 0.015 60); }
.filters select, .filters input[type="range"] { width: 100%; }
.filters select { padding: 8px; border-radius: 6px; border: 1px solid var(--border-strong); font-size: 13px; }
.filter-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13.5px; cursor: pointer; }
.empty-msg { text-align: center; padding: 80px 20px; color: var(--text-muted-3); }

/* PRODUCT DETAIL */
.product-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.product-main-img { height: 420px; width: 100%; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.product-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-gallery img { height: 100px; width: 100%; object-fit: cover; border-radius: 6px; }
.product-cat { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-label); margin-bottom: 10px; }
.product-title { font-size: 30px; margin-bottom: 14px; }
.product-price { font-size: 26px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.product-meta { font-size: 13.5px; color: var(--text-muted-3); margin-bottom: 18px; }
.product-desc { font-size: 15px; color: oklch(0.35 0.02 40); margin-bottom: 26px; line-height: 1.6; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 999px; }
.qty-control button { background: none; border: none; width: 38px; height: 38px; font-size: 18px; cursor: pointer; }
.qty-control .qty-val { width: 32px; text-align: center; font-weight: 700; }
.btn-add-detail { flex: 1; background: var(--brand); color: white; border: none; padding: 15px 20px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; }
.btn-add-detail:hover { background: var(--brand-hover); }
.product-accordion { border-top: 1px solid var(--border); padding-top: 22px; display: flex; flex-direction: column; gap: 18px; }
.product-accordion details { font-size: 13.5px; }
.product-accordion summary { font-weight: 700; cursor: pointer; margin-bottom: 6px; }
.product-accordion p { color: var(--text-muted); margin: 8px 0 0; line-height: 1.6; }
.related-section { margin-top: 80px; }
.related-section h2 { font-size: 24px; margin-bottom: 22px; }

@media (max-width: 899px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* CART */
.cart-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: center; flex-wrap: wrap; }
.cart-item img { width: 84px; height: 84px; flex-shrink: 0; border-radius: 6px; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 160px; }
.cart-item-info .name { font-weight: 700; font-family: 'Lora', Georgia, serif; font-size: 15.5px; margin-bottom: 4px; }
.cart-item-info .meta { font-size: 12.5px; color: var(--text-muted-3); }
.cart-item-total { width: 80px; text-align: right; font-weight: 700; font-size: 14.5px; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--text-muted-3); font-size: 13px; text-decoration: underline; }
.cart-summary-row { display: flex; justify-content: flex-end; padding: 26px 0; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.cart-total-label { font-size: 13px; color: var(--text-muted-3); margin-bottom: 4px; }
.cart-total-value { font-size: 26px; font-weight: 700; color: var(--brand); }
.cart-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted-3); }

/* FORMS */
.form-field { margin-bottom: 0; }
.form-field label { font-size: 12.5px; font-weight: 700; color: var(--text-muted); display: block; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid var(--border-strong); font-size: 14px;
}
.form-field textarea { resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-12 { display: grid; grid-template-columns: 1fr 2fr; gap: 14px; }
.form-stack { display: flex; flex-direction: column; gap: 18px; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border-strong);
  border-radius: 8px; cursor: pointer; font-size: 14px;
}
.radio-title { font-weight: 700; font-size: 14px; margin-bottom: 10px; }

/* CHECKOUT */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.order-summary { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px; position: sticky; top: 90px; }
.order-summary-title { font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.order-summary-item { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid oklch(0.91 0.015 65); }
.order-summary-total { display: flex; justify-content: space-between; padding-top: 16px; font-weight: 700; font-size: 17px; }
.order-summary-total span:last-child { color: var(--brand); }
.btn-submit-order {
  width: 100%; background: var(--brand); color: white; border: none; padding: 15px; border-radius: 999px;
  font-weight: 700; font-size: 15px; cursor: pointer; margin-top: 20px;
}
.btn-submit-order:hover { background: var(--brand-hover); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.company-block { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 26px; }
.company-note { margin-top: 10px; padding: 12px 14px; background: var(--section-alt); border-radius: 6px; font-size: 12.5px; }
.map-placeholder img { height: 200px; width: 100%; object-fit: cover; border-radius: 8px; }
.thanks-box { padding: 24px; background: var(--section-alt); border-radius: 8px; font-size: 14.5px; }

/* SUCCESS */
.success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--brand); color: white; font-size: 32px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
}

/* LEGAL */
.legal-list { display: flex; flex-direction: column; gap: 4px; font-size: 15px; color: oklch(0.32 0.02 40); line-height: 2; }
.legal-note { margin-top: 26px; padding: 16px 18px; background: var(--section-alt); border-radius: 8px; font-size: 13.5px; color: var(--text-muted); }
.legal-text { font-size: 15px; color: oklch(0.35 0.02 40); line-height: 1.8; display: flex; flex-direction: column; gap: 18px; }

/* ABOUT */
.about-hero { height: 320px; width: 100%; object-fit: cover; }
.about-body { max-width: 760px; margin: 0 auto; padding: 60px 24px 100px; }
.about-body p { font-size: 16px; color: oklch(0.35 0.02 40); line-height: 1.75; margin-bottom: 20px; }

/* BLOG POST */
.blog-post-img { height: 260px; width: 100%; object-fit: cover; border-radius: 8px; margin-bottom: 30px; }
.blog-post-title { font-size: 28px; margin-bottom: 20px; line-height: 1.3; }
.blog-post-body p { font-size: 16px; color: oklch(0.35 0.02 40); line-height: 1.75; margin-bottom: 18px; }

/* 404 */
.error-page { max-width: 560px; margin: 0 auto; padding: 120px 24px 160px; text-align: center; }
.error-code { font-family: 'Lora', Georgia, serif; font-size: 72px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }

/* SR-only */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
