:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #1f1a16;
  --muted: #6b6159;
  --line: #e6ded3;
  --accent: #8a5a2b;
  --accent-ink: #ffffff;
  --river: #1f6f8b;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 26, 22, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container { width: min(1200px, 100% - 32px); margin-inline: auto; }
.section { padding: 72px 0; }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-bottom: 0.6em; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font: 600 0.95rem var(--sans); cursor: pointer; text-decoration: none;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #734a22; }
.btn--ghost { background: transparent; border-color: currentColor; }
.btn--light { background: #fff; color: var(--ink); }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 247, 242, 0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { font: 700 1.5rem var(--serif); text-decoration: none; letter-spacing: 0.02em; }
.logo span { color: var(--accent); }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 500; color: var(--muted); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.header-cta { padding: 10px 18px; }
.menu-toggle { display: none; margin-left: auto; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; border-top: 1px solid var(--line); }
  .header-cta { display: none; }
}

/* Hero */
.hero {
  position: relative; color: #fff; min-height: 78vh; display: flex; align-items: flex-end;
  background: #2a211b center/cover no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.7)); }
.hero .container { position: relative; padding: 120px 0 72px; }
.hero .lead { color: rgba(255, 255, 255, 0.88); }
.hero .eyebrow { color: #f1c38e; }
.hero .btn--ghost { color: #fff; }

.badges { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 28px; color: rgba(255,255,255,0.85); font-size: 0.92rem; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 36px; }
.feature { padding: 26px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); }
.feature .num { font: 600 2rem var(--serif); color: var(--accent); }

/* Categories */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  font: 500 0.9rem var(--sans); cursor: pointer; color: var(--ink); text-decoration: none;
}
.chip[aria-pressed="true"], .chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Product grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  text-decoration: none; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; background: var(--line); width: 100%; }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-title { font-weight: 600; font-size: 1rem; line-height: 1.35; }
.card-meta { color: var(--muted); font-size: 0.88rem; margin-top: auto; }


/* Product page */
.product > * { min-width: 0; }
.product { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.gallery-main { border-radius: var(--radius); overflow: hidden; background: var(--line); }
.gallery-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 10px; margin-top: 12px; }
.thumbs button { padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: none; }
.thumbs button[aria-current="true"] { border-color: var(--accent); }
.thumbs img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.product-info { position: sticky; top: 92px; }
.price { font: 600 1.4rem var(--serif); margin: 8px 0 20px; }
.description { white-space: pre-line; color: var(--muted); margin: 24px 0; }
.note { font-size: 0.9rem; color: var(--muted); border-left: 3px solid var(--accent); padding-left: 12px; margin-top: 24px; }
.breadcrumbs { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a { text-decoration: none; }

@media (max-width: 860px) {
  .product { grid-template-columns: 1fr; gap: 28px; }
  .product-info { position: static; }
}

/* Forms */
.forms { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 32px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.section--alt .panel { background: var(--bg); }
form { display: grid; gap: 14px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .row { grid-template-columns: 1fr; } }
label { display: grid; gap: 6px; font-size: 0.88rem; font-weight: 500; }
input, select, textarea {
  font: 1rem var(--sans); padding: 11px 13px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
textarea { min-height: 90px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-status { font-size: 0.92rem; margin: 0; }
.form-status.ok { color: #1f7a3f; }
.form-status.err { color: #b3261e; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.slot {
  padding: 9px 6px; border-radius: 10px; border: 1px solid var(--line); background: #fff; cursor: pointer;
  font: 500 0.88rem var(--sans); text-align: center; color: var(--ink);
}
.slot small { display: block; color: var(--muted); font-size: 0.72rem; }
.slot[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.slot[aria-pressed="true"] small { color: rgba(255,255,255,0.8); }
.slots-empty { color: var(--muted); font-size: 0.9rem; }

/* Modal */
dialog.modal {
  border: 0; border-radius: var(--radius); padding: 0; width: min(560px, 100% - 24px);
  max-height: calc(100vh - 32px); box-shadow: var(--shadow);
}
dialog.modal::backdrop { background: rgba(20, 15, 10, 0.55); }
.modal-head { display: flex; align-items: center; gap: 8px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.tabs { display: flex; gap: 6px; }
.tab { border: 0; background: none; padding: 8px 12px; border-radius: 999px; cursor: pointer; font: 600 0.92rem var(--sans); color: var(--muted); }
.tab[aria-selected="true"] { background: var(--ink); color: #fff; }
.modal-close { margin-left: auto; border: 0; background: none; font-size: 1.6rem; cursor: pointer; line-height: 1; color: var(--muted); }
.modal-body { padding: 20px; overflow: auto; }

/* Floating chat */
.chat-fab { position: fixed; right: 18px; bottom: 18px; z-index: 50; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.chat-menu { display: none; flex-direction: column; gap: 8px; }
.chat-fab.open .chat-menu { display: flex; }
.chat-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px;
  background: #fff; box-shadow: var(--shadow); text-decoration: none; font-weight: 600; font-size: 0.92rem;
}
.chat-link svg { width: 22px; height: 22px; }
.chat-toggle {
  width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer; background: var(--accent); color: #fff;
  box-shadow: var(--shadow); display: grid; place-items: center;
}
.chat-toggle svg { width: 26px; height: 26px; }

/* Footer */
.site-footer { background: #1f1a16; color: rgba(255,255,255,0.75); padding: 48px 0 32px; font-size: 0.92rem; }
.site-footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.site-footer h3 { color: #fff; font-size: 1.2rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.copyright { width: min(1200px, 100% - 32px); margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; }

/* SEO pages */
[hidden] { display: none !important; }
.logo small { font: 600 0.7rem var(--sans); letter-spacing: 0.12em; color: var(--muted); vertical-align: middle; }
.card-title { margin: 0; font-family: var(--sans); }
.product-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.narrow { max-width: 820px; }
.intro p { margin-bottom: 0.8em; }
.prose h2 { margin-top: 1.6em; font-size: 1.8rem; }
.prose li { margin-bottom: 0.5em; }
.prose a, .intro a, .lead a, .facts a, .faq a { color: var(--accent); }
.facts { padding-left: 1.2em; color: var(--muted); font-size: 0.95rem; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 28px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: #fff; }
/* Slight zoom hides the white margins baked into many product photos. */
.cat-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transform: scale(1.15); transition: transform 0.3s; }
.cat-card:hover img { transform: scale(1.2); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7)); }
.cat-card span { position: absolute; left: 14px; bottom: 12px; z-index: 1; font: 600 1.25rem var(--serif); }

.section--dark { background: #2a211b; color: #fff; }
.section--dark p { color: rgba(255,255,255,0.8); }
.section--dark .btn--ghost { color: #fff; }
.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { margin-bottom: 0.3em; }
.cta-band p { margin: 0; }

.faq { display: grid; gap: 12px; margin-top: 20px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; }
.section--alt .faq details { background: var(--bg); }
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { margin: 12px 0 0; color: var(--muted); }

.footer-title { color: #fff; font-size: 1.2rem; }
.site-footer p { margin-bottom: 12px; }

@media (max-width: 1100px) { .nav { gap: 16px; } .nav a { font-size: 0.92rem; } }

.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo img { height: 52px; width: auto; }
@media (max-width: 520px) { .logo img { height: 42px; } }

/* Tables mega menu */
.nav { align-items: center; }
.dropdown-toggle {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: 500 1rem var(--sans); color: var(--muted); height: 68px;
}
.dropdown-toggle:hover, .dropdown-toggle.is-active, .dropdown.open .dropdown-toggle { color: var(--ink); }
.dropdown-toggle span { font-size: 0.75em; display: inline-block; transition: transform 0.15s; }
.dropdown.open .dropdown-toggle span { transform: rotate(180deg); }
.mega {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(31, 26, 22, 0.08);
}
.dropdown.open .mega { display: block; }
.mega-inner { width: min(1200px, 100% - 32px); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; padding: 28px 0 32px; }
.mega-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
.mega-col { display: flex; flex-direction: column; }
.mega-title { font: 600 1.3rem var(--serif); margin: 0 0 10px; color: var(--ink); }
.nav .mega-col a { padding: 6px 0; color: var(--muted); }
.nav .mega-col a:hover, .nav .mega-col a[aria-current="page"] { color: var(--accent); }
.mega-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 250px)); justify-content: end; gap: 24px; }
.nav .mega-tile { display: block; color: var(--ink); }
.mega-tile strong, .mega-tile span { display: block; margin-top: 4px; }
.mega-tile img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 12px; margin-bottom: 6px; transition: opacity 0.2s; }
.mega-tile:hover img { opacity: 0.9; }
.mega-tile span { color: var(--accent); font-size: 0.9rem; }

@media (max-width: 1000px) {
  .nav { align-items: stretch; max-height: calc(100vh - 68px); overflow-y: auto; }
  .dropdown-toggle { width: 100%; height: auto; text-align: left; padding: 14px 16px; color: var(--ink); }
  .mega { position: static; box-shadow: none; border: 0; background: transparent; }
  .mega-inner { grid-template-columns: 1fr; gap: 12px; padding: 0 0 12px; width: 100%; }
  .mega-col { padding: 0 32px; }
  .mega-title { font-size: 1.05rem; margin: 4px 0; }
  .nav .mega-col a { border-top: 0; padding: 8px 0; }
  .mega-links { grid-template-columns: 1fr; }
  .mega-tiles { display: none; }
}

/* Announcement strip */
.announce {
  position: relative; display: flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px 48px;
  background: linear-gradient(90deg, #6f4623 0%, #a47c58 50%, #6f4623 100%); color: #fff; text-align: center;
  font-size: 0.9rem; font-weight: 500;
}
.announce p { margin: 0; }
.announce a { color: #fff; font-weight: 600; text-underline-offset: 3px; }
.announce-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 4px 8px; opacity: 0.85;
}
.announce-close:hover { opacity: 1; }

/* Header search */
.site-search { position: relative; flex: 0 1 240px; }
.site-search input {
  width: 100%; padding: 10px 40px 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: #f1ece5; font-size: 0.92rem;
}
.site-search input:focus { background: #fff; }
.site-search-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--accent); display: flex; pointer-events: none; }
.search-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--ink); padding: 6px; margin-left: auto; }
.search-results {
  position: absolute; top: calc(100% + 8px); right: 0; width: min(420px, 100vw - 32px); max-height: 70vh; overflow: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 6px; z-index: 60;
}
.search-results a { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px; text-decoration: none; }
.search-results a:hover, .search-results a.is-active { background: var(--bg); }
.search-results img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--line); }
.search-results strong { display: block; font-size: 0.92rem; font-weight: 600; line-height: 1.3; }
.search-results small { color: var(--muted); font-size: 0.8rem; }
.search-empty { margin: 0; padding: 12px; color: var(--muted); font-size: 0.92rem; }
.search-empty a { color: var(--accent); }

@media (max-width: 1360px) {
  .search-toggle { display: flex; margin-left: 8px; }
  .site-search { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 12px 16px; background: var(--bg); border-bottom: 1px solid var(--line); }
  .site-search.open { display: block; }
  .site-search-icon { right: 30px; }
  .search-results { left: 16px; right: 16px; width: auto; }
}
@media (max-width: 1000px) {
  .search-toggle { margin-left: auto; }
  .menu-toggle { margin-left: 4px; }
  .announce { font-size: 0.82rem; padding: 8px 40px; }
}

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 32px; }
.about-photo { width: 100%; border-radius: 4px; box-shadow: var(--shadow); }
.stat { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 28px; }
.stat-num { font: 700 clamp(6rem, 12vw, 9.5rem)/0.8 var(--sans); color: #b08a68; letter-spacing: -0.04em; }
.stat-label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 600; line-height: 2; color: var(--muted); padding-bottom: 4px; }
.about-lead { font: 600 1.35rem/1.35 var(--sans); margin-bottom: 18px; }
.about-grid p { color: var(--muted); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Locations */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; margin-top: 32px; }
.loc-group h2 { font-size: 1.4rem; margin-bottom: 8px; }
.loc-group a { display: block; padding: 4px 0; color: var(--accent); text-decoration: none; }
.loc-group a:hover { text-decoration: underline; }

/* Tall hero on phones: zoom the photo so its baked-in top/bottom margins stay hidden. */
@media (max-aspect-ratio: 1/1) { .hero { background-size: auto 140%; } }

/* Favorites */
.card-wrap { position: relative; display: flex; }
.card-wrap > .card { flex: 1; }
.fav-btn {
  position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, 0.92); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); cursor: pointer;
  display: grid; place-items: center; color: var(--ink); transition: transform 0.15s;
}
.fav-btn:hover { transform: scale(1.08); }
.fav-btn svg, .fav-link svg, .fav-toggle svg { fill: none; stroke: currentColor; stroke-width: 2; }
.fav-btn[aria-pressed="true"] { color: #c0392b; }
.fav-btn[aria-pressed="true"] svg, .fav-toggle[aria-pressed="true"] svg { fill: currentColor; }
.fav-toggle { display: inline-flex; align-items: center; gap: 8px; }
.fav-toggle[aria-pressed="true"] { color: #c0392b; }
.fav-link { position: relative; display: flex; color: var(--ink); padding: 6px; margin-left: 4px; }
.fav-link:hover { color: var(--accent); }
.fav-count {
  position: absolute; top: -2px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  background: #c0392b; color: #fff; font-size: 0.7rem; font-weight: 700; line-height: 18px; text-align: center;
}
.fav-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px 24px; flex-wrap: wrap; margin-bottom: 12px; }
.fav-head h1 { margin: 0 0 6px; }
.fav-head p { margin: 0; max-width: 60ch; }
#fav-status { margin-bottom: 20px; }
.fav-link-input { display: block; margin-top: 8px; max-width: 560px; font-size: 0.92rem; }
.fav-own { margin-top: 28px; }
@media (max-width: 1000px) {
  .fav-link { margin-left: auto; }
  .fav-link + .search-toggle { margin-left: 4px; }
}

/* Subscribe (home page) */
.subscribe { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.subscribe img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; border-radius: var(--radius); background: var(--line); }
.subscribe-body { text-align: center; max-width: 520px; justify-self: center; }
.subscribe-body h2 { text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.subscribe-lead { font-weight: 600; margin: 0 0 4px; }
.subscribe-body .muted { margin: 0 0 24px; }
.subscribe-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.subscribe-form input[type=email] { flex: 1 1 240px; }
.subscribe-form .form-status { flex-basis: 100%; }
@media (max-width: 800px) {
  .subscribe { grid-template-columns: 1fr; gap: 24px; }
}

/* Blog */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.section-head h2 { margin: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.blog-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--line); }
.blog-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card time, .post-date { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { margin: 0; font-family: var(--sans); font-size: 1.1rem; line-height: 1.35; }
.blog-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.blog-more { margin-top: auto; padding-top: 6px; color: var(--accent); font-weight: 600; font-size: 0.92rem; }
.post h1 { margin: 8px 0 24px; }
.post-cover { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); background: var(--line); margin-bottom: 28px; }
.post-body { font-size: 1.05rem; line-height: 1.75; }
.post-body h2 { font-size: 1.6rem; margin: 1.6em 0 0.5em; }
.post-body ul, .post-body ol { padding-left: 1.3em; }
.post-body li { margin-bottom: 0.4em; }

/* Keep top-level menu items on one line (not the mega-menu tiles, whose titles must wrap). */
.nav > a, .dropdown-toggle, .header-cta { white-space: nowrap; }
.nav .mega-tile { white-space: normal; min-width: 0; }
