/* ==========================================================
   MAUNA GROUP — BASALT SYSTEM
   Palette:  basalt #17332F · paper #FAF9F5 · sage #E6E9E0
             brass #8F6E24 (light) / #D6AE5C (on dark)
   Type:     Big Shoulders — wordmark + hero H1 only
             Inter — everything else
             IBM Plex Mono — nav + small labels only
   ========================================================== */
:root {
  --ink: #17332F;
  --ink-hover: #1F423C;
  --paper: #FAF9F5;
  --paper-hover: #F1EFE8;
  --sage: #E6E9E0;
  --sage-hover: #DCE0D3;
  --steel: #4E5B57;
  --muted: #9AA39F;
  --line: rgba(23, 51, 47, 0.16);
  --line-dark: #3C574F;
  --brass: #8F6E24;
  --brass-light: #D6AE5C;

  --font-display: 'Big Shoulders', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --border: 3px solid var(--ink);
  --border-thick: 4px solid var(--ink);
  --max-width: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ridge: polygon(0 100%, 12% 54%, 27% 72%, 44% 26%, 57% 47%, 71% 12%, 84% 52%, 100% 32%, 100% 100%);
  --ridge-alt: polygon(0 100%, 18% 40%, 33% 66%, 52% 20%, 68% 52%, 82% 28%, 100% 58%, 100% 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brass); }
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 700; line-height: 1.18; margin: 0; letter-spacing: -0.3px; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brass-light); color: var(--ink); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding-left: clamp(20px, 4vw, 48px); padding-right: clamp(20px, 4vw, 48px); }

/* SCROLL PROGRESS */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--brass); z-index: 200; transition: width 90ms linear; }

/* NAV */
.site-nav { border-bottom: var(--border-thick); background: var(--paper); position: sticky; top: 0; z-index: 100; }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 88px; }
.brand-mark { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; letter-spacing: 0.6px; }
.brand-mark:hover { color: inherit; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 6px 0 5px;
}
.nav-links a:hover { color: inherit; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 13px 24px; border: 2px solid var(--ink);
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}
.nav-cta:hover { background: var(--brass); border-color: var(--brass); color: var(--paper); transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }
@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 88px 0 0 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; padding: 40px 24px; gap: 28px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 220ms var(--ease), opacity 220ms ease;
    border-top: var(--border-thick);
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.05rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* BUTTONS + LINKS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 600;
  padding: 15px 26px; border: 3px solid var(--ink);
  transition: background 200ms ease, color 200ms ease;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--ink-hover); color: var(--paper); }
.btn-brass { background: var(--brass-light); border-color: var(--brass-light); color: var(--ink); transition: background 200ms ease, transform 200ms var(--ease); }
.btn-brass:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); transform: translateY(-2px); }
.arrow { display: inline-block; transition: transform 240ms var(--ease); }
a:hover .arrow, .row-link:hover .arrow { transform: translateX(5px); }

.text-link {
  font-size: 1rem; font-weight: 600;
  border-bottom: 2px solid var(--brass);
  padding-bottom: 5px;
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}

/* HERO */
.hero { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); border-bottom: var(--border-thick); position: relative; overflow: hidden; }
/* soft altitude wash — light falling from the upper left */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(105% 80% at 2% -14%, rgba(230, 233, 224, 0.75) 0%, rgba(230, 233, 224, 0.28) 30%, rgba(250, 249, 245, 0) 62%),
    radial-gradient(60% 55% at 94% 112%, rgba(214, 174, 92, 0.08) 0%, rgba(214, 174, 92, 0) 70%);
}
.hero-l {
  position: relative; z-index: 1;
  padding: clamp(44px, 5.4vw, 80px) clamp(24px, 4vw, 64px) clamp(44px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  min-height: min(78vh, 760px);
}
/* the ridge carries under the copy — same silhouette as the plate, barely there */
.hero-l::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -6%; right: -14%; bottom: 0; height: 30%;
  background-image: repeating-linear-gradient(115deg, rgba(23, 51, 47, 0.055) 0 1px, transparent 1px 13px);
  background-color: rgba(23, 51, 47, 0.022);
  clip-path: polygon(0 100%, 12% 54%, 27% 72%, 44% 26%, 57% 47%, 71% 12%, 84% 52%, 100% 32%, 100% 100%);
}
@media (max-width: 940px) { .hero-l::after { display: none; } }
.hero-l h1 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.4px; line-height: 0.94;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  max-width: 17ch; margin: 0;
}
.hero-l h1 .line { display: block; overflow: hidden; }
.hero-l h1 .line span { display: block; animation: lineRise 900ms var(--ease) both; }
.hero-l h1 .line:nth-child(1) span { animation-delay: 140ms; }
.hero-l h1 .line:nth-child(2) span { animation-delay: 250ms; }
.mission-line {
  font-weight: 500; font-size: clamp(1rem, 1.15vw, 1.14rem); line-height: 1.55;
  margin-top: clamp(24px, 2.6vw, 34px); max-width: 52ch;
  color: var(--steel);
  animation: riseIn 620ms var(--ease) 340ms both;
}

/* HERO PLATE — interim ridge treatment until photography lands */
.plate { position: relative; z-index: 1; background: var(--ink); overflow: hidden; border-left: var(--border-thick); min-height: 340px; }
.plate .grid-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to bottom, rgba(250, 249, 245, 0.085) 0 1px, transparent 1px 22px);
  animation: drift 34s linear infinite;
}
.plate .ridge { position: absolute; inset: 0; animation: ridgeShift 26s ease-in-out infinite; }
.plate .ridge span { position: absolute; bottom: 0; display: block; }
.plate .ridge .far {
  left: -6%; right: -6%; height: 62%; background: var(--ink-hover);
  background-image: repeating-linear-gradient(115deg, rgba(214, 174, 92, 0.42) 0 1px, transparent 1px 9px);
  clip-path: polygon(0 100%, 14% 62%, 31% 74%, 46% 30%, 58% 48%, 72% 18%, 86% 55%, 100% 40%, 100% 100%);
}
.plate .ridge .near {
  left: -10%; right: -10%; height: 38%; background: var(--ink);
  background-image: repeating-linear-gradient(115deg, rgba(250, 249, 245, 0.22) 0 1px, transparent 1px 7px);
  clip-path: polygon(0 100%, 22% 44%, 40% 66%, 63% 24%, 80% 58%, 100% 34%, 100% 100%);
}
.plate .veil { position: absolute; left: 0; right: 0; bottom: 0; height: 45%; background: linear-gradient(to top, rgba(23, 51, 47, 0.55), rgba(23, 51, 47, 0)); }
/* Drop real photography in: <img class="plate-photo" src="..." alt=""> */
.plate-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenburns 16s ease-out forwards; }
@media (max-width: 940px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  .plate { border-left: none; border-top: var(--border-thick); min-height: clamp(280px, 48vw, 420px); }
}

/* SECTIONS */
section { padding: clamp(56px, 6.4vw, 88px) 0; border-bottom: var(--border-thick); }
.section-head:has(> .text-link) { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); max-width: 26ch; }
.section-head p { color: var(--steel); margin-top: 12px; font-size: 1.02rem; max-width: 60ch; }
.section-head + .pillars, .section-head + .placeholder-plate, .section-head + .btn, .section-head + .timeline, .section-head + .contact-form { margin-top: clamp(28px, 3vw, 40px); }

/* PAGE HEADER (interior pages) */
.page-header { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 56px); position: relative; overflow: hidden; }
.page-header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(95% 90% at 1% -20%, rgba(230, 233, 224, 0.8) 0%, rgba(230, 233, 224, 0.3) 30%, rgba(250, 249, 245, 0) 64%);
}
.page-header::after {
  content: ""; position: absolute; pointer-events: none;
  right: -4%; bottom: 0; width: 46%; height: 62%;
  background-color: rgba(23, 51, 47, 0.025);
  background-image: repeating-linear-gradient(115deg, rgba(23, 51, 47, 0.06) 0 1px, transparent 1px 12px);
  clip-path: var(--ridge-alt);
}
.page-header .wrap { position: relative; z-index: 1; }
@media (max-width: 700px) { .page-header::after { display: none; } }
.page-header h1 { font-size: clamp(2rem, 3.6vw, 3rem); max-width: 22ch; }
.page-header p { color: var(--steel); font-size: 1.05rem; max-width: 58ch; margin-top: 18px; }

/* VALUES BAND — staggered cards on the sage surface */
.values-band { background: var(--sage); border-bottom: var(--border-thick); padding: clamp(56px, 6.4vw, 88px) 0 clamp(72px, 8vw, 108px); }
.values-band .band-head h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.values-row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
  margin-top: clamp(32px, 3.4vw, 48px);
  align-items: start;
}
.value-item {
  background: var(--paper);
  border-top: 4px solid var(--ink);
  padding: 26px 24px 30px;
  position: relative;
  transition: transform 320ms var(--ease), background 260ms ease;
}
.value-item:nth-child(even) { margin-top: clamp(22px, 2.6vw, 38px); }
.value-item::before {
  content: ""; position: absolute; top: -4px; left: 0; height: 4px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 380ms var(--ease);
}
.value-item::after {
  content: ""; position: absolute; right: 22px; bottom: 22px;
  width: 8px; height: 8px; background: var(--brass); opacity: 0.28;
  transition: opacity 300ms ease;
}
.value-item:hover { transform: translateY(-5px); }
.value-item:hover::before { transform: scaleX(1); }
.value-item:hover::after { opacity: 1; }
.value-item h4 { font-size: 1.18rem; }
.value-item p { font-size: 0.9rem; line-height: 1.6; color: var(--steel); margin-top: 10px; padding-right: 18px; text-wrap: pretty; }
@media (max-width: 940px) {
  .values-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .values-row { grid-template-columns: minmax(0, 1fr); }
  .value-item:nth-child(even) { margin-top: 0; }
}

/* BRAND CARDS */
.cards { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr); border: var(--border); margin-top: clamp(28px, 3vw, 40px); }
.card { padding: clamp(28px, 3vw, 40px); position: relative; overflow: hidden; display: flex; flex-direction: column; transition: background 280ms ease; }
.card > * { position: relative; z-index: 1; }
.card.filled::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -8%; right: -8%; bottom: 0; height: 52%;
  background-color: rgba(250, 249, 245, 0.03);
  background-image: repeating-linear-gradient(115deg, rgba(214, 174, 92, 0.16) 0 1px, transparent 1px 10px);
  clip-path: var(--ridge);
  transform: translateY(12%);
  transition: transform 700ms var(--ease);
}
.card.filled:hover::before { transform: translateY(0); }
.card.outline::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 0; right: 0; top: 0; bottom: 0;
  background: radial-gradient(80% 70% at 108% 108%, rgba(214, 174, 92, 0.14) 0%, rgba(214, 174, 92, 0) 68%);
  opacity: 0; transition: opacity 400ms ease;
}
.card.outline:hover::before { opacity: 1; }
.card h3 { font-size: clamp(1.5rem, 2vw, 1.85rem); }
.card p { font-size: 0.92rem; line-height: 1.6; margin-top: 12px; max-width: 40ch; text-wrap: pretty; }
.card .card-link { margin-top: auto; padding-top: 30px; font-size: 0.95rem; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; }
.card h3 { transition: transform 320ms var(--ease); }
.card:hover h3 { transform: translateX(4px); }
.card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--brass-light); transform: scaleX(0); transform-origin: left;
  transition: transform 420ms var(--ease);
}
.card:hover::after { transform: scaleX(1); }
.card.filled { background: var(--ink); color: var(--paper); border-right: var(--border); }
.card.filled p { color: #C6D2CE; }
.card.filled .card-link { color: var(--brass-light); }
.card.filled .card-link:hover { color: var(--paper); }
.card.outline { transition: background 280ms ease; }
.card.outline:hover { background: var(--paper-hover); }
.card.outline p { color: var(--steel); }
.card.outline .card-link { color: var(--brass); }
.card.outline .card-link:hover { color: var(--ink); }
.card-note { font-size: 0.95rem; color: var(--steel); margin-top: 20px; }
@media (max-width: 860px) {
  .cards { grid-template-columns: minmax(0, 1fr); }
  .card.filled::before { transform: translateY(0); }
  .card.filled { border-right: none; border-bottom: var(--border); }
}

/* TEASER ROWS (homepage History / Career) */
.row-section { padding: 0; }
.row-link {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: clamp(20px, 3vw, 44px);
  max-width: var(--max-width); margin: 0 auto;
  padding: clamp(40px, 4.4vw, 60px) clamp(20px, 4vw, 48px);
  position: relative; overflow: hidden;
}
.row-link > * { position: relative; z-index: 1; }
.row-link::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, var(--sage) 0%, rgba(230, 233, 224, 0.35) 62%, rgba(250, 249, 245, 0) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 620ms var(--ease);
}
.row-link:hover::before { transform: scaleX(1); }
.row-link::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: 0; bottom: 0; width: 34%; height: 78%;
  background-image: repeating-linear-gradient(115deg, rgba(23, 51, 47, 0.055) 0 1px, transparent 1px 12px);
  clip-path: var(--ridge-alt);
  opacity: 0; transition: opacity 520ms ease;
}
.row-link:hover::after { opacity: 1; }
.row-link:hover { color: inherit; }
.row-link h2 { transition: transform 380ms var(--ease); }
.row-link:hover h2 { transform: translateX(6px); }
.row-link h2 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
.row-link p { color: var(--steel); font-size: 0.96rem; line-height: 1.6; margin-top: 10px; max-width: 62ch; text-wrap: pretty; }
@media (max-width: 780px) {
  .row-link { grid-template-columns: minmax(0, 1fr); align-items: flex-start; }
}

/* PILLARS (Culture) — intentionally asymmetric */
.pillars { display: flex; border: var(--border); margin-top: clamp(28px, 3vw, 40px); }
.pillar { flex: 1; padding: 30px 28px; border-right: var(--border); position: relative; overflow: hidden; transition: background 280ms ease; }
.pillar > * { position: relative; z-index: 1; }
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 420ms var(--ease); z-index: 2;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:not(.pillar-emphasis):hover { background: var(--paper-hover); }
.pillar:last-child { border-right: none; }
.pillar h3 { font-size: 1.3rem; }
.pillar p { color: var(--steel); margin-top: 10px; font-size: 0.92rem; line-height: 1.55; }
.pillar.pillar-emphasis { flex: 1.35; background: var(--ink); color: var(--paper); padding: 36px 32px; }
.pillar.pillar-emphasis::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -10%; right: -10%; bottom: 0; height: 46%;
  background-image: repeating-linear-gradient(115deg, rgba(214, 174, 92, 0.14) 0 1px, transparent 1px 10px);
  clip-path: var(--ridge);
}
.pillar.pillar-emphasis h3 { font-size: 1.5rem; }
.pillar.pillar-emphasis p { color: #C6D2CE; }
.pillar.pillar-narrow { flex: 0.85; }
@media (max-width: 860px) {
  .pillars { flex-direction: column; }
  .pillar { border-right: none; border-bottom: var(--border); }
  .pillar:last-child { border-bottom: none; }
}

/* TIMELINE (History) */
.timeline { border: var(--border); }
.tl-row { display: flex; border-top: var(--border); }
.tl-row:first-child { border-top: none; }
.tl-mark { flex: 0 0 220px; padding: 24px 28px; border-right: var(--border); font-family: var(--font-mono); font-size: 0.78rem; color: var(--brass); text-transform: uppercase; letter-spacing: 0.08em; }
.tl-row { transition: background 260ms ease; }
.tl-row:hover { background: var(--paper-hover); }
.tl-body { flex: 1; padding: 24px 28px; }
.tl-body h3 { font-size: 1.2rem; }
.tl-body p { color: var(--steel); margin-top: 8px; font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 700px) {
  .tl-row { flex-direction: column; }
  .tl-mark { flex: 0 0 auto; border-right: none; border-bottom: 1px solid var(--line); }
}

/* STATEMENT / QUOTE */
.statement-wrap { background: var(--ink); color: var(--paper); padding: clamp(56px, 8vw, 88px) 0; position: relative; overflow: hidden; }
.statement-wrap .wrap { position: relative; z-index: 1; }
.statement-wrap::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -6%; right: -6%; bottom: 0; height: 58%;
  background-image: repeating-linear-gradient(115deg, rgba(214, 174, 92, 0.14) 0 1px, transparent 1px 11px);
  clip-path: var(--ridge-alt);
}
.statement { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 700; max-width: 40ch; line-height: 1.25; }
.statement cite { display: block; font-style: normal; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-top: 24px; text-transform: uppercase; letter-spacing: 0.08em; }

/* PROSE */
.prose { max-width: 680px; }
.prose h2 { font-size: 1.4rem; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 14px; color: var(--steel); font-size: 1rem; line-height: 1.7; }

/* NOTE */
.note { border-left: 3px solid var(--brass); background: var(--sage); padding: 18px 24px; font-size: 0.92rem; color: var(--steel); max-width: 620px; }

/* FORM */
.contact-form { max-width: 580px; }
.field { margin-bottom: 24px; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel); margin-bottom: 10px; }
.field input, .field textarea {
  width: 100%; border: var(--border); background: transparent; padding: 14px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 140px; }

/* FOOTER */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(48px, 5.4vw, 72px) 0 26px; position: relative; overflow: hidden; }
.site-footer .wrap { position: relative; z-index: 1; }
.site-footer::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -8%; right: -8%; bottom: 0; height: 44%;
  background-image: repeating-linear-gradient(115deg, rgba(250, 249, 245, 0.075) 0 1px, transparent 1px 13px);
  clip-path: var(--ridge);
}
.footer-top { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(24px, 3vw, 48px); padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { color: var(--muted); margin-top: 16px; font-size: 0.9rem; line-height: 1.6; max-width: 36ch; text-wrap: pretty; }
.footer-col h4 { font-size: 0.95rem; color: var(--paper); }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #D3DBD8; font-size: 0.9rem; }
.footer-col a:hover { color: var(--paper); }
.footer-col p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-top: 16px; }
.footer-col .btn-brass { margin-top: 18px; padding: 14px 22px; border: none; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; font-family: var(--font-mono); font-size: 0.72rem; color: #86918D; flex-wrap: wrap; gap: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 1000px) { .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .footer-top { grid-template-columns: minmax(0, 1fr); } }

/* MOTION */
@keyframes drift { from { background-position: 0 0; } to { background-position: 0 -220px; } }
@keyframes ridgeShift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(-10px, 4px, 0); } }
@keyframes kenburns { from { transform: scale(1.08) translate(1%, 1%); } to { transform: scale(1) translate(0, 0); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes lineRise { from { transform: translateY(105%); } to { transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* PLACEHOLDER PANEL (History timeline / Open roles, until real content lands) */
.placeholder-plate { border: 1px solid var(--line); background: var(--sage); padding: clamp(44px, 6vw, 72px) 40px; text-align: center; margin-top: clamp(28px, 3vw, 40px); position: relative; overflow: hidden; }
.placeholder-plate > * { position: relative; z-index: 1; }
.placeholder-plate::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -4%; right: -4%; bottom: 0; height: 54%;
  background-image: repeating-linear-gradient(115deg, rgba(23, 51, 47, 0.07) 0 1px, transparent 1px 12px);
  clip-path: var(--ridge);
}
.placeholder-plate .ptitle { font-weight: 700; font-size: 1.3rem; }
.placeholder-plate .psub { font-family: var(--font-mono); font-size: 0.74rem; color: var(--brass); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 10px; }
.placeholder-plate .pnote { color: var(--steel); font-size: 0.95rem; max-width: 52ch; margin: 18px auto 0; line-height: 1.65; }

/* Standalone ridge plate on interior pages */
.plate-standalone { border: var(--border); aspect-ratio: 16 / 7; width: 100%; min-height: 0; margin-top: clamp(28px, 3vw, 40px); }
@media (max-width: 940px) { .plate-standalone { border-left: var(--border); border-top: var(--border); min-height: 0; } }
@media (max-width: 600px) { .plate-standalone { aspect-ratio: 4 / 3; } }
