:root {
  --paper: #f3efe6;
  --ink: #121816;
  --red: #a52f25;
  --gold: #b3935c;
  --line: rgba(18, 24, 22, 0.2);
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.logo img { height: 44px; width: auto; }
nav.primary-nav {
  display: flex;
  gap: 2rem;
}
nav.primary-nav a {
  text-decoration: none;
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .5rem .75rem;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav a {
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
}
.mobile-nav.open { display: flex; }

@media (max-width: 720px) {
  nav.primary-nav { display: none; }
  .menu-toggle { display: inline-block; }
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow .rule { width: 40px; height: 1px; background: var(--red); flex-shrink: 0; }

/* Cinematic hero */
.hero-cinema {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #0c1210;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 12, 11, 0.45) 0%, rgba(8, 12, 11, 0.62) 55%, rgba(8, 12, 11, 0.85) 100%);
}
.hero-cinema-inner {
  position: relative;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-cinema-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.eyebrow.light { color: rgba(243, 239, 230, 0.85); }
.rule.gold { background: var(--gold); }
.seal.light { border-color: var(--gold); color: var(--gold); }
h1.headline.light { color: var(--paper); margin-bottom: 1.5rem; }
.hero-sub {
  color: rgba(243, 239, 230, 0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.btn-solid {
  display: inline-block;
  background: var(--red);
  color: var(--paper);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .95rem 1.8rem;
  border-radius: 999px;
}
.btn-solid:hover { background: #8f271e; }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(243, 239, 230, 0.45);
  color: var(--paper);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .95rem 1.8rem;
  border-radius: 999px;
}
.btn-ghost:hover { border-color: var(--paper); }
.hero-cinema-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.label.light { color: rgba(243, 239, 230, 0.7); }
.scroll-cue.light { border-color: rgba(243, 239, 230, 0.4); color: var(--paper); }
@media (max-width: 640px) {
  .hero-cinema { min-height: 100svh; }
  .hero-cinema-inner { padding-top: 4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-cinema { background: url('/craft-blackplate.webp') center/cover no-repeat #0c1210; }
}

/* Signature strip */
.signature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media (max-width: 760px) { .signature { grid-template-columns: 1fr; padding-top: 3rem; } }
.signature-item { margin: 0; }
.signature-item.raised { transform: translateY(-2.5rem); }
@media (max-width: 760px) { .signature-item.raised { transform: none; } }
.signature-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 50px -28px rgba(18, 24, 22, 0.5);
}
.signature-item figcaption {
  margin-top: .9rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .98rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.gold-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Craft in motion */
.motion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 760px) { .motion-grid { grid-template-columns: 1fr; } }
.motion-card { margin: 0; }
.motion-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  background: #0c1210;
  box-shadow: 0 24px 50px -28px rgba(18, 24, 22, 0.5);
  display: block;
}
.motion-card figcaption { margin-top: .9rem; }
.motion-card .tag {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.motion-card .title { font-family: var(--font-serif); font-size: 1.1rem; }
.footer-credit { font-size: .72rem; opacity: .7; }
.seal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  text-align: center;
}
.seal .kanji { font-size: 1.8rem; line-height: 1; margin-bottom: .35rem; }
.seal .seal-label { font-size: .55rem; letter-spacing: .1em; }

h1.headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin: 0 0 2.5rem;
}
h1.headline .accent {
  display: block;
  color: var(--red);
  font-style: italic;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-footer .label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.hero-footer p { margin: .15rem 0; color: var(--ink); }
.scroll-cue {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--ink); flex-shrink: 0;
}

/* Section headers */
.section { padding: 5rem 0; border-top: 1px solid var(--line); }
.section-kicker {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  max-width: 720px;
}
.section-title em { color: var(--red); font-style: italic; }
.section-lede {
  max-width: 620px;
  font-size: 1.05rem;
  color: var(--ink);
  opacity: .85;
}

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story-card {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.story-card .num { font-size: .8rem; color: var(--gold); letter-spacing: .1em; }
.story-card .kicker { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin: .5rem 0 1rem; }
.story-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 .75rem;
}
.story-card p { margin: 0; opacity: .85; }

blockquote.verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
  margin: 3rem 0;
}
blockquote.verse cite { display: block; font-style: normal; font-size: .85rem; letter-spacing: .08em; margin-top: .75rem; opacity: .7; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }
.video-card { position: relative; text-decoration: none; color: var(--ink); display: block; }
.video-card img { width: 100%; height: auto; border-radius: 4px; aspect-ratio: 4/5; object-fit: cover; }
.video-card .play {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.video-card .caption { margin-top: .75rem; }
.video-card .caption .tag { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
.video-card .caption .title { font-family: var(--font-serif); font-size: 1.1rem; }

/* Gallery grid (used on Learn page thumbnails) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .75rem;
  margin-top: 3rem;
}
.gallery-grid button {
  padding: 0; border: none; background: none; cursor: pointer; display: block;
}
.gallery-grid img {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 2px;
}
.gallery-cta { margin-top: 2rem; }
.gallery-cta a { text-decoration: none; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: .25rem; }

/* Gallery carousel (auto-advancing slideshow) */
.carousel {
  position: relative;
  margin-top: 3rem;
  border-radius: 6px;
  overflow: hidden;
  background: #00000008;
}
.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
}
.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: block;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-controls {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.carousel-dots {
  display: flex;
  gap: .4rem;
  padding: .4rem .6rem;
  background: rgba(18, 24, 22, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.carousel-dots button {
  width: 7px; height: 7px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(243, 239, 230, 0.5);
}
.carousel-dots button.is-active { background: var(--paper); }
.carousel-toggle {
  border: none;
  background: rgba(18, 24, 22, 0.35);
  color: var(--paper);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  backdrop-filter: blur(2px);
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(18, 24, 22, 0.35);
  color: var(--paper);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}
.carousel-nav.prev { left: 1rem; }
.carousel-nav.next { right: 1rem; }
@media (max-width: 640px) {
  .carousel-nav { display: none; }
}

/* Travel journal cards */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 760px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.journal-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 46px -24px rgba(18, 24, 22, 0.4);
  transition: transform 220ms ease;
}
.journal-card:hover img { transform: translateY(-4px); }
.journal-card-body { padding-top: 1.25rem; }
.journal-card-body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 .4rem;
}
.journal-card-body p { margin: 0 0 .75rem; opacity: .8; }
.travel-meta { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; opacity: .65; margin: 0 0 .5rem; }
.btn-link {
  display: inline-block;
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: .25rem;
  color: var(--ink);
}

/* YouTube rows */
.yt-row { margin-top: 3.5rem; }
.yt-row:first-of-type { margin-top: 2.5rem; }
.yt-row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.yt-row-head .num { font-size: .75rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin: 0 0 .35rem; }
.yt-row-head h3 { font-family: var(--font-serif); font-weight: 400; font-size: 1.4rem; margin: 0; }
.yt-see-all {
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .75;
  border-bottom: 1px solid var(--line);
  padding-bottom: .2rem;
  white-space: nowrap;
}
.yt-see-all:hover { opacity: 1; border-color: var(--ink); }

.yt-shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x proximity;
}
.yt-video-card {
  text-decoration: none;
  color: var(--ink);
  scroll-snap-align: start;
  display: block;
}
.yt-thumb {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 10px 26px -14px rgba(18, 24, 22, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.yt-video-card:hover .yt-thumb {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -14px rgba(18, 24, 22, 0.55);
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  background: radial-gradient(circle at center, rgba(18,24,22,.15) 0%, rgba(18,24,22,0) 55%);
}
.yt-play::before {
  content: '';
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(18, 24, 22, 0.45);
  backdrop-filter: blur(2px);
}
.yt-play::after {
  content: '▶';
  position: relative;
  margin-left: 3px;
}
.yt-video-title {
  display: block;
  margin-top: .6rem;
  font-size: .82rem;
  line-height: 1.35;
  opacity: .85;
}

@media (max-width: 640px) {
  .yt-shelf { grid-auto-columns: minmax(118px, 1fr); gap: .75rem; }
  .yt-video-title { font-size: .75rem; }
}

/* Connect */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .connect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .connect-grid { grid-template-columns: 1fr; } }
.connect-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--ink);
}
.connect-card .icon { font-size: 1.4rem; margin-bottom: 1rem; }
.connect-card .tag { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
.connect-card .name { font-family: var(--font-serif); font-size: 1.15rem; margin: .35rem 0; }
.connect-card .handle { font-size: .85rem; opacity: .7; }

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0;
  font-size: .85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner a { text-decoration: none; }
.footer-meta { opacity: .6; text-align: right; }

/* Lightbox */
dialog.lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 95vw;
  max-height: 95vh;
}
dialog.lightbox::backdrop { background: rgba(18,24,22,.9); }
dialog.lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; margin: 0 auto; display: block; }
dialog.lightbox button.close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: var(--paper); border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer;
  z-index: 2;
}
dialog.lightbox .lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(243, 239, 230, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2;
}
dialog.lightbox .lightbox-nav.prev { left: 1rem; }
dialog.lightbox .lightbox-nav.next { right: 1rem; }
@media (max-width: 640px) {
  dialog.lightbox .lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  dialog.lightbox .lightbox-nav.prev { left: .5rem; }
  dialog.lightbox .lightbox-nav.next { right: .5rem; }
}
dialog.lightbox .lightbox-caption {
  color: var(--paper);
  text-align: center;
  font-size: .85rem;
  opacity: .85;
  margin: .75rem 0 0;
}

/* Madrid page */
.madrid-hero { padding: 4rem 0 3rem; }
.madrid-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.madrid-meta { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; margin-top: 1.5rem; }
.madrid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-bottom: 4rem;
}
.madrid-item button { padding: 0; border: none; background: none; cursor: pointer; width: 100%; text-align: left; }
.madrid-item img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.madrid-item .tag { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; opacity: .6; margin-top: .75rem; }
.madrid-item .title { font-family: var(--font-serif); font-size: 1.05rem; margin-top: .15rem; }
.back-home { display: inline-block; margin-bottom: 2rem; text-decoration: none; font-size: .85rem; letter-spacing: .05em; }

/* Learn Sushi page */
.learn-hero { padding: 4rem 0 3rem; }
.learn-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.learn-banner { margin: 1rem 0 4rem; }
.learn-banner video {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 10px;
  background: #0c1210;
  box-shadow: 0 30px 60px -30px rgba(18, 24, 22, 0.5);
  display: block;
}
.learn-banner figcaption {
  margin-top: .9rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .98rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
@media (max-width: 640px) { .learn-banner video { aspect-ratio: 16/10; } }

.learn-steps {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-bottom: 5rem;
}
.learn-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.learn-step:nth-child(even) .learn-media { order: 2; }
@media (max-width: 820px) {
  .learn-step { grid-template-columns: 1fr; gap: 1.75rem; }
  .learn-step:nth-child(even) .learn-media { order: 0; }
  .learn-steps { gap: 4.5rem; }
}
.learn-media { margin: 0; position: relative; }
.learn-media img,
.learn-media video {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  background: #0c1210;
  box-shadow: 0 26px 55px -28px rgba(18, 24, 22, 0.5);
  display: block;
}
.learn-media.portrait img,
.learn-media.portrait video { aspect-ratio: 4/5; }
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .55;
  margin: 0 0 .25rem;
}
.step-tag {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 .75rem;
}
.learn-step-body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 1rem;
}
.learn-step-body p { margin: 0 0 1rem; opacity: .85; line-height: 1.75; }
.learn-tip {
  border-left: 2px solid var(--gold);
  padding: .85rem 0 .85rem 1.25rem;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .98rem;
  line-height: 1.65;
  opacity: .9;
}
.learn-tip strong { font-style: normal; font-family: var(--font-sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.learn-cta {
  text-align: center;
  padding: 3rem 0 5rem;
  border-top: 1px solid var(--line);
}
.learn-cta p { max-width: 480px; margin: 0 auto 1.5rem; opacity: .85; }

/* 404 */
.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.not-found h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 8vw, 5rem); margin: 0 0 1rem; }
.not-found p { opacity: .75; margin-bottom: 2rem; }
