/* ============================================================
   CLB VAN HOC — Vintage Library Theme
   "The Literature Society" — parchment, ink, gold leaf
   ============================================================ */

:root {
  --paper: #f4edda;
  --paper-deep: #ece1c4;
  --card: #faf5e6;
  --ink: #2c2115;
  --ink-soft: #5a4830;
  --ink-faint: #85714f;
  --brown: #4a3822;
  --brown-deep: #2b2013;
  --gold: #b0893c;
  --gold-bright: #d3a94f;
  --gold-pale: #e6d3a3;
  --oxblood: #713027;
  --forest: #2f4a38;
  --plum: #5a2e46;
  --navy: #32405e;
  --line: rgba(90, 72, 42, 0.28);
  --line-soft: rgba(90, 72, 42, 0.16);
  --shadow-card: 0 2px 6px rgba(43, 32, 19, 0.08), 0 18px 40px -18px rgba(43, 32, 19, 0.35);
  --font-display: "Playfair Display", "Cormorant Garamond", serif;
  --font-serif: "EB Garamond", Georgia, serif;
  --font-cormorant: "Cormorant Garamond", serif;
  --font-script: "Pinyon Script", cursive;
  --radius: 3px;
  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Paper grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold-bright);
  color: var(--brown-deep);
}

::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--paper-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brown), var(--brown-deep));
  border: 2px solid var(--paper-deep);
  border-radius: 6px;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */
.small-caps {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
}

.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--oxblood);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 700;
}

.kicker::before,
.kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.kicker.no-rule::before,
.kicker.no-rule::after {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.15;
  color: var(--ink);
  margin-top: 14px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.dropcap::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.4em;
  float: left;
  line-height: 0.78;
  padding: 8px 14px 0 0;
  color: var(--oxblood);
}

/* ---------- Ornamental divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px 0;
}

.divider .rule {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider .rule:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  transform: rotate(45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.45s var(--ease);
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(176, 137, 60, 0.45);
  border-radius: 2px;
  pointer-events: none;
  transition: opacity 0.4s;
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.45s var(--ease);
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn-gold {
  background: linear-gradient(140deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  color: var(--brown-deep);
  box-shadow: 0 10px 24px -10px rgba(176, 137, 60, 0.7);
}

.btn-gold:hover {
  box-shadow: 0 16px 30px -10px rgba(176, 137, 60, 0.85);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--gold-pale);
}

.btn-dark:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--brown-deep);
  color: var(--gold-pale);
  border-color: var(--brown-deep);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--brown-deep);
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(211, 169, 79, 0.35);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  gap: 16px;
}

.topbar span {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(244, 237, 218, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.4s;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px -18px rgba(43, 32, 19, 0.4);
  border-bottom-color: var(--line);
}

.site-header::after {
  content: "";
  display: block;
  height: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-badge {
  width: 46px;
  height: 46px;
  flex: none;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brown-deep);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 244, 214, 0.9), transparent 60%),
    var(--paper-deep);
  box-shadow: inset 0 0 0 3px var(--paper), inset 0 0 0 4px rgba(176, 137, 60, 0.5);
}

.brand-badge svg {
  width: 22px;
  height: 22px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: var(--oxblood);
}

.nav-cta {
  padding: 12px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: all 0.35s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(230, 211, 163, 0.5), transparent 70%),
    var(--paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero-copy .script {
  display: block;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 18px 0 24px;
}

.hero-title .accent {
  font-style: italic;
  color: var(--gold);
  position: relative;
  white-space: nowrap;
}

.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 0.28em;
  background: rgba(176, 137, 60, 0.18);
  z-index: -1;
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.14rem;
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

/* Hero visual — vintage framed artwork */
.hero-visual {
  position: relative;
  padding: 0 26px 30px 0;
}

.frame {
  position: relative;
  background: var(--card);
  padding: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(176, 137, 60, 0.55);
  pointer-events: none;
  z-index: 3;
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 4;
}

.corner.tl { top: -7px; left: -7px; border-top-width: 2px; border-left-width: 2px; }
.corner.tr { top: -7px; right: -7px; border-top-width: 2px; border-right-width: 2px; }
.corner.bl { bottom: -7px; left: -7px; border-bottom-width: 2px; border-left-width: 2px; }
.corner.br { bottom: -7px; right: -7px; border-bottom-width: 2px; border-right-width: 2px; }

/* CSS-art photo placeholder (sepia landscape) */
.photo-art {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, rgba(211, 169, 79, 0.95) 0 34px, rgba(211, 169, 79, 0.25) 35px 44px, transparent 45px),
    radial-gradient(120% 55% at 18% 102%, #6e5738 0 42%, transparent 43%),
    radial-gradient(150% 62% at 92% 108%, #7d6242 0 46%, transparent 47%),
    linear-gradient(180deg, #e5d1a0 0%, #d6bd82 52%, #c3a267 100%);
}

.photo-art svg.birds {
  position: absolute;
  top: 14%;
  left: 12%;
  width: 90px;
  color: rgba(90, 72, 42, 0.75);
}

.photo-art .art-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px 14px;
  background: linear-gradient(transparent, rgba(43, 32, 19, 0.72));
  color: var(--gold-pale);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
}

.hero-visual .frame {
  transform: rotate(1.6deg);
}

/* Wax seal */
.seal {
  position: absolute;
  bottom: -6px;
  left: -14px;
  width: 92px;
  height: 92px;
  z-index: 5;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 30%, #96453a, var(--oxblood) 58%, #571f18);
  border-radius: 47% 53% 50% 50% / 52% 48% 55% 45%;
  box-shadow:
    inset 0 0 0 4px rgba(0, 0, 0, 0.12),
    inset 0 -6px 12px rgba(0, 0, 0, 0.25),
    0 14px 26px -10px rgba(87, 31, 24, 0.65);
  transform: rotate(-8deg);
}

.seal span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-pale);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Floating quote card */
.float-quote {
  position: absolute;
  top: -30px;
  right: -6px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 18px 22px 16px;
  max-width: 240px;
  transform: rotate(-2.4deg);
  z-index: 5;
}

.float-quote::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(176, 137, 60, 0.4);
  pointer-events: none;
}

.float-quote p {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--brown);
}

.float-quote span {
  display: block;
  margin-top: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Marquee ribbon ---------- */
.ribbon {
  background: var(--brown-deep);
  border-top: 1px solid rgba(211, 169, 79, 0.4);
  border-bottom: 1px solid rgba(211, 169, 79, 0.4);
  overflow: hidden;
  padding: 16px 0;
}

.ribbon-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ribbon-scroll 36s linear infinite;
}

.ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

.ribbon-group {
  display: flex;
  align-items: center;
  flex: none;
}

.ribbon-group span {
  color: var(--gold-pale);
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 26px;
}

.ribbon-group svg {
  width: 11px;
  height: 11px;
  fill: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

@keyframes ribbon-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section.tinted {
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(236, 225, 196, 0.7), transparent 75%),
    var(--paper-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.about-sign {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.about-sign .line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.about-sign span {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--gold);
}

.ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.ledger-cell {
  padding: 34px 26px;
  text-align: center;
  position: relative;
}

.ledger-cell:nth-child(1) { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.ledger-cell:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
.ledger-cell:nth-child(3) { border-right: 1px solid var(--line-soft); }

.ledger-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
}

.ledger-cell strong sup {
  font-size: 0.5em;
  color: var(--gold);
}

.ledger-cell span {
  margin-top: 10px;
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}

/* ---------- Activity cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(43, 32, 19, 0.1), 0 30px 50px -20px rgba(43, 32, 19, 0.45);
}

.activity-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.activity-media .photo-art {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

.activity-card:hover .activity-media .photo-art {
  transform: scale(1.05);
}

.stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(244, 237, 218, 0.94);
  border: 1.5px solid var(--oxblood);
  color: var(--oxblood);
  padding: 7px 12px 6px;
  text-align: center;
  transform: rotate(3deg);
  box-shadow: 0 4px 10px rgba(43, 32, 19, 0.25);
  z-index: 3;
}

.stamp strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
}

.stamp span {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.activity-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.activity-body .cat {
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.activity-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 10px 0 10px;
  line-height: 1.25;
}

.activity-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
}

.text-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--oxblood);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.text-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease);
}

.text-link:hover svg {
  transform: translateX(5px);
}

/* ---------- Book shelf ---------- */
.shelf-wrap {
  position: relative;
  padding: 10px 0 0;
}

.shelf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  justify-items: center;
}

.book {
  width: 100%;
  max-width: 196px;
  aspect-ratio: 2 / 2.9;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px 16px 20px;
  text-align: center;
  border-radius: 2px 5px 5px 2px;
  box-shadow:
    inset 6px 0 10px -6px rgba(0, 0, 0, 0.55),
    inset -2px 0 5px rgba(255, 255, 255, 0.08),
    0 18px 30px -14px rgba(43, 32, 19, 0.55);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
}

.book::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(211, 169, 79, 0.65);
  border-radius: 2px;
  pointer-events: none;
}

.book::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(211, 169, 79, 0.8), transparent);
}

.book:hover {
  transform: translateY(-14px) rotate(-1deg);
  box-shadow:
    inset 6px 0 10px -6px rgba(0, 0, 0, 0.55),
    0 30px 44px -14px rgba(43, 32, 19, 0.6);
}

.book .b-cat {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(230, 211, 163, 0.85);
}

.book h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.3;
  color: var(--gold-pale);
}

.book .b-author {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(230, 211, 163, 0.75);
}

.book.c-oxblood { background: linear-gradient(155deg, #83362b, var(--oxblood) 60%, #4f1e17); }
.book.c-forest  { background: linear-gradient(155deg, #3c5e49, var(--forest) 60%, #1e3327); }
.book.c-navy    { background: linear-gradient(155deg, #3f5075, var(--navy) 60%, #232d44); }
.book.c-plum    { background: linear-gradient(155deg, #6d3a57, var(--plum) 60%, #3a1d2e); }
.book.c-brown   { background: linear-gradient(155deg, #5d472c, #43331d 60%, #2b2013); }

.shelf-bar {
  height: 14px;
  margin-top: 6px;
  background: linear-gradient(180deg, #6b5133, #4a3822 55%, #33261643);
  border-top: 2px solid #83643e;
  border-radius: 3px;
  box-shadow: 0 16px 26px -10px rgba(43, 32, 19, 0.5);
}

/* ---------- Quote band ---------- */
.quote-band {
  background:
    radial-gradient(90% 130% at 50% -20%, rgba(211, 169, 79, 0.16), transparent 60%),
    var(--brown-deep);
  color: var(--gold-pale);
  text-align: center;
  padding: 110px 0;
  border-top: 1px solid rgba(211, 169, 79, 0.4);
  border-bottom: 1px solid rgba(211, 169, 79, 0.4);
  position: relative;
  overflow: hidden;
}

.quote-band .qmark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
}

.quote-band blockquote {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.4;
  max-width: 820px;
  margin: 18px auto 26px;
}

.quote-band cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
}

/* ---------- CTA join ---------- */
.join {
  text-align: center;
  padding: 110px 0;
}

.join .frame {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 40px;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(230, 211, 163, 0.55), transparent 70%),
    var(--card);
}

.join h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin: 14px 0 16px;
}

.join p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 34px;
}

/* ---------- Page header (sub pages) ---------- */
.page-head {
  padding: 84px 0 74px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(230, 211, 163, 0.55), transparent 72%),
    var(--paper);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.page-head .chapter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(9rem, 22vw, 17rem);
  color: rgba(176, 137, 60, 0.09);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

.page-head .crumbs {
  color: var(--ink-faint);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-head .crumbs a {
  color: var(--gold);
}

.page-head h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  position: relative;
}

.page-head h1 em {
  color: var(--gold);
}

.page-head p {
  margin: 18px auto 0;
  max-width: 60ch;
  color: var(--ink-soft);
}

/* ---------- Timeline (about) ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 46px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--line));
}

.tl-item {
  position: relative;
  padding-bottom: 44px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 8px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  background: var(--paper);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 4px var(--paper);
}

.tl-item .tl-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--oxblood);
}

.tl-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 4px 0 6px;
}

.tl-item p {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 44px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.5s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(176, 137, 60, 0.35);
  pointer-events: none;
}

.value-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brown);
  background: radial-gradient(circle at 35% 30%, rgba(255, 246, 220, 0.9), transparent 65%), var(--paper-deep);
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ---------- Works page ---------- */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 54px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.filter-btn.active {
  background: var(--brown-deep);
  color: var(--gold-pale);
  border-color: var(--brown-deep);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.work-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 12px rgba(43, 32, 19, 0.1), 0 28px 48px -18px rgba(43, 32, 19, 0.45);
}

.work-card.is-hidden {
  display: none;
}

.work-card .w-cat {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1px solid rgba(113, 48, 39, 0.4);
  padding: 5px 12px;
  border-radius: 2px;
  background: rgba(113, 48, 39, 0.05);
}

.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.28;
  margin: 16px 0 10px;
}

.work-card .w-excerpt {
  color: var(--ink-soft);
  font-size: 0.97rem;
  flex: 1;
  font-style: italic;
  font-family: var(--font-cormorant);
  font-size: 1.08rem;
}

.work-card .w-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-card .w-meta .author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-pale);
  flex: none;
}

.avatar.a-oxblood { background: var(--oxblood); }
.avatar.a-forest  { background: var(--forest); }
.avatar.a-navy    { background: var(--navy); }
.avatar.a-plum    { background: var(--plum); }
.avatar.a-brown   { background: var(--brown); }

.work-card .w-meta .date {
  font-size: 0.68rem;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- News page ---------- */
.news-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  overflow: hidden;
}

.news-featured .nf-media {
  position: relative;
  min-height: 340px;
  border-right: 1px solid var(--line);
}

.news-featured .nf-body {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin: 14px 0 14px;
}

.news-featured p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.35s, padding 0.35s;
}

.news-item:hover {
  background: rgba(250, 245, 230, 0.85);
  padding-left: 22px;
  padding-right: 22px;
}

.news-item .n-date {
  text-align: center;
  border-right: 1px solid var(--line-soft);
  padding-right: 24px;
}

.news-item .n-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
}

.news-item .n-date span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}

.news-item h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.news-item p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item .n-tag {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(176, 137, 60, 0.5);
  padding: 6px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.info-row {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}

.info-row:last-of-type {
  border-bottom: none;
}

.info-row .ico {
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brown);
  background: var(--paper-deep);
}

.info-row .ico svg {
  width: 19px;
  height: 19px;
}

.info-row strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-row p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Letter form */
.letter {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 46px 44px;
  position: relative;
}

.letter::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(176, 137, 60, 0.35);
  pointer-events: none;
}

.letter h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-align: center;
}

.letter .script {
  display: block;
  text-align: center;
  margin-top: 2px;
}

.letter form {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
  position: relative;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-faint);
}

.field input,
.field textarea,
.field select {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--gold);
}

.letter .btn {
  grid-column: 1 / -1;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-deep);
  color: #cbb98f;
  border-top: 1px solid rgba(211, 169, 79, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding: 74px 0 54px;
}

.footer-brand .brand-text strong {
  color: var(--gold-pale);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(203, 185, 143, 0.8);
  max-width: 34ch;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(211, 169, 79, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-pale);
  transition: all 0.35s var(--ease);
}

.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-deep);
  transform: translateY(-3px);
}

.socials svg {
  width: 17px;
  height: 17px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold-pale);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a,
.footer-col li {
  font-size: 0.94rem;
  color: rgba(203, 185, 143, 0.82);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--gold-bright);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(211, 169, 79, 0.2);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(203, 185, 143, 0.6);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.34s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cards-grid,
  .works-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shelf {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured .nf-media {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 84%);
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -30px 0 60px rgba(43, 32, 19, 0.25);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 110px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 1000;
  }
  .nav a {
    font-size: 1rem;
    padding: 12px 0;
  }
  body.menu-open .nav {
    transform: translateX(0);
  }
  body.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  body.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .cards-grid,
  .works-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .shelf {
    grid-template-columns: repeat(2, 1fr);
  }
  .ledger {
    grid-template-columns: 1fr;
  }
  .ledger-cell:nth-child(1),
  .ledger-cell:nth-child(3) {
    border-right: none;
  }
  .ledger-cell:not(:last-child) {
    border-bottom: 1px solid var(--line-soft);
  }
  .news-item {
    grid-template-columns: 74px 1fr;
  }
  .news-item .n-tag {
    display: none;
  }
  .news-item .n-date {
    padding-right: 14px;
  }
  .letter form {
    grid-template-columns: 1fr;
  }
  .topbar-inner span:last-child {
    display: none;
  }
  .section {
    padding: 72px 0;
  }
  .float-quote {
    max-width: 200px;
    top: -18px;
  }
}

/* ============================================================
   V2 — Downton Abbey components
   Crest, ivy, tickets, postcards, portraits, letters,
   newspaper clipping, invitation, victorian dividers
   ============================================================ */

.font-fell {
  font-family: "IM Fell English SC", serif;
}

/* ---------- Heraldic crest ---------- */
.crest {
  color: var(--gold);
  display: inline-block;
}
.crest svg {
  width: 100%;
  height: auto;
}

/* ---------- Ivy corners ---------- */
.ivy {
  position: absolute;
  width: 78px;
  height: 78px;
  color: var(--forest);
  opacity: 0.9;
  z-index: 6;
  pointer-events: none;
}
.ivy svg { width: 100%; height: 100%; }
.ivy.tl { top: -13px; left: -13px; }
.ivy.tr { top: -13px; right: -13px; transform: scaleX(-1); }
.ivy.bl { bottom: -13px; left: -13px; transform: scaleY(-1); }
.ivy.br { bottom: -13px; right: -13px; transform: scale(-1); }

/* ---------- Victorian divider ---------- */
.divider-vic .rule {
  width: 120px;
}
.divider-vic .sprig {
  width: 150px;
  height: 30px;
  color: var(--gold);
  fill: currentColor;
}

/* ---------- Plaque section head ---------- */
.plaque {
  text-align: center;
  margin-bottom: 58px;
}
.pl-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--gold);
}
.pl-orn .p-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.pl-orn .p-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.pl-orn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  transform: rotate(45deg);
}
.plaque h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.plaque h2 em {
  color: var(--gold);
}
.plaque p {
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 14px auto 0;
}

/* ---------- Admission tickets ---------- */
.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.ticket {
  position: relative;
  display: flex;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  transform: rotate(-1.2deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ticket:nth-child(2) { transform: rotate(0.9deg) translateY(8px); }
.ticket:nth-child(3) { transform: rotate(-0.6deg); }
.ticket:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 0 8px 14px rgba(43, 32, 19, 0.1), 0 30px 46px -18px rgba(43, 32, 19, 0.5);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.ticket::before { left: -11px; }
.ticket::after { right: -11px; }
.ticket-main {
  flex: 1;
  padding: 26px 24px 24px;
}
.t-label {
  display: block;
  text-align: center;
  font-family: "IM Fell English SC", serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.ticket-main h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.t-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.t-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.t-meta svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}
.ticket-stub {
  width: 88px;
  flex: none;
  border-left: 2px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 8px;
  text-align: center;
}
.ticket-stub svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.ticket-stub strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--oxblood);
}
.ticket-stub span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  line-height: 1.5;
}

/* ---------- Postcard wall ---------- */
.postcard-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.postcard {
  background: #f8f1dc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 13px;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.postcard:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 8px 14px rgba(43, 32, 19, 0.12), 0 30px 46px -18px rgba(43, 32, 19, 0.5);
  z-index: 2;
}
.postcard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.pc-photo {
  border: 1px solid var(--line);
  margin-right: 14px;
}
.pc-photo .photo-art {
  aspect-ratio: 4 / 3.4;
}
.pc-side {
  position: relative;
  border-left: 1px solid var(--line-soft);
  padding-left: 14px;
  min-height: 208px;
  display: flex;
  flex-direction: column;
}
.pc-stamp {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 64px;
  border: 2px dashed rgba(113, 48, 39, 0.5);
  background: rgba(113, 48, 39, 0.05);
  display: grid;
  place-items: center;
  transform: rotate(2deg);
}
.pc-stamp svg {
  width: 30px;
  height: 30px;
  color: var(--oxblood);
}
.pc-postmark {
  position: absolute;
  top: 18px;
  right: 26px;
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(113, 48, 39, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: rotate(-14deg);
  color: rgba(113, 48, 39, 0.7);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  pointer-events: none;
}
.pc-postmark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(113, 48, 39, 0.3);
  border-radius: 50%;
}
.pc-note {
  font-family: var(--font-script);
  color: var(--brown);
  font-size: 1.18rem;
  line-height: 1.25;
  margin-top: auto;
  padding-top: 56px;
  transform: rotate(-2deg);
}
.pc-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}

/* ---------- Oval gilt portraits ---------- */
.portrait-row {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.portrait {
  width: 196px;
  text-align: center;
  transition: transform 0.5s var(--ease);
}
.portrait:hover {
  transform: translateY(-8px);
}
.portrait-frame {
  padding: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #caa44f, #7c5c22 40%, #e2c886 62%, #93722f);
  box-shadow:
    0 16px 28px -12px rgba(43, 32, 19, 0.55),
    inset 0 0 0 1px rgba(255, 240, 200, 0.55);
}
.portrait-photo {
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--card);
  aspect-ratio: 1;
}
.portrait-photo .photo-art {
  width: 100%;
  height: 100%;
}
.portrait figcaption {
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.6;
}
.portrait figcaption em {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.24em;
}

/* ---------- Handwritten letters ---------- */
.letters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.letter-note {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 30px 28px 36px;
  background-image: repeating-linear-gradient(
    transparent 0 30px,
    rgba(90, 72, 42, 0.12) 30px 31px
  );
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.5s var(--ease);
}
.letter-note:hover {
  transform: rotate(0deg);
}
.letter-note::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 33.4%;
  height: 1px;
  background: rgba(90, 72, 42, 0.1);
  box-shadow: 0 calc(100vh * 0);
}
.letter-note .salut {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--brown);
  line-height: 1.2;
}
.letter-note p {
  font-family: var(--font-cormorant);
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.62;
}
.letter-note .sig {
  margin-top: 12px;
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.3rem;
  text-align: right;
}
.mini-seal {
  position: absolute;
  right: 20px;
  bottom: -17px;
  width: 46px;
  height: 46px;
  background: radial-gradient(circle at 34% 30%, #96453a, var(--oxblood) 58%, #571f18);
  border-radius: 47% 53% 50% 50% / 52% 48% 55% 45%;
  display: grid;
  place-items: center;
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 16px -6px rgba(87, 31, 24, 0.6);
  transform: rotate(8deg);
}

/* ---------- Newspaper clipping ---------- */
.clipping {
  max-width: 880px;
  margin: 0 auto;
  background: #f6efdb;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 32px 40px 48px;
  clip-path: polygon(
    0 0, 100% 0,
    100% calc(100% - 14px), 94% 100%, 88% calc(100% - 9px),
    82% 100%, 76% calc(100% - 12px), 70% calc(100% - 4px),
    62% 100%, 55% calc(100% - 10px), 48% 100%,
    41% calc(100% - 6px), 34% 100%, 27% calc(100% - 11px),
    20% calc(100% - 3px), 13% 100%, 7% calc(100% - 9px),
    0 calc(100% - 4px)
  );
}
.clip-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  gap: 12px;
}
.clip-masthead {
  text-align: center;
  font-family: "IM Fell English SC", serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 14px 0 4px;
}
.clip-sub {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 3px double var(--line);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.clip-cols {
  column-count: 2;
  column-gap: 36px;
  column-rule: 1px solid var(--line-soft);
  font-family: var(--font-cormorant);
  font-size: 1.07rem;
  color: var(--ink-soft);
}
.clip-cols p + p {
  margin-top: 12px;
}
.clip-foot {
  margin-top: 22px;
  text-align: center;
}

/* ---------- Invitation ---------- */
.invite {
  position: relative;
  text-align: center;
  padding: 80px 46px 64px;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(230, 211, 163, 0.5), transparent 70%),
    var(--card);
}
.invite-banner {
  display: inline-block;
  position: relative;
  background: linear-gradient(140deg, #83362b, var(--oxblood));
  color: var(--gold-pale);
  font-family: "IM Fell English SC", serif;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  padding: 11px 36px;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px -8px rgba(87, 31, 24, 0.65);
}
.invite-banner::before,
.invite-banner::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 34px;
  height: 100%;
  background: #571f18;
  z-index: -1;
}
.invite-banner::before {
  left: -24px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 32% 50%);
}
.invite-banner::after {
  right: -24px;
  clip-path: polygon(0 0, 100% 0, 68% 50%, 100% 100%, 0 100%);
}
.invite h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 12px 0 14px;
}
.invite h2 em {
  color: var(--gold);
  font-style: italic;
}
.invite p {
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 auto 32px;
}
.rsvp {
  margin-top: 16px;
  font-family: "IM Fell English SC", serif;
  letter-spacing: 0.42em;
  font-size: 0.68rem;
  color: var(--ink-faint);
}

/* ---------- Book polish ---------- */
.book h3 {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.book .b-band {
  display: block;
  width: 58%;
  height: 12px;
  margin-bottom: 12px;
  border-top: 1px solid rgba(230, 211, 163, 0.65);
  border-bottom: 1px solid rgba(230, 211, 163, 0.65);
}
.book .b-orn {
  display: block;
  width: 34px;
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, rgba(230, 211, 163, 0.8), transparent);
}

/* ---------- Footer ornament ---------- */
.footer-orn {
  display: flex;
  justify-content: center;
  padding-top: 48px;
  color: var(--gold);
  opacity: 0.75;
}
.footer-orn svg {
  width: 130px;
  height: 24px;
  fill: currentColor;
}

/* ---------- V2 responsive ---------- */
@media (max-width: 1020px) {
  .tickets,
  .postcard-wall,
  .letters {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }
  .clip-cols {
    column-count: 1;
  }
}
@media (max-width: 760px) {
  .ticket {
    flex-direction: column;
  }
  .ticket-stub {
    width: auto;
    border-left: none;
    border-top: 2px dashed var(--line);
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    padding: 12px;
  }
  .pc-side {
    min-height: 190px;
  }
  .invite {
    padding: 60px 24px 50px;
  }
  .clipping {
    padding: 26px 22px 42px;
  }
}
