:root {
  --paper: #F7F7F2;
  --paper-warm: #efeee7;
  --ink: #1f1a15;
  --walnut: #3a2a1c;
  --saddle: #8a5a3b;
  --rust: #a4472f;
  --moss: #5a6b3e;
  --cream: #fcfcf7;
  --muted: #7a6a58;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(120, 100, 70, 0.03), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(90, 107, 62, 0.03), transparent 50%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

body.modal-open { overflow: hidden; }

.display { font-family: 'Fraunces', serif; }
.script  { font-family: 'Caveat', cursive; }

/* TOP BAR */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 40px;
  background: rgba(247, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 26, 21, 0.12);
}
.brand-mark {
  display: flex; align-items: center;
  text-decoration: none; color: var(--walnut);
}
.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 20px; letter-spacing: 0.02em;
}
.brand-text span { font-style: italic; color: var(--saddle); }
.brand-logo { height: 56px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a {
  text-decoration: none; color: var(--ink);
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  position: relative; padding-bottom: 2px; transition: color 0.2s;
}
nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--saddle); transition: right 0.25s ease;
}
nav a:hover { color: var(--saddle); }
nav a:hover::after { right: 0; }
nav a.active { color: var(--saddle); }
nav a.active::after { right: 0; }

/* HERO (homepage) */
.hero { position: relative; padding: 90px 40px 80px; max-width: 1400px; margin: 0 auto; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: end; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--saddle); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--saddle); }
h1.hero-title {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.96; letter-spacing: -0.02em; color: var(--walnut);
}
h1.hero-title em { font-style: italic; font-weight: 400; color: var(--rust); }
.hero-sub { margin-top: 32px; font-size: 17px; line-height: 1.65; max-width: 460px; color: var(--ink); }
.hero-meta {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 24px; border-top: 1px solid rgba(31, 26, 21, 0.15);
  max-width: 460px;
}
.hero-meta div { flex: 1; }
.hero-meta .num { font-family: 'Fraunces', serif; font-size: 28px; color: var(--walnut); display: block; line-height: 1; }
.hero-meta .lab { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }

/* HERO VISUAL — wood panels */
.hero-visual { position: relative; aspect-ratio: 4 / 5; max-width: 480px; justify-self: end; width: 100%; }
.wood-panels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; height: 100%; width: 100%; }
.wood-panel {
  position: relative; overflow: hidden;
  background: var(--cream); border: 1px solid rgba(31, 26, 21, 0.1);
  box-shadow: 0 20px 40px -20px rgba(31, 26, 21, 0.3);
}
.wood-panel:nth-child(1) { transform: translateY(0); }
.wood-panel:nth-child(2) { transform: translateY(-15px); }
.wood-panel:nth-child(3) { transform: translateY(8px); }
.wood-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wood-panel .panel-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 16px; color: var(--muted);
}
.wood-panel .panel-placeholder svg { width: 32px; height: 32px; opacity: 0.4; margin-bottom: 10px; }
.wood-panel .panel-placeholder p { font-family: 'Fraunces', serif; font-style: italic; font-size: 12px; line-height: 1.3; }
.wood-panel .panel-label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(252, 252, 247, 0.92); padding: 6px 8px;
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--walnut); text-align: center; backdrop-filter: blur(4px);
}
.wood-stamp {
  position: absolute; bottom: -15px; right: -15px;
  width: 130px; height: 130px;
  border: 1.5px solid var(--walnut); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--cream); transform: rotate(8deg); padding: 14px;
  box-shadow: 0 10px 24px -5px rgba(31, 26, 21, 0.3); z-index: 3;
}
.wood-stamp span { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; line-height: 1.15; color: var(--walnut); }

section { position: relative; z-index: 2; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 40px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.015em; line-height: 1; color: var(--walnut);
}
.section-head h2 em { font-style: italic; color: var(--saddle); }
.section-head p { max-width: 480px; color: var(--muted); font-size: 15px; }
.section-head a.policy-link, .policy-link {
  color: var(--saddle); text-decoration: underline; text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.policy-link:hover { color: var(--rust); }

/* PAGE HERO (available page) */
.page-hero {
  padding: 60px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-title {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.02em; color: var(--walnut);
  margin-bottom: 24px;
}
.page-title em { font-style: italic; color: var(--rust); }
.page-sub { font-size: 16px; line-height: 1.65; max-width: 640px; color: var(--ink); }

/* FILTER BAR */
.filter-bar {
  padding: 20px 0 30px;
  position: sticky; top: 70px; z-index: 50;
  background: rgba(247, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 26, 21, 0.08);
  margin-bottom: 50px;
}
.filter-bar .container {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 24px 36px;
}
.filter-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.filter-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  padding: 7px 14px;
  border: 1px solid rgba(31, 26, 21, 0.2);
  background: transparent; color: var(--walnut);
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.04em; cursor: pointer;
  transition: all 0.2s;
  border-radius: 999px;
}
.pill:hover { border-color: var(--walnut); }
.pill.active {
  background: var(--walnut); color: var(--cream); border-color: var(--walnut);
}
.filter-count {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.05em; margin-left: auto;
}

/* STORY */
.story { padding: 100px 0 90px;
  background: linear-gradient(180deg, transparent 0%, rgba(120, 100, 70, 0.03) 50%, transparent 100%);
}
.story-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.story-card {
  background: var(--cream); border: 1px solid rgba(31, 26, 21, 0.1);
  padding: 36px; position: relative;
  box-shadow: 0 2px 0 var(--walnut);
}
.story-card::before {
  content: ''; position: absolute; top: -10px; left: 30px;
  width: 60px; height: 18px; background: var(--saddle);
  transform: rotate(-3deg); opacity: 0.85;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.story-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saddle); margin-bottom: 16px; }
.story-card h3 {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: 32px;
  line-height: 1.15; margin-bottom: 20px; color: var(--walnut);
}
.story-card p { color: var(--ink); margin-bottom: 14px; font-size: 15px; }
.story-card .note {
  font-family: 'Caveat', cursive; font-size: 22px; color: var(--saddle);
  margin-top: 20px; line-height: 1.2; transform: rotate(-1deg); display: inline-block;
}
.story-copy h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(38px, 4.5vw, 64px);
  letter-spacing: -0.02em; line-height: 1.02; color: var(--walnut); margin-bottom: 28px;
}
.story-copy h2 em { font-style: italic; color: var(--rust); }
.story-copy p { font-size: 16px; line-height: 1.75; margin-bottom: 20px; color: var(--ink); }

.three-hats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.hat { padding: 24px 20px; border-top: 2px solid var(--walnut); }
.hat-icon { width: 32px; height: 32px; margin-bottom: 16px; color: var(--saddle); }
.hat h4 {
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 500;
  margin-bottom: 10px; color: var(--walnut); line-height: 1.1;
}
.hat .hat-tags {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust); font-weight: 500;
}

/* MISSION */
.mission {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--walnut) 0%, #2e2015 100%);
  color: var(--cream); position: relative; overflow: hidden;
}
.mission::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg,
    rgba(250,245,236,0.025) 0, rgba(250,245,236,0.025) 1px,
    transparent 1px, transparent 5px);
  pointer-events: none;
}
.mission-inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.mission-eyebrow { font-family: 'Caveat', cursive; font-size: 24px; color: #d4a574; margin-bottom: 20px; display: block; }
.mission-inner h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 36px;
}
.mission-inner h2 em { font-style: italic; color: #d4a574; }
.mission-inner p { font-size: 17px; line-height: 1.8; color: rgba(250,245,236,0.85); max-width: 680px; margin: 0 auto 20px; }
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; text-align: left; }
.pillar { padding-top: 24px; border-top: 1px solid rgba(250, 245, 236, 0.25); }
.pillar h4 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400; font-style: italic; color: #d4a574; margin-bottom: 12px; }
.pillar p { font-size: 14px; line-height: 1.65; color: rgba(250, 245, 236, 0.75); margin: 0; }

/* AVAILABLE GRID (shared) */
.available { padding: 90px 0; }
.available-page { padding: 0 0 100px; }
.piece-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
.piece { position: relative; text-decoration: none; color: inherit; display: block; }
.piece-img {
  aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; position: relative;
  box-shadow: 0 10px 30px -15px rgba(31, 26, 21, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: var(--cream);
}
.piece-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.piece-img svg { width: 100%; height: 100%; display: block; }
.piece:hover .piece-img {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(31, 26, 21, 0.45);
}
.piece-overlay {
  position: absolute; inset: 0;
  background: rgba(31, 26, 21, 0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.piece-overlay span {
  color: var(--cream); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.piece-overlay svg { width: 16px; height: 16px; }
.piece:hover .piece-overlay { opacity: 1; }
.piece.no-link { cursor: default; }
.piece.no-link .piece-overlay { display: none; }
.piece-info { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; gap: 16px; }
.piece-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; color: var(--walnut); margin-bottom: 4px; }
.piece-meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.piece-price { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; color: var(--rust); white-space: nowrap; }
.piece-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--cream); color: var(--walnut);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid var(--walnut); z-index: 2;
}
.piece-tag.sold { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }
.piece-tag.drop { background: var(--rust); color: var(--cream); border-color: var(--rust); }
.piece.is-sold .piece-img { opacity: 0.72; }
.piece.is-sold .piece-price { color: var(--muted); text-decoration: line-through; }

/* See all wrapper */
.see-all-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* Empty state */
.empty-state {
  padding: 80px 20px; text-align: center;
}
.empty-state p {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 20px; color: var(--muted);
}

/* PROCESS */
.process { padding: 100px 0; background: var(--walnut); color: var(--cream); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg,
    rgba(250,245,236,0.03) 0, rgba(250,245,236,0.03) 1px,
    transparent 1px, transparent 4px);
  pointer-events: none;
}
.process h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(40px, 5vw, 68px); letter-spacing: -0.02em;
  margin-bottom: 60px; max-width: 800px; line-height: 1.02;
}
.process h2 em { font-style: italic; color: #d4a574; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step { position: relative; padding-top: 28px; border-top: 1px solid rgba(250,245,236,0.3); }
.step-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: #d4a574; margin-bottom: 16px; display: block; }
.step h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 22px; margin-bottom: 12px; color: var(--cream); }
.step p { font-size: 13px; line-height: 1.6; color: rgba(250,245,236,0.75); }

/* HORSES */
.horses { padding: 100px 0; }
.horses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.horses-visual {
  aspect-ratio: 1; position: relative;
  background: var(--cream); border: 1px solid rgba(31, 26, 21, 0.15);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.horses-visual::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid rgba(31, 26, 21, 0.15);
  transform: translate(12px, 12px); z-index: -1;
}
.horses-copy h2 em { color: var(--moss); }
.horses-copy p { font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.horse-quote {
  margin-top: 32px; padding-left: 24px; border-left: 2px solid var(--moss);
  font-family: 'Fraunces', serif; font-style: italic; font-size: 20px;
  line-height: 1.4; color: var(--walnut);
}

/* HERITAGE */
.heritage {
  padding: 110px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(120, 100, 70, 0.04) 50%, transparent 100%);
  position: relative;
}
.heritage-intro { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.heritage-intro h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; letter-spacing: -0.02em; color: var(--walnut); margin-bottom: 24px;
}
.heritage-intro h2 em { font-style: italic; color: var(--rust); }
.heritage-intro p { font-size: 16px; line-height: 1.7; color: var(--ink); max-width: 600px; margin: 0 auto; }

.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 20px; bottom: 20px;
  width: 1px;
  background: repeating-linear-gradient(to bottom,
    var(--saddle) 0, var(--saddle) 4px,
    transparent 4px, transparent 10px);
}
.gen { display: grid; grid-template-columns: 1fr 60px 1fr; margin-bottom: 50px; align-items: start; }
.gen:last-child { margin-bottom: 0; }
.gen-dot { grid-column: 2; display: flex; justify-content: center; padding-top: 10px; }
.gen-dot-inner {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--saddle);
  position: relative; z-index: 2;
}
.gen-dot-inner.filled { background: var(--rust); border-color: var(--rust); }
.gen-card {
  background: var(--cream); border: 1px solid rgba(31, 26, 21, 0.12);
  padding: 28px 32px; position: relative;
  box-shadow: 0 1px 0 rgba(31, 26, 21, 0.15);
}
.gen:nth-child(odd) .gen-card { grid-column: 1; text-align: right; }
.gen:nth-child(even) .gen-card { grid-column: 3; }
.gen-year { font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--saddle); margin-bottom: 6px; letter-spacing: 0.05em; }
.gen-name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; color: var(--walnut); margin-bottom: 4px; line-height: 1.2; }
.gen-role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.gen-detail { font-size: 14px; line-height: 1.6; color: var(--ink); }
.gen-detail em { color: var(--rust); font-style: italic; }

/* CTA */
.cta {
  padding: 120px 0; text-align: center;
  background: radial-gradient(ellipse at center, rgba(164, 71, 47, 0.05), transparent 70%);
}
.cta h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98; letter-spacing: -0.02em; color: var(--walnut); margin-bottom: 28px;
}
.cta h2 em { font-style: italic; color: var(--rust); }
.cta p { max-width: 560px; margin: 0 auto 40px; color: var(--ink); font-size: 17px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--walnut);
  transition: all 0.25s; cursor: pointer;
  background: transparent; color: var(--walnut);
  font-family: 'Inter', sans-serif;
}
.btn:hover { background: var(--walnut); color: var(--cream); }
.btn.primary { background: var(--walnut); color: var(--cream); }
.btn.primary:hover { background: var(--rust); border-color: var(--rust); }

/* POLICY MODAL */
.policy-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.policy-modal[aria-hidden="false"] { display: flex; }
.policy-backdrop {
  position: absolute; inset: 0;
  background: rgba(31, 26, 21, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.policy-panel {
  position: relative;
  background: var(--paper);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(31, 26, 21, 0.15);
  box-shadow: 0 30px 80px -20px rgba(31, 26, 21, 0.5);
  animation: panelEnter 0.3s ease-out;
}
@keyframes panelEnter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.policy-close {
  position: absolute; top: 16px; right: 20px;
  width: 32px; height: 32px;
  background: transparent; border: none;
  font-size: 28px; color: var(--walnut); cursor: pointer;
  line-height: 1; padding: 0;
  z-index: 2;
}
.policy-close:hover { color: var(--rust); }
.policy-content {
  padding: 56px 50px 50px;
}
.policy-content > h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--walnut); text-align: center;
  margin-bottom: 36px;
}
.policy-content > h2 em { font-style: italic; color: var(--rust); }
.policy-section { margin-bottom: 32px; }
.policy-section h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; color: var(--walnut);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(31, 26, 21, 0.15);
}
.policy-section p {
  font-size: 14px; line-height: 1.65; color: var(--ink);
  margin-bottom: 14px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-thanks {
  text-align: center;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 17px; color: var(--saddle);
  padding-top: 20px;
  border-top: 1px solid rgba(31, 26, 21, 0.1);
  margin-top: 30px;
}

/* FOOTER */
footer { padding: 60px 40px 40px; border-top: 1px solid rgba(31, 26, 21, 0.15); background: var(--paper-warm); }
.foot-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
.foot-brand { font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 10px; color: var(--walnut); }
.foot-brand em { font-style: italic; color: var(--saddle); }
.foot-tag { font-size: 13px; color: var(--muted); max-width: 280px; line-height: 1.55; }
.foot-col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saddle); margin-bottom: 16px; font-weight: 500; }
.foot-col a, .foot-col span {
  display: block; color: var(--ink); text-decoration: none;
  font-size: 14px; margin-bottom: 8px; transition: color 0.2s;
  cursor: pointer;
}
.foot-col a:hover { color: var(--rust); }
.foot-bottom {
  max-width: 1400px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(31, 26, 21, 0.1);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .topbar { padding: 14px 20px; }
  .brand-logo { height: 44px; }
  nav ul { gap: 18px; }
  nav a { font-size: 11px; letter-spacing: 0.08em; }
  .hero { padding: 50px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 360px; justify-self: start; }
  .container { padding: 0 20px; }
  .page-hero { padding: 40px 20px 30px; }
  .filter-bar { top: 60px; padding: 16px 0 24px; margin-bottom: 30px; }
  .filter-bar .container { gap: 16px 24px; }
  .filter-count { margin-left: 0; width: 100%; }
  .story { padding: 60px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .three-hats { grid-template-columns: 1fr; }
  .mission { padding: 70px 0; }
  .mission-pillars { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .piece-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .available { padding: 60px 0; }
  .available-page { padding: 0 0 60px; }
  .process { padding: 60px 0; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .horses { padding: 60px 0; }
  .horses-grid { grid-template-columns: 1fr; gap: 40px; }
  .heritage { padding: 70px 0; }
  .timeline::before { left: 20px; }
  .gen { grid-template-columns: 40px 1fr; gap: 16px; margin-bottom: 30px; }
  .gen-dot { grid-column: 1; padding-top: 14px; justify-content: flex-start; }
  .gen:nth-child(odd) .gen-card, .gen:nth-child(even) .gen-card { grid-column: 2; text-align: left; }
  .cta { padding: 80px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .policy-content { padding: 50px 28px 32px; }
}
@media (max-width: 520px) {
  .piece-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  nav ul { gap: 12px; }
  .wood-stamp { width: 100px; height: 100px; }
  .wood-stamp span { font-size: 12px; }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
