/** Shopify CDN: Minification failed

Line 68:0 All "@import" rules must come first

**/
/* ============================================================
   IN SOLISIA — Consolidated theme stylesheet
   Generated from /css/ source files in the prototype.
   Loaded once from layout/theme.liquid.
   Edit the source files in /css/, then regenerate this file
   (concatenate in this order: tokens, base, components, pages).
   ============================================================ */

/* ---------- tokens.css ---------- */
/* ============================================================
   IN SOLISIA — DESIGN TOKENS
   Single source of truth for color, typography, and layout.
   Edit values here; every page picks them up automatically.
   ============================================================ */

:root {
  /* ---------- COLORS ---------- */
  --primary-dark:        #160D0C;   /* warm near-black */
  --primary-light:       #F9F8EC;   /* warm parchment cream */
  --accent-gold:         #A67C3A;   /* antique brass — used at ~2% density */

  --border-subtle:       rgba(22, 13, 12, 0.15);
  --border-strong:       rgba(22, 13, 12, 0.40);

  --text-muted-on-light: rgba(22, 13, 12, 0.65);
  --text-muted-on-dark:  rgba(249, 248, 236, 0.65);

  --border-subtle-on-dark: rgba(249, 248, 236, 0.15);
  --text-soft-on-dark:     rgba(249, 248, 236, 0.50);

  /* Image-placeholder fill: primary-dark @ 8% on light surfaces */
  --placeholder-fill:    rgba(22, 13, 12, 0.08);

  /* ---------- TYPOGRAPHY FAMILIES ---------- */
  --font-display:    'Cinzel', 'Trajan Pro', serif;            /* display headlines + wordmark */
  --font-editorial:  'EB Garamond', 'Garamond', Georgia, serif;/* brand voice / body */
  --font-functional: 'Inter', system-ui, -apple-system, sans-serif; /* store voice */

  /* ---------- LAYOUT ---------- */
  --max-width-desktop: 1440px;
  --max-width-content: 1200px;
  --max-width-reading: 640px;
  --max-width-narrow:  720px;

  --gutter:            32px;
  --section-pad-y:     96px;

  /* No rounded corners anywhere on the site. */
  --radius: 0;

  /* Motion */
  --ease-default: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 200ms;
  --t-slow: 400ms;
}

/* ---------- base.css ---------- */
/* ============================================================
   BASE — reset, fonts, body, shared type & utility classes.
   Loaded after tokens.css.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@400;500&display=swap');

/* ---------- Modest reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
}

img, picture, video, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-default);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

input { font: inherit; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

/* ---------- TYPE SCALE ----------
   Class names map 1:1 to the brief's typography tokens so a Shopify
   developer can grep them later. Use these classes anywhere — never
   restyle Cinzel below 22px, never set body in Cinzel.
   --------------------------------- */

/* Cinzel — display only (22px+) */
.t-hero-xl {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 400; line-height: 1.2;
  letter-spacing: 0.02em;
}
.t-section-l {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; line-height: 1.3;
  letter-spacing: 0.05em;
}

/* EB Garamond — editorial */
.t-editorial-xl {
  font-family: var(--font-editorial);
  font-style: italic; font-size: 32px; line-height: 1.2;
}
.t-editorial-l {
  font-family: var(--font-editorial);
  font-style: italic; font-size: 22px; line-height: 1.3;
}
.t-editorial-m {
  font-family: var(--font-editorial);
  font-style: italic; font-size: 18px; line-height: 1.4;
}
.t-body-l {
  font-family: var(--font-editorial);
  font-size: 15px; line-height: 1.7;
}
.t-body-m {
  font-family: var(--font-editorial);
  font-size: 14px; line-height: 1.7;
}
.t-body-s {
  font-family: var(--font-editorial);
  font-size: 13px; line-height: 1.7;
}

/* Inter — functional */
.t-nav {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.t-section-marker {
  font-family: var(--font-functional);
  font-size: 10px; font-weight: 400; line-height: 1;
  letter-spacing: 0.20em; text-transform: uppercase;
}
.t-body-functional {
  font-family: var(--font-functional);
  font-size: 13px; font-weight: 400; line-height: 1.6;
}
.t-micro {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 400; line-height: 1.5;
}
.t-price {
  font-family: var(--font-functional);
  font-size: 14px; font-weight: 500; line-height: 1;
}

/* ---------- SHARED COMPONENTS ---------- */

/* Section markers with the gold "—" dashes.
   Use: <span class="section-marker"><span class="dash">—</span> ON THE CRAFT <span class="dash">—</span></span> */
.section-marker {
  font-family: var(--font-functional);
  font-size: 10px; font-weight: 400; line-height: 1;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  display: inline-flex; align-items: center; gap: 8px;
}
.section-marker .dash { color: var(--accent-gold); }

/* Image placeholder — 8% primary-dark fill, italic caption, 0.5px border. */
.img-placeholder {
  background: var(--placeholder-fill);
  border: 0.5px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--text-muted-on-light);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  width: 100%;
}
/* Aspect-ratio helpers */
.aspect-3-4  { aspect-ratio: 3 / 4; }
.aspect-4-5  { aspect-ratio: 4 / 5; }
.aspect-4-3  { aspect-ratio: 4 / 3; }
.aspect-1-1  { aspect-ratio: 1 / 1; }
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-16-7 { aspect-ratio: 16 / 7; }

/* CTA button styles */
.btn {
  display: inline-block;
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 28px;
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease-default),
              color var(--t-fast) var(--ease-default),
              border-color var(--t-fast) var(--ease-default);
}
.btn--primary-on-dark {
  background: var(--primary-light); color: var(--primary-dark);
}
.btn--primary-on-dark:hover { background: var(--accent-gold); color: var(--primary-light); }

.btn--ghost-on-dark {
  background: transparent; color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn--ghost-on-dark:hover { color: var(--accent-gold); border-color: var(--accent-gold); }

.btn--ghost-on-light {
  background: transparent; color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn--ghost-on-light:hover { background: var(--primary-dark); color: var(--primary-light); }

.btn--solid-dark {
  background: var(--primary-dark); color: var(--primary-light);
  padding: 16px 28px;
}
.btn--solid-dark:hover { background: #2a1a18; }

/* Underline-link CTA: "READ THE ESSAY →" */
.link-cta {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary-dark);
  border-bottom: 0.5px solid var(--primary-dark);
  padding-bottom: 4px;
  display: inline-block;
}
.link-cta:hover { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }

.link-cta--on-dark { color: var(--primary-light); border-bottom-color: var(--primary-light); }
.link-cta--on-dark:hover { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }

.link-cta--muted { color: var(--text-muted-on-light); border-bottom: 0; }
.link-cta--muted:hover { color: var(--accent-gold); }

/* Hairline divider */
.hr-thin { border: 0; border-top: 0.5px solid var(--border-subtle); margin: 0; }

/* Containers */
.container       { max-width: var(--max-width-content); margin: 0 auto; padding: 0 var(--gutter); }
.container--read { max-width: var(--max-width-reading); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.container--mid  { max-width: 1000px; margin: 0 auto; padding: 0 var(--gutter); }

/* Section padding */
.section-pad   { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }

/* Visually-hidden but accessible */
.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;
}

/* ---------- components/header.css ---------- */
/* ============================================================
   GLOBAL HEADER — sticky, appears on every page.
   72px tall, three-column grid.
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  padding: 0 var(--gutter);
  background: var(--primary-light);
  border-bottom: 0.5px solid transparent; /* appears on scroll */
  transition: border-color var(--t-fast) var(--ease-default);
}

.site-header.is-scrolled { border-bottom-color: var(--border-subtle); }

/* Transparent variant for homepage hero — JS toggles this off when user scrolls. */
.site-header.is-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-transparent .site-header__nav-link,
.site-header.is-transparent .site-header__logo,
.site-header.is-transparent .site-header__util {
  color: var(--primary-light);
}
.site-header.is-transparent .site-header__nav-link:hover,
.site-header.is-transparent .site-header__util:hover { color: var(--accent-gold); }

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

/* ---------- LEFT: primary nav ---------- */
.site-header__nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-header__nav-link {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary-dark);
  position: relative;
  padding: 4px 0;
}
.site-header__nav-link:hover { color: var(--accent-gold); }
.site-header__nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 0; border-bottom: 0.5px solid currentColor;
}

/* ---------- CENTER: logo (real brand asset) ---------- */
.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 56px;
}
.site-header__logo-img {
  display: block;
  height: 100%;
  width: auto;
  /* Each PNG carries its own background — the cream variant blends into a
     solid cream header; the dark variant blends into a dark/transparent-on-hero
     header. Swap is handled by the .is-transparent rule below. */
}

/* By default, render the cream-bg logo (for the solid cream header).
   The dark-bg logo is hidden until the header is in its transparent state. */
.site-header__logo-img--dark  { display: none; }
.site-header__logo-img--cream { display: block; }

/* When header is transparent (over the homepage hero), flip them. */
.site-header.is-transparent .site-header__logo-img--cream { display: none; }
.site-header.is-transparent .site-header__logo-img--dark  { display: block; }

/* ---------- RIGHT: utility ---------- */
.site-header__utils {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.site-header__util {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary-dark);
  padding: 4px 0;
  background: none; border: 0; cursor: pointer;
}
.site-header__util:hover { color: var(--accent-gold); }

/* ---------- MOBILE ---------- */
@media (max-width: 1023px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .site-header__nav { display: none; }
  .site-header__utils { gap: 12px; }
  .site-header__util-label-search,
  .site-header__util-label-account { display: none; } /* keep BAG count, hide labels */
}

/* ---------- components/footer.css ---------- */
/* ============================================================
   GLOBAL FOOTER — appears on every page.
   Dark surface, four-column upper band, three-column lower band.
   ============================================================ */

.site-footer {
  background: var(--primary-dark);
  color: var(--primary-light);
  padding: 96px var(--gutter) 32px;
}

.site-footer__inner {
  max-width: var(--max-width-content);
  margin: 0 auto;
}

/* ---------- UPPER BAND ---------- */
.site-footer__upper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.site-footer__brand-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  letter-spacing: 0.25em;
  opacity: 0.95;
}
.site-footer__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.55;
  max-width: 240px;
  margin-top: 12px;
}

.site-footer__col-header {
  font-family: var(--font-functional);
  font-size: 10px; font-weight: 400; line-height: 1;
  letter-spacing: 0.20em; text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.site-footer__links {
  display: flex; flex-direction: column;
}
.site-footer__links a {
  font-family: var(--font-functional);
  font-size: 13px; font-weight: 400;
  line-height: 2;
  opacity: 0.85;
}
.site-footer__links a:hover { color: var(--accent-gold); opacity: 1; }

/* ---------- LOWER BAND ---------- */
.site-footer__lower {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border-subtle-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-footer__lower span,
.site-footer__lower a {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 400; line-height: 1.5;
  letter-spacing: 0.1em;
  opacity: 0.55;
}
.site-footer__lower a:hover { color: var(--accent-gold); opacity: 1; }

.site-footer__social { display: flex; gap: 24px; }
.site-footer__legal  { display: flex; gap: 12px; }

/* ---------- MOBILE ---------- */
@media (max-width: 767px) {
  .site-footer { padding: 64px 24px 24px; }
  .site-footer__upper { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .site-footer__upper > :first-child { grid-column: 1 / -1; }
  .site-footer__lower { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- components/email-capture.css ---------- */
/* ============================================================
   EMAIL CAPTURE BAND — appears above footer on every page.
   "Letters from the studio."
   ============================================================ */

.email-capture {
  background: var(--primary-light);
  border-top: 0.5px solid var(--border-subtle);
  border-bottom: 0.5px solid var(--border-subtle);
  padding: 80px var(--gutter);
  text-align: center;
}

.email-capture__headline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 0 0 12px 0;
}

.email-capture__desc {
  font-family: var(--font-editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted-on-light);
  max-width: 420px;
  margin: 0 auto 32px;
}

.email-capture__form {
  display: flex;
  align-items: center;
  max-width: 380px;
  margin: 0 auto;
  border-bottom: 0.5px solid var(--primary-dark);
}

.email-capture__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 0;
  font-family: var(--font-functional);
  font-size: 13px;
  color: var(--primary-dark);
}
.email-capture__input::placeholder {
  color: var(--text-muted-on-light);
  font-family: var(--font-functional);
  font-size: 13px;
}

.email-capture__submit {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary-dark);
  padding: 12px 0 12px 16px;
  cursor: pointer;
  background: none; border: 0;
  transition: color var(--t-fast) var(--ease-default);
}
.email-capture__submit:hover { color: var(--accent-gold); }

@media (max-width: 767px) {
  .email-capture { padding: 64px 24px; }
  .email-capture__headline { font-size: 22px; }
}

/* ---------- components/cart-drawer.css ---------- */
/* ============================================================
   CART DRAWER — slide-in from right.
   Markup is included on every page; opens via .is-open class.
   Wired into BAG (N) header trigger by main.js.
   This stylesheet is loaded on every page so the drawer
   is consistent everywhere; markup is added in a later pass.
   ============================================================ */

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 13, 12, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow) var(--ease-default), visibility var(--t-slow);
  z-index: 90;
}
.cart-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  background: var(--primary-light);
  box-shadow: -8px 0 24px rgba(22, 13, 12, 0.05);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-default);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 0.5px solid var(--border-subtle);
}

.cart-drawer__title {
  font-family: var(--font-functional);
  font-size: 10px; font-weight: 400; line-height: 1;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--primary-dark);
}

.cart-drawer__close {
  background: none; border: 0;
  font-size: 20px; line-height: 1;
  color: var(--primary-dark);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-default);
}
.cart-drawer__close:hover { color: var(--accent-gold); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
}

/* Empty state */
.cart-drawer__empty {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cart-drawer__empty-text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted-on-light);
  margin-bottom: 24px;
}

/* Item list */
.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-item {
  display: flex;
  gap: 16px;
}
.cart-item__image {
  width: 80px;
  flex-shrink: 0;
}
.cart-item__image .img-placeholder { padding: 8px; font-size: 9px; }
.cart-item__details { flex: 1; min-width: 0; }
.cart-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart-item__name {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--primary-dark);
  line-height: 1.3;
}
.cart-item__remove {
  font-size: 12px;
  color: var(--text-muted-on-light);
  background: none; border: 0;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-default);
}
.cart-item__remove:hover { color: var(--accent-gold); }
.cart-item__meta {
  font-family: var(--font-functional);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted-on-light);
  margin-top: 4px;
  line-height: 1;
}
.cart-item__price {
  font-family: var(--font-functional);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-top: 8px;
}

/* Footer */
.cart-drawer__footer {
  border-top: 0.5px solid var(--border-subtle);
  padding-top: 24px;
  margin-top: auto;
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cart-drawer__subtotal-label {
  font-family: var(--font-functional);
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--primary-dark);
}
.cart-drawer__subtotal-value {
  font-family: var(--font-functional);
  font-size: 14px; font-weight: 500;
  color: var(--primary-dark);
}
.cart-drawer__note {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 12px;
  color: var(--text-muted-on-light);
  text-align: center;
  margin-bottom: 24px;
}
.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: var(--primary-dark);
  color: var(--primary-light);
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 0;
  transition: background-color var(--t-fast) var(--ease-default);
}
.cart-drawer__checkout:hover { background: #2a1a18; }

/* ---------- pages/home.css ---------- */
/* ============================================================
   PAGE: HOMEPAGE (index.html)
   Sections 1.1 — 1.7 from the brief.
   ============================================================ */

/* ---------- 1.1 HERO — full-bleed dark, caption-only placeholder ---------- */
.home-hero {
  background: var(--primary-dark);
  color: var(--primary-light);
  min-height: 100vh;
  /* Account for the sticky header overlay */
  margin-top: -72px;
  padding: calc(72px + 96px) var(--gutter) 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

@media (min-height: 720px) {
  .home-hero { min-height: 720px; }
}

.home-hero__placeholder-caption {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 12px;
  color: var(--text-soft-on-dark);
  text-align: center;
  max-width: 480px;
  line-height: 1.6;
  pointer-events: none;
}

.home-hero__overlay {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.home-hero__headline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary-light);
  margin: 0;
}

.home-hero__sub {
  font-family: var(--font-editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--primary-light);
  opacity: 0.75;
  max-width: 360px;
  margin: 24px auto 0;
}

.home-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ---------- 1.2 PREMISE — two-column ---------- */
.home-premise {
  background: var(--primary-light);
  padding: 96px var(--gutter);
}
.home-premise__grid {
  max-width: var(--max-width-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.home-premise__headline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 24px 0 24px;
}
.home-premise__body {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-on-light);
}
.home-premise__body p + p { margin-top: 1.2em; }

/* ---------- 1.3 CHASSIS TEASER ---------- */
.home-teaser {
  background: var(--primary-light);
  padding: 0 var(--gutter) 96px;
}
.home-teaser__inner { max-width: var(--max-width-content); margin: 0 auto; }
.home-teaser__copy {
  text-align: center;
  padding: 56px 0 0;
  max-width: 540px;
  margin: 0 auto;
}
.home-teaser__copy .section-marker { margin-bottom: 16px; }
.home-teaser__headline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 0 0 20px;
}
.home-teaser__body {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-on-light);
  margin: 0 0 32px;
}

/* ---------- 1.4 PRODUCT GRID ---------- */
.home-products {
  background: var(--primary-light);
  padding: 96px var(--gutter);
}
.home-products__inner { max-width: var(--max-width-content); margin: 0 auto; }
.home-products__header {
  text-align: center;
  margin-bottom: 56px;
}
.home-products__header .section-marker { margin-bottom: 16px; }
.home-products__headline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 0 0 16px;
}
.home-products__sub {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--text-muted-on-light);
  max-width: 420px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  display: block;
  text-decoration: none;
  color: var(--primary-dark);
}
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
}
.product-card__image-wrap .img-placeholder { transition: opacity var(--t-fast) var(--ease-default); }
.product-card:hover .img-placeholder { opacity: 0.85; }
.product-card__meta { padding-top: 16px; }
.product-card__name {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--primary-dark);
  line-height: 1.3;
}
.product-card__price {
  font-family: var(--font-functional);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-top: 4px;
}

.home-products__view-all {
  text-align: center;
  margin-top: 56px;
}

/* ---------- 1.5 NOTES PREVIEW ---------- */
.home-notes {
  background: var(--primary-light);
  padding: 96px var(--gutter);
  border-top: 0.5px solid var(--border-subtle);
  border-bottom: 0.5px solid var(--border-subtle);
}
.home-notes__inner { max-width: var(--max-width-content); margin: 0 auto; }
.home-notes__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.home-notes__header .section-marker { margin-bottom: 12px; }
.home-notes__headline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 0;
}
.home-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.note-card {
  display: block;
  text-decoration: none;
  color: var(--primary-dark);
}
.note-card__image { aspect-ratio: 1 / 1; }
.note-card__meta {
  font-family: var(--font-functional);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted-on-light);
  margin: 12px 0 6px;
  line-height: 1;
}
.note-card__number { color: var(--accent-gold); }
.note-card__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  line-height: 1.35;
  color: var(--primary-dark);
}
.note-card:hover .note-card__title { color: var(--accent-gold); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .home-premise__grid { grid-template-columns: 1fr; gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .home-notes__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .home-hero { padding: calc(72px + 64px) 24px 64px; }
  .home-hero__headline { font-size: 26px; }
  .home-premise, .home-products, .home-notes { padding: 64px 24px; }
  .home-teaser { padding: 0 24px 64px; }
  .product-grid { grid-template-columns: 1fr; }
  .home-notes__grid { grid-template-columns: 1fr; }
  .home-notes__header { flex-direction: column; align-items: flex-start; }
}

/* ---------- pages/chassis.css ---------- */
/* ============================================================
   PAGE: THE CHASSIS (chassis.html)
   Long-form essay. Sections 2.1 — 2.7 from the brief.
   Width alternates: 1000px for image-bearing chapters, 640px reading
   width for prose-only chapters.
   ============================================================ */

/* ---------- 2.1 HERO — text-only on dark ---------- */
.chassis-hero {
  background: var(--primary-dark);
  color: var(--primary-light);
  padding: 160px var(--gutter);
  text-align: center;
  min-height: 60vh;
  margin-top: -72px;          /* hero sits beneath sticky header */
  padding-top: calc(72px + 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chassis-hero .section-marker {
  color: var(--text-soft-on-dark);
  margin-bottom: 32px;
}

.chassis-hero__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--primary-light);
  line-height: 1.2;
  margin: 0;
}

.chassis-hero__sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted-on-dark);
  margin: 20px 0 0;
}

/* ---------- Chapter shell ---------- */
.chapter {
  background: var(--primary-light);
  padding: 80px var(--gutter);
}
.chapter--first { padding-top: var(--section-pad-y); }
.chapter--bordered { border-top: 0.5px solid var(--border-subtle); }

/* Both inner widths share the same outer frame, so every chapter's
   left edge lines up. Prose itself is constrained to reading width
   via .chapter__body below (left-anchored within the frame). */
.chapter__inner       { max-width: 1000px; margin: 0 auto; }
.chapter__inner--read { max-width: 1000px; margin: 0 auto; }

.chapter__marker {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted-on-light);
  letter-spacing: 0.20em;
  margin-bottom: 16px;
  display: block;
}

.chapter__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary-dark);
  margin: 0 0 40px;
}

.chapter__body {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: var(--primary-dark);
  max-width: var(--max-width-reading); /* 640px — caps line length */
  text-align: left;                    /* explicit; never inherits center */
}
.chapter__body p + p { margin-top: 1.2em; }

/* ---------- 2.2 — two-column with image ---------- */
.chapter--with-image .chapter__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---------- 2.4 — muse grid ---------- */
.muse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.muse-captions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.muse-captions span {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 12px;
  color: var(--text-muted-on-light);
}

/* 2.3 — two-image stack */
.chapter__image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.chapter__signoff {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted-on-light);
  margin-top: 40px;
}

/* ---------- 2.7 CLOSE ---------- */
.chassis-close {
  background: var(--primary-light);
  padding: 80px var(--gutter);
  text-align: center;
  border-top: 0.5px solid var(--border-subtle);
}
.chassis-close__primary { padding: 14px 32px; }
.chassis-close__secondary {
  display: inline-block;
  margin-top: 16px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .chapter--with-image .chapter__layout { grid-template-columns: 1fr; gap: 32px; }
  .muse-grid, .muse-captions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .chassis-hero { padding: calc(72px + 96px) 24px 96px; min-height: 50vh; }
  .chassis-hero__title { font-size: 30px; }
  .chapter { padding: 64px 24px; }
  .chapter__title { font-size: 26px; margin-bottom: 32px; }
  .chapter__image-pair { grid-template-columns: 1fr; }
}

/* ---------- pages/notes.css ---------- */
/* ============================================================
   PAGES: NOTES INDEX (notes.html) + NOTES DETAIL (notes-detail.html)
   ============================================================ */

/* ---------- 3.1 INDEX — page title ---------- */
.notes-title {
  background: var(--primary-light);
  padding: 128px var(--gutter) 64px;
  text-align: center;
  margin-top: -72px;
  padding-top: calc(72px + 128px);
}
.notes-title .section-marker { margin-bottom: 24px; }
.notes-title__h {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 48px;
  line-height: 1.2;
  color: var(--primary-dark);
  margin: 0;
}
.notes-title__desc {
  font-family: var(--font-editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted-on-light);
  max-width: 480px;
  margin: 24px auto 0;
}

/* ---------- 3.2 FILTER ROW ---------- */
.notes-filters {
  background: var(--primary-light);
  padding: 16px var(--gutter);
  border-top: 0.5px solid var(--border-subtle);
  border-bottom: 0.5px solid var(--border-subtle);
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.notes-filters__item {
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary-dark);
  opacity: 0.55;
  padding: 4px 0;
  background: none; border: 0; cursor: pointer;
  position: relative;
  transition: color var(--t-fast) var(--ease-default), opacity var(--t-fast);
}
.notes-filters__item:hover { opacity: 1; color: var(--accent-gold); }
.notes-filters__item.is-active {
  opacity: 1;
}
.notes-filters__item.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  border-bottom: 0.5px solid var(--primary-dark);
}

/* ---------- 3.3 FEATURED ENTRY ---------- */
.notes-featured {
  background: var(--primary-light);
  padding: 80px var(--gutter);
}
.notes-featured__grid {
  max-width: var(--max-width-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.notes-featured__meta {
  font-family: var(--font-functional);
  font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  margin-bottom: 16px;
  line-height: 1;
}
.notes-featured__meta .num { color: var(--accent-gold); }
.notes-featured__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 30px;
  line-height: 1.25;
  color: var(--primary-dark);
  margin: 0 0 24px;
}
.notes-featured__excerpt {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-on-light);
  margin: 0 0 24px;
}

/* ---------- 3.4 ARCHIVE GRID ---------- */
.notes-archive {
  background: var(--primary-light);
  padding: 64px var(--gutter);
  border-top: 0.5px solid var(--border-subtle);
}
.notes-archive__inner { max-width: var(--max-width-content); margin: 0 auto; }
.notes-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.notes-archive .note-card__image { aspect-ratio: 1 / 1; }
.notes-archive__pagination {
  text-align: center;
  margin-top: 80px;
}
.notes-archive__pagination .section-marker { color: var(--text-muted-on-light); }

/* ---------- NOTES DETAIL PAGE ---------- */
.note-detail {
  background: var(--primary-light);
  padding: 96px var(--gutter);
  margin-top: -72px;
  padding-top: calc(72px + 96px);
}
.note-detail__inner { max-width: 720px; margin: 0 auto; }

.note-detail__breadcrumb {
  font-family: var(--font-functional);
  font-size: 10px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  margin-bottom: 32px;
  line-height: 1;
}

.note-detail__meta {
  font-family: var(--font-functional);
  font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  margin-bottom: 24px;
  line-height: 1;
}

.note-detail__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 38px;
  line-height: 1.2;
  color: var(--primary-dark);
  margin: 0 0 48px;
}

.note-detail__hero { aspect-ratio: 4 / 3; margin-bottom: 48px; }

.note-detail__body {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: var(--primary-dark);
}
.note-detail__body p + p { margin-top: 1.2em; }

.note-detail__inline-image {
  aspect-ratio: 4 / 5;
  margin: 40px auto;
  max-width: 480px;
}

.note-detail__signoff {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted-on-light);
  margin-top: 48px;
}

.note-detail__divider {
  width: 40px;
  border: 0;
  border-top: 0.5px solid var(--border-subtle);
  margin: 80px auto;
}

.note-detail__related-h {
  text-align: center;
  margin-bottom: 32px;
}
.note-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.note-detail__related-grid .note-card__image { aspect-ratio: 4 / 5; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .notes-featured__grid { grid-template-columns: 1fr; gap: 32px; }
  .notes-archive__grid { grid-template-columns: repeat(2, 1fr); }
  .note-detail__related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .notes-title { padding: calc(72px + 96px) 24px 48px; }
  .notes-title__h { font-size: 38px; }
  .notes-featured, .notes-archive, .note-detail { padding-left: 24px; padding-right: 24px; }
  .notes-archive__grid { grid-template-columns: 1fr; }
  .note-detail__title { font-size: 30px; }
  .note-detail__related-grid { grid-template-columns: 1fr; }
}

/* ---------- pages/shop.css ---------- */
/* ============================================================
   PAGE: PRODUCT LISTING (shop.html)
   ============================================================ */

.plp-header {
  background: var(--primary-light);
  padding: 96px var(--gutter) 48px;
  text-align: center;
  margin-top: -72px;
  padding-top: calc(72px + 96px);
}
.plp-header__inner { max-width: 720px; margin: 0 auto; }
.plp-header .section-marker { margin-bottom: 16px; }
.plp-header__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 38px;
  line-height: 1.2;
  color: var(--primary-dark);
  margin: 0 0 16px;
}
.plp-header__desc {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--text-muted-on-light);
}

.plp-toolbar {
  background: var(--primary-light);
  border-top: 0.5px solid var(--border-subtle);
  border-bottom: 0.5px solid var(--border-subtle);
  padding: 14px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.plp-toolbar__count,
.plp-toolbar__action {
  font-family: var(--font-functional);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted-on-light);
  background: none; border: 0; cursor: pointer;
}
.plp-toolbar__action:hover { color: var(--accent-gold); }
.plp-toolbar__right { display: flex; gap: 24px; }

.plp-grid-section {
  background: var(--primary-light);
  padding: 48px var(--gutter);
}
.plp-grid {
  max-width: var(--max-width-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 24px;
}

@media (max-width: 1023px) {
  .plp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .plp-header { padding: calc(72px + 64px) 24px 32px; }
  .plp-header__title { font-size: 30px; }
  .plp-toolbar { padding: 14px 24px; }
  .plp-grid-section { padding: 32px 24px; }
  .plp-grid { grid-template-columns: 1fr; }
}

/* ---------- pages/product.css ---------- */
/* ============================================================
   PAGE: PRODUCT DETAIL (product.html)
   Sections 6.1 — 6.6 from the brief.
   ============================================================ */

/* ---------- 6.1 TOP — gallery + info ---------- */
.pdp-top {
  background: var(--primary-light);
  padding: 96px var(--gutter);
  margin-top: -72px;
  padding-top: calc(72px + 96px);
}
.pdp-top__inner {
  max-width: var(--max-width-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp-gallery .img-placeholder { aspect-ratio: 4 / 5; }

.pdp-info {
  position: sticky;
  top: 96px;
}

.pdp-info__breadcrumb {
  font-family: var(--font-functional);
  font-size: 10px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  margin-bottom: 24px;
  line-height: 1;
}

.pdp-info__name {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 30px;
  line-height: 1.25;
  color: var(--primary-dark);
  margin: 0 0 8px;
}

.pdp-info__sub {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: var(--text-muted-on-light);
  margin: 0 0 24px;
}

.pdp-info__price {
  font-family: var(--font-functional);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.pdp-info__desc {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: var(--primary-dark);
  margin-bottom: 32px;
}
.pdp-info__desc p + p { margin-top: 1.2em; }

/* Size selector */
.pdp-size {
  margin-bottom: 16px;
}
.pdp-size__label {
  font-family: var(--font-functional);
  font-size: 10px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  display: block;
}
.pdp-size__options {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.pdp-size__option {
  width: 40px; height: 40px;
  border: 0.5px solid var(--border-subtle);
  background: transparent;
  font-family: var(--font-functional);
  font-size: 13px;
  color: var(--primary-dark);
  cursor: pointer;
  position: relative;
  transition: border-color var(--t-fast) var(--ease-default);
}
.pdp-size__option:hover { border-color: var(--primary-dark); }
.pdp-size__option.is-selected { border: 0.5px solid var(--primary-dark); }
.pdp-size__option.is-selected::after {
  content: '';
  position: absolute;
  top: 4px; right: 4px;
  width: 4px; height: 4px;
  background: var(--accent-gold);
}

.pdp-size-guide {
  font-family: var(--font-functional);
  font-size: 10px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  display: inline-block;
  margin-bottom: 24px;
}
.pdp-size-guide:hover { color: var(--accent-gold); }

.pdp-add {
  width: 100%;
  background: var(--primary-dark);
  color: var(--primary-light);
  padding: 16px 0;
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-align: center;
  border: 0; cursor: pointer;
  transition: background-color var(--t-fast) var(--ease-default);
}
.pdp-add:hover { background: #2a1a18; }

.pdp-info__pledges {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 16px;
}
.pdp-info__pledges span {
  font-family: var(--font-functional);
  font-size: 10px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
}

/* ---------- 6.2 ACCORDION ---------- */
.pdp-details {
  background: var(--primary-light);
  padding: 64px var(--gutter);
  border-top: 0.5px solid var(--border-subtle);
}
.pdp-details__inner { max-width: var(--max-width-narrow); margin: 0 auto; }

.accordion-item {
  border-bottom: 0.5px solid var(--border-subtle);
}
.accordion-item__head {
  width: 100%;
  background: none;
  border: 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-functional);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary-dark);
  text-align: left;
}
.accordion-item__head:hover { color: var(--accent-gold); }
.accordion-item__icon {
  display: inline-block;
  width: 16px; height: 16px;
  position: relative;
  transition: transform var(--t-fast) var(--ease-default);
}
.accordion-item__icon::before,
.accordion-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.accordion-item__icon::before { top: 7.5px; left: 0; right: 0; height: 1px; }
.accordion-item__icon::after  { left: 7.5px; top: 0; bottom: 0; width: 1px; }
.accordion-item.is-open .accordion-item__icon { transform: rotate(45deg); }

.accordion-item__panel {
  display: none;
  padding: 0 0 24px;
  font-family: var(--font-editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted-on-light);
}
.accordion-item__panel p + p { margin-top: 1em; }
.accordion-item.is-open .accordion-item__panel { display: block; }

/* ---------- 6.3 CHASSIS BAND (dark) ---------- */
.pdp-chassis {
  background: var(--primary-dark);
  color: var(--primary-light);
  padding: 80px var(--gutter);
}
.pdp-chassis__inner {
  max-width: var(--max-width-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pdp-chassis__image { aspect-ratio: 4 / 3; }
.pdp-chassis .section-marker { color: var(--text-soft-on-dark); margin-bottom: 16px; }
.pdp-chassis__h {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--primary-light);
  margin: 0 0 20px;
}
.pdp-chassis__body {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(249, 248, 236, 0.85);
  margin: 0 0 24px;
}

/* ---------- 6.4 JOURNAL FEATURE ---------- */
.pdp-journal {
  background: var(--primary-light);
  padding: 80px var(--gutter);
  text-align: center;
}
.pdp-journal__inner { max-width: 720px; margin: 0 auto; }
.pdp-journal .section-marker { margin-bottom: 16px; }
.pdp-journal__image { aspect-ratio: 16 / 9; margin-bottom: 24px; }
.pdp-journal__meta {
  font-family: var(--font-functional);
  font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--text-muted-on-light);
  line-height: 1;
}
.pdp-journal__meta .num { color: var(--accent-gold); }
.pdp-journal__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--primary-dark);
  margin: 12px 0 0;
}
.pdp-journal__excerpt {
  font-family: var(--font-editorial);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted-on-light);
  max-width: 540px;
  margin: 16px auto 0;
}

/* ---------- 6.5 RELATED ---------- */
.pdp-related {
  background: var(--primary-light);
  padding: 80px var(--gutter);
  border-top: 0.5px solid var(--border-subtle);
}
.pdp-related__inner { max-width: var(--max-width-content); margin: 0 auto; }
.pdp-related__h { text-align: center; margin-bottom: 40px; }
.pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .pdp-top__inner { grid-template-columns: 1fr; gap: 32px; }
  .pdp-info { position: static; }
  .pdp-chassis__inner { grid-template-columns: 1fr; gap: 32px; }
  .pdp-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .pdp-top { padding: calc(72px + 64px) 24px 64px; }
  .pdp-info__name { font-size: 26px; }
  .pdp-details, .pdp-chassis, .pdp-journal, .pdp-related { padding-left: 24px; padding-right: 24px; }
  .pdp-related__grid { grid-template-columns: 1fr; }
  .pdp-info__pledges { flex-direction: column; gap: 8px; }
}

/* ---------- pages/about.css ---------- */
/* ============================================================
   PAGE: ABOUT (about.html)
   Single ceremonial page, narrow, centered.
   ============================================================ */

.about {
  background: var(--primary-light);
  padding: 128px var(--gutter);
  margin-top: -72px;
  padding-top: calc(72px + 128px);
  text-align: center;
}
.about__inner { max-width: var(--max-width-narrow); margin: 0 auto; }

.about .section-marker { margin-bottom: 24px; }

.about__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 0 0 16px;
}

.about__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-muted-on-light);
  margin: 0 0 64px;
}

.about__body {
  text-align: left;
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.7;
  color: var(--primary-dark);
}
.about__body p + p { margin-top: 1.2em; }

.about__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
}
.about__ctas .btn { padding: 14px 32px; }

@media (max-width: 767px) {
  .about { padding: calc(72px + 96px) 24px 96px; }
  .about__title { font-size: 30px; letter-spacing: 0.04em; }
  .about__tagline { font-size: 16px; margin-bottom: 48px; }
}
