/* ============================================
   BLACK FOREST MAINE COON CATTERY
   Editorial design system — warm ink, antique brass,
   deep plum. Fraunces display + Inter body.
   ============================================ */

:root {
  /* Surfaces — warm near-black, not pure */
  --ink:        #0b0908;
  --ink-2:      #14110f;
  --ink-3:      #1d1814;
  --ink-4:      #25201a;

  /* Type */
  --bone:       #ece4d4;
  --bone-2:     #b5ad9d;
  --bone-3:     #6b6558;

  /* Accent — antique brass, not bright gold */
  --brass:      #b58c4c;
  --brass-2:    #d3ae6b;
  --brass-deep: #8a6a39;

  /* Accent — aubergine plum */
  --plum:       #3a1740;
  --plum-2:     #6b2f72;
  --plum-deep:  #1f0a25;

  /* Hairlines */
  --rule:        rgba(181, 140, 76, 0.22);
  --rule-strong: rgba(181, 140, 76, 0.45);
  --edge:        rgba(236, 228, 212, 0.08);

  /* Typography */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max:   1440px;
  --max-r: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film-grain — gives every surface a touch of texture so it
   doesn't read as flat / template-y */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Background atmosphere */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% -10%, rgba(58, 23, 64, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at -10% 110%, rgba(181, 140, 76, 0.10) 0%, transparent 60%);
}

main, header, footer { position: relative; z-index: 2; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 350;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--bone);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}

h1 { font-size: clamp(3.5rem, 10vw, 8.5rem); }
h2 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.0; }
h3 { font-size: clamp(1.75rem, 3vw, 2.75rem); letter-spacing: -0.015em; line-height: 1.05; }

.display em, h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-2);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.kicker::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--brass);
}

.num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  color: var(--bone);
  letter-spacing: -0.005em;
  max-width: 38ch;
}

p {
  color: var(--bone-2);
  margin: 0 0 1.1em;
  font-weight: 400;
}
p:last-child { margin-bottom: 0; }

p.large {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--bone);
  max-width: 56ch;
}

a {
  color: var(--bone);
  text-decoration: none;
  transition: color 0.4s ease;
}

/* ============================================
   LAYOUT
   ============================================ */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-r {
  max-width: var(--max-r);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(5rem, 12vh, 10rem) 0; position: relative; }
section.tight { padding: clamp(3rem, 8vh, 6rem) 0; }

.bg-panel { background: var(--ink-2); }
.bg-deep  { background: var(--ink); }

/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.85) 0%, rgba(11, 9, 8, 0) 100%);
  transition: background 0.5s ease, padding 0.5s ease;
}
.site-header.solid {
  background: rgba(11, 9, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--edge);
}

.mark {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--bone);
  line-height: 1;
  justify-self: start;
}
.mark span {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-top: 0.35rem;
}

.nav-links {
  display: flex;
  gap: 2.75rem;
  list-style: none;
  justify-self: center;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-2);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav-cta {
  justify-self: end;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  transition: all 0.4s ease;
}
.nav-cta:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
  justify-self: end;
}
.nav-toggle svg { width: 100%; height: 100%; }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: 9rem var(--gutter) clamp(3rem, 8vh, 6rem);
  position: relative;
}

.hero-text { padding-bottom: clamp(1rem, 3vh, 3rem); }

.hero-text .kicker { margin-bottom: 2rem; }

.hero-title {
  font-size: clamp(3.5rem, 11vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--brass-2);
  padding-left: clamp(1.5rem, 4vw, 4rem);
}

.hero-meta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.75rem;
  max-width: 480px;
}
.hero-meta p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--bone);
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.hero-figure {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--plum-deep) 0%, var(--ink-3) 60%, var(--ink-2) 100%);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-figure .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--brass);
}
.hero-figure .ph .num { font-size: 0.75rem; }
.hero-figure .ph span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  opacity: 0.6;
}

/* Sub-hero used on inner pages */
.subhero {
  padding: 11rem var(--gutter) clamp(4rem, 8vh, 7rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  border-bottom: 1px solid var(--edge);
}
.subhero h1 { max-width: 14ch; }
.subhero h1 em { display: block; }
.subhero .meta {
  text-align: right;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-3);
  line-height: 1.8;
}
.subhero .meta strong {
  color: var(--brass);
  font-weight: 500;
  display: block;
}

/* ============================================
   SECTION HEADERS (numbered, editorial)
   ============================================ */

.sec-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vh, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.sec-head .sec-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sec-head .num { font-size: 0.85rem; }
.sec-head .kicker { font-size: 0.7rem; }
.sec-head h2 { margin: 0; max-width: 14ch; }

/* ============================================
   STORY / EDITORIAL BLOCKS
   ============================================ */

.editorial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.editorial .col-meta {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.editorial .col-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 54ch;
}
.editorial .col-body p.lede {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  max-width: 32ch;
  margin-bottom: 1.75rem;
}
.editorial .col-body .dropcap::first-letter {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.9;
  float: left;
  padding: 0.35rem 0.75rem 0 0;
  color: var(--brass-2);
}

/* Split: image left, copy right (or alternate via .reverse) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split .figure {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--plum-deep), var(--ink-3));
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.split .figure img { width: 100%; height: 100%; object-fit: cover; }
.split .figure .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; color: var(--brass);
  opacity: 0.5;
}
.split .copy h2 { margin-bottom: 1.5rem; }
.split .copy p { max-width: 48ch; }

/* ============================================
   CARDS — kittens / cats
   ============================================ */

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem) clamp(1.25rem, 2.5vw, 2.5rem);
}

.kitten-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: transparent;
}

.kitten-card .figure {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--plum-deep), var(--ink-3));
  overflow: hidden;
  position: relative;
  border: 1px solid var(--edge);
  transition: border-color 0.5s ease;
}
.kitten-card:hover .figure { border-color: var(--rule-strong); }
.kitten-card .figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.kitten-card:hover .figure img { transform: scale(1.04); }
.kitten-card .figure .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; color: var(--brass);
  opacity: 0.5; font-size: 1rem;
}

.kitten-card .figure .status {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  background: rgba(11, 9, 8, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rule);
  color: var(--bone);
  font-weight: 500;
}
.kitten-card .figure .status.available { color: var(--brass-2); border-color: var(--brass); }
.kitten-card .figure .status.reserved  { color: var(--bone-2); }
.kitten-card .figure .status.sold      { color: var(--bone-3); }

.kitten-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0 0.4rem;
}
.kitten-card .meta-row .num { font-size: 0.75rem; }
.kitten-card .meta-row .price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bone-3);
  font-size: 0.95rem;
}

.kitten-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.kitten-card .attr {
  font-size: 0.85rem;
  color: var(--bone-3);
  letter-spacing: 0.05em;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.kitten-card .attr span:not(:last-child)::after {
  content: '·';
  margin-left: 0.6rem;
  color: var(--brass);
}

.kitten-card p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bone-2);
  max-width: 38ch;
}

/* ============================================
   FEATURE / STANDARDS LIST (numbered horizontal)
   ============================================ */

.standards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.standards .item {
  padding: 2.5rem 0;
  padding-right: clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.standards .item:nth-child(odd) { padding-right: clamp(1.5rem, 4vw, 4rem); border-right: 1px solid var(--rule); }
.standards .item:nth-child(even) { padding-left: clamp(1.5rem, 4vw, 4rem); }
.standards .item .num { font-size: 1.1rem; padding-top: 0.4rem; }
.standards .item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.standards .item p {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 42ch;
}

/* ============================================
   CAT PROFILES — alternating big rows
   ============================================ */

.cat-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 6vh, 5rem) 0;
  border-bottom: 1px solid var(--rule);
}
.cat-row:last-child { border-bottom: none; }
.cat-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.cat-row.reverse .figure { order: 2; }
.cat-row.reverse .copy { order: 1; padding-right: clamp(1rem, 4vw, 4rem); }

.cat-row .figure {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--plum-deep), var(--ink-3));
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.cat-row .figure img { width: 100%; height: 100%; object-fit: cover; }
.cat-row .figure .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; color: var(--brass);
  opacity: 0.5;
}
.cat-row .copy .num { font-size: 0.85rem; display: block; margin-bottom: 0.85rem; }
.cat-row .copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  margin-bottom: 0.5rem;
}
.cat-row .copy .role {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-2);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.cat-row .copy p { max-width: 50ch; margin-bottom: 1.5rem; }

.cat-attrs {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1rem 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  max-width: 460px;
}
.cat-attrs dt {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-3);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.cat-attrs dd {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--bone);
  font-style: italic;
  font-weight: 300;
}

.cat-extra {
  margin: clamp(1.5rem, 4vh, 3rem) 0 clamp(2rem, 5vh, 4rem);
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--plum-deep), var(--ink-3));
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.cat-extra img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brass-2);
  text-align: center;
  padding: clamp(2rem, 5vh, 4rem) 0 clamp(2rem, 5vh, 4rem);
  letter-spacing: -0.01em;
  position: relative;
}
.section-title::before, .section-title::after {
  content: '';
  display: inline-block;
  width: 3rem; height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin: 0 1.5rem;
}

/* ============================================
   FULL-BLEED CTA PANEL
   ============================================ */

.bleed-cta {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--ink) 40%, var(--ink-3) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.bleed-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(58, 23, 64, 0.6) 0%, transparent 70%);
}
.bleed-cta > * { position: relative; z-index: 1; }
.bleed-cta h2 {
  font-size: clamp(3rem, 8vw, 7rem);
  max-width: 14ch;
  margin: 1.5rem auto 2.5rem;
}
.bleed-cta p {
  max-width: 44ch;
  margin: 0 auto 2.5rem;
  color: var(--bone);
  font-size: 1.1rem;
}

/* ============================================
   BUTTONS — restrained; the type does the work
   ============================================ */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--brass);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.link-arrow .arr {
  display: inline-block;
  width: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.link-arrow:hover .arr { transform: translateX(0.4rem); }
.link-arrow:hover { color: var(--brass-2); border-color: var(--brass-2); }

.link-arrow.alt {
  color: var(--bone);
  border-color: var(--bone);
}
.link-arrow.alt:hover { color: var(--brass-2); border-color: var(--brass-2); }

.link-group {
  display: inline-flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* ============================================
   QUOTE / EPIGRAPH
   ============================================ */

.epigraph {
  text-align: center;
  max-width: 30ch;
  margin: 0 auto;
}
.epigraph blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.epigraph cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.contact-grid .item {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--rule);
  text-align: left;
}
.contact-grid .item:last-child { border-right: none; }
.contact-grid .item .num { display: block; margin-bottom: 1rem; }
.contact-grid .item .label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.contact-grid .item .value {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--bone);
  letter-spacing: -0.005em;
  line-height: 1.3;
  word-break: break-word;
}
.contact-grid .item a.value { color: var(--bone); }
.contact-grid .item a.value:hover { color: var(--brass-2); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
  padding: clamp(4rem, 8vh, 7rem) var(--gutter) clamp(2rem, 4vh, 3rem);
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
  border-bottom: 1px solid var(--rule);
}

.footer-wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.footer-wordmark em {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--bone-2);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--brass-2); }

.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-3);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 8rem;
    gap: 3rem;
  }
  .hero-figure { max-height: 70vh; }
  .editorial { grid-template-columns: 1fr; }
  .editorial .col-meta { position: static; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .cat-row, .cat-row.reverse {
    grid-template-columns: 1fr;
  }
  .cat-row.reverse .figure { order: 0; }
  .cat-row.reverse .copy { order: 0; padding: 0; }
  .standards { grid-template-columns: 1fr; }
  .standards .item:nth-child(odd) { border-right: none; padding-right: 0; }
  .standards .item:nth-child(even) { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .item { border-right: none; border-bottom: 1px solid var(--rule); }
  .contact-grid .item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .subhero { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 9rem; }
  .subhero .meta { text-align: left; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 6rem 2rem 3rem;
    gap: 2rem;
    height: 100vh;
    z-index: 49;
  }
  .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.1em; }
  .editorial-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-title .line-2 { padding-left: 1rem; }
}
