/* stinmnimi.gr — palette locked to the values the user specified:
     Almost black        #0e0d0b   (body)
     Background          #161511   (section surface)
     Card background     #1e1c17   (cards, tiles, price-cards, anatomy items)
     Header              #f0ebe0   (all headings)
     Subheading          #8a7f6e   (body text, muted copy)
     Numbers / USPs      #c8b99a   (stat numbers, accents)
     Width               850px     (container max-width)
*/

:root {
  --c-black:      #0e0d0b;
  --c-bg:         #161511;
  --c-card:       #1e1c17;
  --c-head:       #f0ebe0;
  --c-sub:        #8a7f6e;
  --c-accent:     #c8b99a;
  --c-border:     #2a2722;

  --footer-bg:    #181818;
  --footer-bord:  #313131;
  --btn-bg:       #c8b99a;
  --btn-fg:       #0e0d0b;

  --container:    850px;
  --sans:  "Lato", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --serif: "Vollkorn", "Times New Roman", serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--c-black);
  color: var(--c-sub);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; border: 0; }

a { color: var(--c-head); text-decoration: none; }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--c-head);
  margin: 0 0 .6em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 4.8vw, 4rem); line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.15; letter-spacing: -.005em; }
h3 { font-size: 1.5rem; line-height: 1.25; }
h4 { font-size: 1.125rem; line-height: 1.35; }

/* Step-title modifier: smaller than the page H1 so it doesn't compete.
   Applied to <h2> on how-it-works step sections. */
.step-title {
  font-size: clamp(1.25rem, 2.1vw, 1.5rem) !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

p { margin: 0 0 1em; color: var(--c-sub); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.wide,
.container-wide {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   HEADER / NAV — dark, matching body
   ================================================================ */
.site-header {
  background-color: var(--c-black);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 16px;
  flex-wrap: nowrap;              /* never wrap onto two lines */
}
.nav__brand {
  display: inline-flex;
  align-items: center;
}
.nav__brand img {
  height: 56px;                    /* one-line nav; was 108px */
  width: auto;
  display: block;
  /* same treatment as the footer logo so both lockups match */
  filter: brightness(0) invert(1) opacity(.92);
}
@media (max-width: 720px) {
  .nav__brand img { height: 44px; }
}
.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;                       /* tight, avoids wrap on longer GR labels */
  flex-wrap: nowrap;
  font-family: var(--sans);
  white-space: nowrap;
}
.nav__list > li { display: inline-flex; align-items: center; }
.nav__link,
.nav__dropdown-toggle,
.nav__lang,
.nav__lang a {
  color: var(--c-head);
  font-size: 14px;
  line-height: 20px;
  padding: 6px 8px;
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover,
.nav__lang a:hover { color: var(--c-accent); text-decoration: none; }
.nav__link.active,
.nav__lang a.active { font-weight: 700; color: var(--c-accent); }
.nav__dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown { position: relative; }
.nav__dropdown-toggle::after { content: "▾"; font-size: 11px; line-height: 1; }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  box-shadow: 0 10px 20px rgba(0,0,0,.5);
  padding: 8px 0;
  min-width: 220px;
  display: none;
  z-index: 60;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--c-head);
  font-size: 14px;
  line-height: 20px;
}
.nav__dropdown-menu a:hover { background: var(--c-bg); color: var(--c-accent); }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 4px;
  background-color: var(--btn-bg);
  color: var(--btn-fg) !important;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background-color .2s, transform .15s;
  white-space: nowrap;
}
/* Nav-sized button is a little tighter so it fits the one-line layout. */
.nav .btn { padding: 10px 18px; font-size: 12px; letter-spacing: 1.3px; }
.btn:active { transform: translateY(1px); }
.btn:hover { background-color: var(--c-head); text-decoration: none; }
.btn--large { padding: 18px 34px; font-size: 13px; letter-spacing: 1.6px; }
.btn--ghost {
  background: transparent;
  color: var(--c-head) !important;
  border: 1px solid var(--c-accent);
}
.btn--ghost:hover { background: var(--c-card); color: var(--c-accent) !important; }

/* Mobile-only ghost variant — used on secondary/repeat CTAs to break the
   monotony of three identical filled buttons stacked vertically. Desktop
   keeps the original filled treatment so the desktop sign-off is intact. */
@media (max-width: 720px) {
  .btn--ghost-mobile {
    background: transparent !important;
    color: var(--c-head) !important;
    border: 1px solid var(--c-accent);
  }
  .btn--ghost-mobile:hover {
    background: var(--c-card) !important;
    color: var(--c-accent) !important;
  }
}

/* ================================================================
   SECTIONS — one palette: body almost-black, sections background grey
   ================================================================ */
section { padding: 72px 0; }

/* Tighter rhythm between steps on the how-it-works / pos-leitoyrgei
   pages — sections that contain a .step-title get reduced vertical
   padding so the five steps read as a flow, not as disconnected blocks. */
section:has(.step-title) { padding: clamp(28px, 4vw, 48px) 0; }

/* Mobile: tighten ONLY the gap into the homepage Biography (Η Αφήγηση Ζωής)
   and Pricing (Κόστος) sections — every other section keeps its full 72px
   rhythm. Targeted via :has() so no HTML change is needed. */
@media (max-width: 720px) {
  /* Above the Biography section (".section--tint" wrapping ".hero--split"). */
  .section--light:has(+ .section--tint > .hero--split) {
    padding-bottom: 24px;
  }
  .section--tint:has(> .hero--split) {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  /* Above the Pricing section (".section--dark" right after the Biography). */
  .section--tint:has(> .hero--split) + .section--dark {
    padding-top: 24px;
  }
}

/* Every old modifier resolves to the section surface on almost-black body. */
.hero,
.section--light,
.section--tint,
.section--dark {
  background-color: var(--c-bg);
  color: var(--c-sub);
}
.hero h1, .hero h2, .hero h3, .hero h4,
.section--light h1, .section--light h2, .section--light h3, .section--light h4,
.section--tint h1, .section--tint h2, .section--tint h3, .section--tint h4,
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--c-head);
}
.hero p, .section--light p, .section--tint p, .section--dark p {
  color: var(--c-sub);
}

/* 1px hairline separator between hero and body (opt-in).
   Used on /pos-leitoyrgei and /en/how-it-works. */
.hero.hero--divider { border-bottom: 1px solid var(--c-border); }

/* Hero layout — split image/text on homepage */
.hero { padding: 0; text-align: left; overflow: hidden; }
.hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px 88px;
  text-align: center;
}
.hero__inner h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 .35em;
}
.hero__inner .hero__lede { margin: 0 auto 1.5em; max-width: 620px; }
@media (max-width: 720px) {
  .hero__inner { padding: 64px 20px 56px; }
}
/* Full-bleed hero: background photo fills the entire viewport. Text sits on
   a subtle dark gradient on the left for legibility. Used on the homepage. */
/* Hero photo anchored to the BOTTOM so Maria's feet are always visible. */
.hero--full {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('/assets/home-hero-clean.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: var(--c-head);
  display: flex;
  align-items: center;          /* vertically centered */
  overflow: hidden;
}
/* Dark overlay on the LEFT side so the text is legible without hiding the
   right half of the photo. */
.hero--full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,0)   70%
  );
  pointer-events: none;
  z-index: 1;
}
/* Text sits inside a container so its left edge matches the page body. */
.hero--full .hero__text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container); /* same 850px as body container */
  margin: 0 auto;
  padding: 0 24px;
  color: var(--c-head);
  text-align: left;
}
.hero--full .hero__text > * { max-width: 520px; }
.hero--full .hero__text h1 {
  color: var(--c-head);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-align: left;
}
.hero--full .hero__lede {
  color: rgba(240,235,224,.88);
  font-size: 14px;
  line-height: 22px;
  max-width: 440px;
  margin: 0 0 1.5em;
  text-align: left;
}
.hero--full .hero__small {
  color: rgba(240,235,224,.68);
  font-size: 13px;
  line-height: 20px;
  margin: 1.25em 0 0;
  text-align: left;
}
.hero--full .btn { align-self: flex-start; }

@media (max-width: 768px) {
  .hero--full {
    background-image: url('/assets/home-hero-clean-sm.jpg');
    /* Maria sits in the right ~30% of the photo. Anchor at 70% so her full
       figure is visible after the wide image is cropped to portrait. */
    background-position: 70% bottom;
    align-items: center;
  }
  .hero--full::after {
    background: linear-gradient(
      to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.45) 55%,
      rgba(0,0,0,.2)  100%
    );
  }
  .hero--full .hero__text { padding: 0 20px; }
  .hero--full .hero__text > * { max-width: 100%; }
}
.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--c-sub);
  max-width: 680px;
  margin: 1em auto 2em;
}
.hero__small {
  font-size: .9rem;
  color: var(--c-sub);
  margin-top: 1.5em;
}

.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: left;
}
@media (max-width: 800px) { .hero--split { grid-template-columns: 1fr; padding: 56px 24px; } }
/* Mobile: only the homepage Biography section gets tighter inner padding —
   it's the only place where hero--split sits inside a padded <section>,
   so its own padding compounds with the section padding above and below. */
@media (max-width: 720px) {
  .section--tint:has(> .hero--split) .hero--split {
    padding: 16px 20px;
    gap: 28px;
  }
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-accent);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 20px;
  display: block;
}
@media (max-width: 720px) {
  .section__eyebrow { font-size: 12px; letter-spacing: 2px; }
}
.section__heading { text-align: center; margin-bottom: .6em; }
/* Mobile: section headings get a confident lift to break the otherwise
   uniform rhythm of body-paragraph-CTA on every section. Desktop scale
   is governed by the h2 clamp() above and is unchanged. */
@media (max-width: 720px) {
  .section__heading {
    font-size: clamp(2rem, 7.4vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -.01em;
    margin-bottom: .4em;
  }
}
.section__lede    {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2em;
  color: var(--c-sub);
  font-size: 1rem;
  line-height: 1.6;
}

/* ================================================================
   3-up cards — sits on dark body, card surface #1e1c17
   ================================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }
/* Mobile: trade ~1,200px of vertical scroll for a horizontal swipe.
   Cards become 80% wide so the next one peeks at the right edge,
   signalling there's more to see. Snaps cleanly between cards. */
@media (max-width: 720px) {
  .cards-3 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Bleed the swipe track to the viewport edges so the first card
       starts at the page edge and the last can scroll fully into view. */
    margin-left: -24px;
    margin-right: -24px;
    padding: 4px 24px 12px;
    scrollbar-width: none;
  }
  .cards-3::-webkit-scrollbar { display: none; }
  .cards-3 > .card {
    scroll-snap-align: start;
    height: auto;
  }
}
.card {
  background-color: var(--c-card);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  color: var(--c-sub);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card h3 { color: var(--c-head); margin: 0 0 .5em; }
.card p  { color: var(--c-sub); font-size: .95rem; line-height: 1.6; }
.card__img {
  aspect-ratio: 1 / 1;
  background: var(--c-black);
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-accent);
  font-size: .8rem;
  margin-bottom: 8px;
}
.card__stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  margin-top: auto;            /* pin to the bottom so stats align across cards */
  border-top: 1px solid var(--c-border);
}
.card__stat-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--c-accent);
}
.card__stat-label { font-size: .9rem; color: var(--c-sub); }

/* ================================================================
   Numbered steps
   ================================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-card);
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; line-height: 1;
  margin-bottom: 16px;
}
.step__text { font-size: .95rem; color: var(--c-sub); line-height: 1.55; }

/* ================================================================
   Pricing
   ================================================================ */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 48px auto 0;
}
@media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  background-color: var(--c-card);
  padding: 36px 32px;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  color: var(--c-sub);
}
.price-card__tier {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--c-head);
  margin-bottom: 4px;
}
.price-card__price {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.1;
  color: var(--c-accent);
  margin: 8px 0;
}
.price-card__terms {
  color: var(--c-sub);
  font-size: .95rem;
  margin-bottom: 24px;
}
.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: .95rem;
  color: var(--c-head);
}
.price-card__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.price-card__features li:last-child { border-bottom: 0; }
.price-card .btn { align-self: flex-start; }

/* ================================================================
   Pricing comparison table — unified Standard vs Premium grid
   ================================================================ */
/* Widened wrapper so the comparison table doesn't trigger a horizontal scrollbar
   on desktop even though the main body container is 850px. */
.pricing-wide {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-table {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  color: var(--c-head);
  font-family: var(--sans);
  table-layout: fixed;
}
.pricing-table col.pt-col--label { width: 44%; }
.pricing-table col.pt-col--tier  { width: 28%; }

.pricing-table thead th {
  padding: 8px 20px 28px;
  vertical-align: bottom;
  text-align: center;
  font-weight: 400;
  border-bottom: 1px solid var(--c-border);
}
.pricing-table thead th:first-child { border-bottom: 0; }
.pt-tier {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--c-head);
  letter-spacing: .02em;
  margin: 0 0 8px;
}
.pt-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--c-accent);
  margin: 0 0 10px;
}
.pt-terms {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-sub);
  letter-spacing: .04em;
  margin: 0;
  text-transform: none;
}

.pricing-table tbody th {
  text-align: left;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: var(--c-head);
  padding: 14px 20px 14px 18px;
}
.pricing-table tbody td {
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--c-head);
  padding: 14px 12px;
  vertical-align: middle;
}
/* Subtle alternating rows — single-step contrast on the dark body */
.pricing-table tbody tr:nth-child(odd) { background-color: rgba(240, 235, 224, .025); }

.pt-miss  { color: #4d463c; font-size: 18px; }   /* dimmed ✗, not red */
.pt-extra { color: var(--c-sub); font-size: 12px; margin-left: 6px; letter-spacing: .02em; }
.pt-addon {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--c-accent);
}
/* Tiny benefit tag under the feature label — "1-2 words" clarification */
.pt-benefit {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-sub);
  margin-top: 5px;
}
/* Prose values (e.g. "up to 50", "32 pages, 10 copies") — smaller than ticks */
.pt-text {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--c-head);
  letter-spacing: .01em;
}
.pt-text--muted { color: var(--c-sub); }
/* Section dividers in the table — optional visual rhythm */
.pricing-table tbody tr.pt-break th,
.pricing-table tbody tr.pt-break td {
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}

.pricing-table tfoot td {
  padding: 28px 6px 0;
  vertical-align: top;
  border-top: 1px solid var(--c-border);
}
.pricing-table tfoot td:first-child { border-top: 0; }
.pricing-table tfoot .btn {
  display: block;
  width: 100%;
  padding: 14px 10px;
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 1.25;
  text-align: center;
  white-space: normal;            /* allow 2-line wrap if truly necessary */
  box-sizing: border-box;
}

/* Desktop: table fits the wider wrapper, no scrollbar.
   Mobile: fall back to horizontal scroll only if it's actually needed. */
.pricing-table-wrap { overflow-x: visible; }
@media (max-width: 720px) {
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table { min-width: 560px; }
  .pricing-table tbody th { font-size: 13px; padding: 12px 14px 12px 8px; }
  .pricing-table tfoot .btn { font-size: 11px; padding: 12px 8px; letter-spacing: 1px; }
  .pt-price { font-size: 2.25rem; }
  .pt-tier { font-size: 1.25rem; }
}

/* ================================================================
   Cream section  — matches the "A grave, connected to the story"
   reference screenshot: ivory background, dark text, black CTA.
   Background uses the same cream tone as the site headings (#f0ebe0).
   ================================================================ */
.section--cream {
  background-color: #f0ebe0;
  color: #1a1b1f;
}
.section--cream h1,
.section--cream h2,
.section--cream h3,
.section--cream h4 {
  color: #1a1b1f;
  font-family: var(--serif);
  font-weight: 400;
}
.section--cream p { color: #3d352b; }
.section--cream .section__eyebrow {
  color: #8a7f6e;
  letter-spacing: .22em;
  font-weight: 700;
}
.section--cream .btn {
  background-color: #0e0d0b;
  color: #fff !important;
}
.section--cream .btn:hover { background-color: #1a1b1f; }
.section--cream .qr-feature ul { color: #3d352b; }

/* Cream sections: clean defaults — no heavy anchor.
   The homepage "A grave, connected to the story" sits on this baseline.
   The pricing "For children" gets a subtle image frame via .qr-feature--frame. */
.section--cream { padding: 96px 0; }
.section--cream .qr-feature { align-items: center; gap: 56px; max-width: 1040px; margin: 0 auto; }
.section--cream .split__img {
  background: transparent;
  border: 0;
  padding: 0;
  aspect-ratio: auto;
  box-shadow: none;
}
.section--cream .split__img::before { content: none; }
.section--cream .split__img img { max-width: 100%; max-height: 100%; }

/* Discreet image frame — applied ONLY to the pricing "For children" block
   via <div class="qr-feature qr-feature--frame">.
   Frame hugs the image rather than stretching the full column width. */
.qr-feature--frame .split__img {
  background: #ffffff;
  border: 1px solid rgba(58, 43, 32, .14);
  padding: 2px;
  aspect-ratio: auto;
  box-shadow: none;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.qr-feature--frame .split__img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .section--cream { padding: 72px 0; }
  .section--cream .qr-feature { gap: 32px; }
}
/* Links inside cream banner (e.g. mailto: on FAQ) must stand out against beige. */
.section--cream a { color: #0e0d0b; text-decoration: underline; }
.section--cream a:hover { color: #3d352b; }
.section--cream .btn { text-decoration: none; }
.section--cream .btn--ghost {
  border-color: #0e0d0b;
  color: #0e0d0b !important;
  background: transparent;
}
.section--cream .btn--ghost:hover { background: #0e0d0b; color: #fff !important; }

/* ================================================================
   Premium reveal — full-bleed dark band on the pricing page.
   Editorial spec-sheet layout: copy left (eyebrow / H2 / intro /
   numbered component list), large product photo right, no frame.
   Uses the brand's native dark palette so it reads as a curatorial
   moment, not a templated card.
   ================================================================ */
.premium-reveal-section { padding: clamp(72px, 12vw, 160px) 0; }

.premium-reveal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}

.premium-reveal__copy { max-width: 440px; }
.premium-reveal__copy .section__eyebrow {
  color: var(--c-accent);
  letter-spacing: .18em;
  margin-bottom: 24px;
  display: block;
}
.premium-reveal__copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -.005em;
}
.premium-reveal__intro {
  margin: 0 0 48px;
  color: var(--c-sub);
  line-height: 1.65;
  max-width: 36ch;
}

.premium-reveal__media { margin: 0; }
.premium-reveal__media picture,
.premium-reveal__media img {
  display: block;
  width: 100%;
  height: auto;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--c-border);
}
.spec-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: baseline;
}
.spec-list__num {
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--c-accent);
}
.spec-list__name {
  font-size: 15px;
  color: var(--c-head);
  font-family: var(--sans);
}
.spec-list__where {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sub);
  white-space: nowrap;
}

/* Mirror modifier — image left, copy right (used by the children
   reveal so the two editorial blocks visually mirror each other).
   Children block runs ~2× the image footprint of the packaging
   block: wider container, narrow copy column, image fills the rest. */
@media (min-width: 901px) {
  .premium-reveal--mirror {
    max-width: 1680px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: clamp(40px, 5vw, 72px);
  }
  .premium-reveal--mirror .premium-reveal__copy { order: 2; max-width: 320px; }
  .premium-reveal--mirror .premium-reveal__media { order: 1; }
}

/* Cream-palette variant of the premium reveal — same layout,
   warm ivory background, brown ink, used for the children block. */
.section--cream .premium-reveal__copy .section__eyebrow { color: #8a7f6e; }
.section--cream .premium-reveal__intro { color: #3d352b; }
.section--cream .spec-list { border-top-color: rgba(58, 43, 32, .16); }
.section--cream .spec-list li { border-bottom-color: rgba(58, 43, 32, .16); }
.section--cream .spec-list__num { color: #8a7f6e; }
.section--cream .spec-list__name { color: #1a1b1f; }
.section--cream .spec-list__where { color: #8a7f6e; }
.section--cream.premium-reveal-section { padding: clamp(72px, 12vw, 160px) 0; }

@media (max-width: 900px) {
  .premium-reveal {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .premium-reveal__media,
  .premium-reveal--mirror .premium-reveal__media { order: -1; }
  .premium-reveal__copy,
  .premium-reveal--mirror .premium-reveal__copy { max-width: none; margin-left: 0; order: 0; }
  .spec-list li { grid-template-columns: 36px 1fr auto; gap: 16px; }
}

/* ================================================================
   QR / Split layouts
   ================================================================ */
.qr-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .qr-feature { grid-template-columns: 1fr; } }
.qr-feature ul {
  padding-left: 1.2em;
  color: var(--c-sub);
}
.qr-feature li { margin: 8px 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split__img {
  background: var(--c-card);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;   /* equal boxes, independent of column height */
}
.split__img img {
  max-width: 280px;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Mobile: .split__img is a flex container whose intrinsic min-content size
   (image max-width + padding + border) is wider than the single-column
   grid track. That overflow shifted the card past the right edge of the
   page on the QR memorial page. min-width:0 lets the box shrink to fit. */
@media (max-width: 800px) {
  .split__img {
    width: 100%;
    min-width: 0;
  }
}

/* ================================================================
   FAQ
   ================================================================ */
/* Tighter gap on interior pages; more breathing room on the homepage after hero--full. */
.hero + .section--light,
.hero + .section--tint,
.hero + .section--dark,
.hero + .section--cream { padding-top: 32px; }

/* Pricing page: stronger tonal contrast between dark hero and the pricing
   cards below. Warm oatmeal paper tone + accent top border. */
.section--paper {
  background-color: #e8e1cd;
  color: #1a1b1f;
  border-top: 4px solid var(--c-accent);
  padding: 80px 0;
}
.section--paper h1, .section--paper h2, .section--paper h3, .section--paper h4 {
  color: #1a1b1f;
  font-family: var(--serif);
  font-weight: 400;
}
.section--paper p { color: #3d352b; }
.section--paper .price-card {
  background: #fff;
  border-color: #d6cfba;
  color: #1a1b1f;
}
.section--paper .price-card__tier,
.section--paper .price-card__price,
.section--paper .price-card__features { color: #1a1b1f; }
.section--paper .price-card__terms { color: #6b6153; }
.section--paper .price-card__features li { border-bottom-color: #efe9d7; }
.section--paper .price-card .btn {
  background: #0e0d0b;
  color: #fff !important;
}
.section--paper .price-card .btn:hover { background: #1a1b1f; }
.hero--full + section,
.hero--full + .section--dark,
.hero--full + .section--light,
.hero--full + .section--tint,
.hero--full + .section--cream { padding-top: 120px; }
@media (max-width: 768px) {
  .hero--full + section,
  .hero--full + .section--dark,
  .hero--full + .section--light,
  .hero--full + .section--tint,
  .hero--full + .section--cream { padding-top: 72px; }
}

.faq { max-width: 760px; margin: 16px auto 0; }
.faq details {
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
}
.faq details[open] summary { color: var(--c-accent); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--c-head);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--c-sub);
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 12px; color: var(--c-sub); font-size: .97rem; line-height: 1.65; }

/* ================================================================
   Article list + detail
   ================================================================ */
.articles-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto 32px;
  padding: 0 24px;
}
@media (max-width: 900px) { .articles-feature { grid-template-columns: 1fr; } }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
  background: var(--c-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  display: block;
  color: var(--c-sub);
}
.article-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.article-card__body { padding: 18px; }
.article-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.15rem;
  color: var(--c-head);
  margin: 0 0 .5em;
}
.article-card__excerpt { color: var(--c-sub); font-size: .9rem; line-height: 1.55; }
.article-card:hover {
  text-decoration: none;
  border-color: var(--c-accent);
  box-shadow: 0 10px 26px rgba(0,0,0,.5);
}

.article-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
}
@media (max-width: 800px) { .article-hero { grid-template-columns: 1fr; } }

.discover { padding: 64px 0 96px; background: var(--c-black); }
.discover__title {
  text-align: center; font-family: var(--serif); font-weight: 400;
  color: var(--c-head); margin-bottom: 32px;
}

.article {
  max-width: 780px;
  margin: 64px auto;
  padding: 0 24px;
}
.article__hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-bottom: 32px; }
.article__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 2.25rem;
  color: var(--c-head);
  margin-bottom: 24px;
}
.article__body p { margin-bottom: 1em; color: var(--c-sub); font-size: 1rem; line-height: 1.7; }
.article__note {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--c-card);
  border-left: 3px solid var(--c-accent);
  border-radius: 6px;
  color: var(--c-sub);
  font-size: .92rem;
}

/* ================================================================
   Anatomy tiles (memorial website structure)
   ================================================================ */
.anatomy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .anatomy { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .anatomy { grid-template-columns: 1fr; } }
.anatomy__item {
  background-color: var(--c-card);
  padding: 28px 24px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  color: var(--c-sub);
}
.anatomy__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--c-accent);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 6px;
}
.anatomy__title { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--c-head); margin: 0 0 .5em; }
.anatomy__body  { color: var(--c-sub); font-size: .95rem; line-height: 1.55; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--c-sub);
  border-top: 1px solid var(--footer-bord);
  padding: 50px 30px 15px;
  font-family: var(--sans);
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr; gap: 32px; } }
.site-footer__brand img { max-width: 160px; filter: brightness(0) invert(1) opacity(.9); }
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 560px) { .site-footer__columns { grid-template-columns: 1fr; } }
.site-footer__column-title {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--c-head);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.site-footer a { display: block; padding: 4px 0; color: var(--c-sub); font-size: .95rem; text-decoration: none; }
.site-footer a:hover { color: var(--c-accent); }
.site-footer__divider {
  max-width: var(--container);
  margin: 40px auto 16px;
  height: 1px;
  background: var(--footer-bord);
}
.site-footer__copy {
  max-width: var(--container);
  margin: 0 auto;
  font-size: .8rem;
  color: var(--c-sub);
  opacity: .7;
  text-align: left;
}

/* ================================================================
   Biography iframe embed
   ================================================================ */
/* Darker tone than the rest of the dark body so the flipbook has visual
   separation from the hero above it. */
.section--embed {
  background: #050403;
  color: var(--c-head);
  padding: 88px 0;
  border-top: 1px solid #1a1815;
  border-bottom: 1px solid #1a1815;
}
.embed-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 0 24px;
  text-align: center;
}
.embed-intro__main {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--c-head);
  margin: 0 0 24px;
}
.embed-intro__eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}
@media (max-width: 720px) {
  .embed-intro__eyebrow { font-size: 12px; }
}
.embed-intro__line {
  color: var(--c-sub);
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
.section--embed h1, .section--embed h2 { color: var(--c-head); }
.embed-frame {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.section--embed .container.wide,
.section--embed .container-wide { max-width: 1440px; padding: 0 20px; }
.embed-frame iframe { display: block; width: 100%; height: 1400px; border: 0; background: #000; }
@media (max-width: 1100px) { .embed-frame iframe { height: 1200px; } }
@media (max-width: 700px)  { .embed-frame iframe { height: 900px; } }

/* Mobile: hide the live iframes and show a static preview image with a
   "view live demo" CTA instead. Live iframes inside a vertically-scrolling
   mobile page create nested-scroll conflicts on iOS, the embedded apps'
   viewport behaviour is inconsistent across browsers, and a 900px-tall
   black box dominates the page while loading. A still preview is faster,
   readable, and lets the visitor open the full demo when they want it. */
.embed-frame__live { display: block; }
.embed-frame__static { display: none; }

@media (max-width: 768px) {
  .embed-frame__live { display: none !important; }
  .embed-frame__static {
    display: block;
    position: relative;
    color: var(--c-head);
    text-decoration: none;
    background: #000;
  }
  .embed-frame__static:hover { text-decoration: none; }
  .embed-frame__static picture,
  .embed-frame__static img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* Caption sits over the bottom of the preview image with a soft fade-up. */
  .embed-frame__cta {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 56px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,0) 100%);
    color: var(--c-head);
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
  }
  /* Cancel the inherited iframe-frame chrome on mobile — the preview image
     has its own rounded corners via the embed-frame container. */
  .embed-frame--booklet { aspect-ratio: auto; box-shadow: none; }
}

/* Booklet variant: smaller, so the flip-book's nav arrows are visible without
   the user zooming out. Applied to the flipbook iframe only. */
.embed-frame--booklet {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.embed-frame--booklet iframe {
  width: 100%;
  height: 520px;
  min-height: 480px;
  max-height: 560px;
}
/* On mobile the flipbook iframe is hidden in favour of a static preview —
   see the .embed-frame__static rules below. */

/* Children's flipbook sits inside the premium-reveal mirror layout, where the
   media column is ~1100–1280px wide on desktop. Override the booklet defaults
   so the iframe fills its column and the flipbook's text pages aren't clipped. */
@media (min-width: 901px) {
  .premium-reveal--mirror .embed-frame--booklet {
    max-width: 100%;
  }
  .premium-reveal--mirror .embed-frame--booklet iframe {
    height: 780px;
    min-height: 720px;
    max-height: 860px;
  }
}

/* ================================================================
   Legal pages — narrow readable column on the dark body
   ================================================================ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  color: var(--c-sub);
  font-size: 16px;
  line-height: 1.7;
}
.legal__eyebrow {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 20px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  color: var(--c-head);
  margin: 0 0 12px;
}
.legal__updated { color: var(--c-sub); font-size: 14px; margin: 0 0 48px; opacity: .75; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--c-head);
  margin: 56px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.legal h2:first-of-type { padding-top: 0; border-top: 0; margin-top: 24px; }
.legal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--c-head);
  margin: 32px 0 12px;
}
.legal p { margin: 0 0 1em; color: var(--c-sub); }
.legal ul { margin: 0 0 1.25em; padding-left: 1.2em; color: var(--c-sub); }
.legal ul li { margin: 6px 0; line-height: 1.6; }
.legal a { color: var(--c-accent); text-decoration: underline; }
.legal a:hover { color: var(--c-head); }
.legal strong { color: var(--c-head); font-weight: 700; }

/* ================================================================
   Utilities
   ================================================================ */
.center-cta { text-align: center; margin-top: 40px; }
.clamp-620  { max-width: 620px; margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Pre-footer (kept minimal, same body tone) */
.pre-footer { background: var(--c-black); height: 1px; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
  color: var(--c-head);
}
@media (max-width: 1200px) {
  .nav__toggle { display: inline-block; margin-left: auto; }
  .nav__list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
    background: var(--c-black);
    white-space: normal;
  }
  .nav__list.open { display: flex; }
  .nav__dropdown-menu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: block;
    background: transparent;
  }
  .nav__dropdown-toggle::after { display: none; }
}

/* ============================================================
   BLOG / JOURNAL PAGE — editorial beige palette
   Scoped to <body class="body--blog"> so it doesn't leak.
   Palette: f5e4b8 → d9c69c → c2a878 → b18f60 → 8f6b4c → 7e5549 → 5c3e34 → 3a2b20
   ============================================================ */
.body--blog {
  background: #faf5ef;
  color: #5c3e34;
}
.body--blog .site-header {
  background: #faf5ef;
  border-bottom: 1px solid #c2a878;
}
.body--blog .nav__link,
.body--blog .nav__dropdown-toggle,
.body--blog .nav__lang,
.body--blog .nav__lang a,
.body--blog .nav__toggle { color: #3a2b20; }
.body--blog .nav__link:hover,
.body--blog .nav__lang a:hover { color: #8f6b4c; }
.body--blog .nav__link.active,
.body--blog .nav__lang a.active { color: #8f6b4c; }
.body--blog .nav__brand img { filter: none; opacity: .95; }
.body--blog .btn { background: #3a2b20; color: #faf5ef !important; }
.body--blog .btn:hover { background: #5c3e34; }
.body--blog .nav__dropdown-menu { background: #d9c69c; border-color: #c2a878; }
.body--blog .nav__dropdown-menu a { color: #3a2b20; }
.body--blog .nav__dropdown-menu a:hover { background: #c2a878; color: #3a2b20; }

.blog-masthead {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 40px;
  text-align: center;
  color: #3a2b20;
}
.blog-masthead__eye {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b18f60;
  margin: 0 0 18px;
}
.blog-masthead h1 {
  font-family: "Vollkorn", serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: #3a2b20;
  margin: 0 0 18px;
}
.blog-masthead__dek {
  font-family: "Vollkorn", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: #7e5549;
  max-width: 620px;
  margin: 0 auto;
}
.blog-masthead__rule {
  width: 64px;
  height: 2px;
  background: #b18f60;
  margin: 32px auto 0;
  border: 0;
}

/* Asymmetric hero feature */
.blog-hero {
  max-width: 1320px;
  margin: 56px auto 96px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
  color: #3a2b20;
  text-decoration: none;
}
.blog-hero:hover { text-decoration: none; }
.blog-hero__img { aspect-ratio: 4/3; overflow: hidden; }
.blog-hero__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-hero:hover .blog-hero__img img { transform: scale(1.02); }
.blog-hero__eye {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b18f60;
  margin: 0 0 14px;
}
.blog-hero__title {
  font-family: "Vollkorn", serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.005em;
  color: #3a2b20;
  margin: 0 0 20px;
}
.blog-hero__excerpt {
  font-family: "Vollkorn", serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5c3e34;
  margin: 0 0 24px;
}
.blog-hero__more {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8f6b4c;
  border-bottom: 1px solid #b18f60;
  padding-bottom: 3px;
}
.blog-hero:hover .blog-hero__more { color: #3a2b20; border-color: #3a2b20; }
@media (max-width: 900px) {
  .blog-hero { grid-template-columns: 1fr; gap: 32px; margin: 32px auto 64px; }
}

/* 3-column magazine grid */
.blog-grid {
  max-width: 1320px;
  margin: 0 auto 96px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.blog-grid--two  { grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 900px) {
  .blog-grid, .blog-grid--two { grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; }
}

.blog-card {
  display: block;
  color: #3a2b20;
  text-decoration: none;
}
.blog-card:hover { text-decoration: none; }
.blog-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 24px;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-card__img img { transform: scale(1.03); }
.blog-card__eye {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b18f60;
  margin: 0 0 10px;
}
.blog-card__title {
  font-family: "Vollkorn", serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  color: #3a2b20;
  margin: 0 0 12px;
  letter-spacing: -.005em;
}
.blog-card__excerpt {
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #7e5549;
  margin: 0;
}
.blog-card:hover .blog-card__title { color: #8f6b4c; }

/* Wide editorial feature (centerpiece) */
.blog-feature {
  max-width: 1320px;
  margin: 0 auto 96px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  color: #3a2b20;
  text-decoration: none;
}
.blog-feature:hover { text-decoration: none; }
.blog-feature__img { aspect-ratio: 3/2; overflow: hidden; }
.blog-feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-feature:hover .blog-feature__img img { transform: scale(1.02); }
.blog-feature__eye { font-family: "Lato", Arial, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #b18f60; margin: 0 0 14px; }
.blog-feature__title {
  font-family: "Vollkorn", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  color: #3a2b20;
  margin: 0 0 18px;
  letter-spacing: -.005em;
}
.blog-feature__excerpt { font-family: "Vollkorn", serif; font-size: 1.05rem; line-height: 1.6; color: #5c3e34; margin: 0 0 20px; }
.blog-feature__more { font-family: "Lato", Arial, sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #8f6b4c; border-bottom: 1px solid #b18f60; padding-bottom: 3px; }
.blog-feature:hover .blog-feature__more { color: #3a2b20; border-color: #3a2b20; }
@media (max-width: 900px) {
  .blog-feature { grid-template-columns: 1fr; gap: 32px; }
}

.blog-divider {
  max-width: 1320px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.blog-divider__rule {
  height: 1px;
  background: #c2a878;
  width: 100%;
  margin: 0;
  border: 0;
}
.blog-divider__label {
  display: block;
  text-align: center;
  margin-top: -10px;
}
.blog-divider__label span {
  background: #faf5ef;
  padding: 0 20px;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b18f60;
}

/* Body-blog footer treatment: dark chocolate */
.body--blog .site-footer {
  background: #3a2b20;
  color: #d9c69c;
  border-top: 1px solid #5c3e34;
  border-bottom: 1px solid #5c3e34;
}
.body--blog .site-footer__column-title { color: #faf5ef; }
.body--blog .site-footer a { color: #d9c69c; }
.body--blog .site-footer a:hover { color: #faf5ef; }
.body--blog .site-footer__divider { background: #5c3e34; }
.body--blog .site-footer__copy { color: #8f6b4c; }
