:root {
  --lead: #151918;
  --lead-soft: #232928;
  --ivory: #f3eddf;
  --paper: #e9dfcc;
  --ruby: #7c1e2d;
  --ultramarine: #154f85;
  --amber: #d9952d;
  --verdigris: #315f56;
  --line: rgba(21, 25, 24, 0.24);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--lead);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: white;
  color: black;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 20px clamp(24px, 5vw, 84px);
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
}

.wordmark span {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.wordmark small,
.location {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions { display: flex; align-items: center; gap: 28px; }

.phone {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 920px;
  height: 100svh;
  color: white;
  background: var(--lead);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.93) 0%, rgba(8, 12, 11, 0.72) 40%, rgba(8, 12, 11, 0.08) 76%),
    linear-gradient(0deg, rgba(8, 12, 11, 0.6), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 58vw);
  min-height: 100%;
  padding: 150px clamp(24px, 6vw, 110px) 90px;
}

.heritage-mark,
.record-label {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.heritage-mark { color: #f5bf66; }

h1, h2, p { text-wrap: pretty; }

h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.4vw, 112px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 620px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 22px;
  border: 1px solid currentColor;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold { color: var(--lead); background: #f0b85c; border-color: #f0b85c; }
.button-ivory { color: var(--lead); background: var(--ivory); border-color: var(--ivory); }

.text-link {
  font-size: 17px;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 72px);
  bottom: 34px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lineage { padding: clamp(74px, 9vw, 150px) clamp(24px, 6vw, 110px); }

.lineage-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.lineage-intro h2,
.preservation h2,
.atelier h2,
.path h2,
.process h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lineage-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 58px 0 64px;
  list-style: none;
}

.lineage-track::before {
  content: "";
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ruby) 0 34%, var(--amber) 34% 67%, var(--ultramarine) 67%);
}

.lineage-track li { position: relative; padding: 56px clamp(22px, 4vw, 66px) 0 0; }

.lineage-track li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 5px solid var(--ivory);
  border-radius: 50%;
  background: var(--lead);
  box-shadow: 0 0 0 1px var(--lead);
}

.lineage-track strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lineage-track span { display: block; max-width: 320px; font-size: 17px; }

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--lead);
  color: var(--ivory);
}

.proof-band div { padding: 34px 36px; border-right: 1px solid rgba(255,255,255,.2); }
.proof-band div:last-child { border-right: 0; }
.proof-band strong { display: block; color: #f2b85b; font-family: var(--serif); font-size: 44px; line-height: 1; }
.proof-band span { display: block; margin-top: 8px; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }

.preservation {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, .9fr);
  color: var(--ivory);
  background: var(--ruby);
}

.preservation-copy { padding: clamp(74px, 9vw, 150px) clamp(24px, 7vw, 130px); }
.record-label.light { color: #f5c982; }
.lead-copy { max-width: 720px; margin: 34px 0 36px; font-size: 19px; line-height: 1.7; }

.project-register { padding: clamp(74px, 9vw, 150px) clamp(24px, 5vw, 80px); background: #641724; }
.register-title { margin: 0 0 30px; font-family: var(--serif); font-size: 26px; }
.project-register ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.35); }
.project-register li { display: grid; grid-template-columns: 42px 1fr; gap: 2px 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.project-register li span { grid-row: span 2; color: #f5c982; font-family: var(--serif); font-size: 18px; font-style: italic; }
.project-register li strong { font-family: var(--serif); font-size: clamp(21px, 2vw, 30px); font-weight: 400; }
.project-register li em { font-size: 15px; font-style: normal; opacity: .75; }

.atelier { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 820px; background: var(--paper); }
.atelier-image-wrap { position: relative; min-height: 720px; margin: 0; }
.atelier-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.atelier-image-wrap figcaption { position: absolute; left: 24px; bottom: 20px; padding: 9px 12px; color: white; background: rgba(14,18,17,.82); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.atelier-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 130px); }
.atelier-copy > p:not(.record-label) { margin: 30px 0; font-size: 19px; line-height: 1.7; }
blockquote { margin: 20px 0 0; padding-top: 30px; border-top: 1px solid var(--line); font-family: var(--serif); font-size: clamp(26px, 2.6vw, 42px); line-height: 1.16; }
blockquote cite { display: block; margin-top: 18px; font-family: var(--sans); font-size: 15px; font-style: normal; letter-spacing: .06em; text-transform: uppercase; }

.path { display: grid; min-height: 680px; }
.path-home { grid-template-columns: .88fr 1.12fr; color: var(--ivory); background: var(--ultramarine); }
.path-institution { grid-template-columns: 1.1fr .9fr; background: #c8d6c2; }
.path-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 130px); }
.path-copy > p:not(.record-label):not(.guarantee) { margin: 30px 0 18px; font-size: 19px; line-height: 1.7; }
.path-home > img, .path-image-crop img { width: 100%; height: 100%; object-fit: cover; }
.path-image-crop { min-height: 680px; overflow: hidden; }
.guarantee { margin: 0 0 28px; padding-left: 18px; border-left: 3px solid var(--amber); font-size: 16px; font-weight: 750; }
.light-link { color: white; }
.dark-link { color: var(--lead); }

.process { padding: clamp(80px, 10vw, 160px) clamp(24px, 6vw, 110px); }
.process-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 5px solid var(--lead); }
.process-steps li { min-height: 310px; padding: 24px 24px 30px; border-right: 1px solid var(--line); }
.process-steps li:nth-child(1) { border-top: 9px solid var(--ruby); }
.process-steps li:nth-child(2) { border-top: 9px solid var(--amber); }
.process-steps li:nth-child(3) { border-top: 9px solid var(--ultramarine); }
.process-steps li:nth-child(4) { border-top: 9px solid var(--verdigris); }
.process-steps li:nth-child(5) { border-top: 9px solid var(--ruby); }
.process-steps span { display: block; margin-bottom: 44px; font-family: var(--serif); font-size: 28px; font-style: italic; }
.process-steps strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.process-steps p { margin: 14px 0 0; font-size: 16px; line-height: 1.55; }

.review-note { padding: 80px 24px; color: var(--ivory); background: var(--verdigris); text-align: center; }
.review-note p { margin: 0; font-family: var(--serif); font-size: clamp(50px, 7vw, 110px); line-height: 1; }
.review-note span { display: block; margin-top: 22px; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }

.contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; padding: clamp(80px, 10vw, 160px) clamp(24px, 7vw, 130px); color: var(--ivory); background: var(--lead); }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; justify-content: center; }
.contact-details a { font-size: 18px; text-underline-offset: 5px; }
.contact-details .contact-phone { color: #f5bd61; font-family: var(--serif); font-size: clamp(36px, 4vw, 60px); }
.contact-details address { margin-top: 16px; font-style: normal; font-size: 18px; }
.contact-details p { max-width: 520px; margin: 12px 0 0; color: rgba(243,237,223,.76); font-size: 16px; }

footer { display: flex; justify-content: space-between; gap: 24px; padding: 24px clamp(24px, 5vw, 84px); color: var(--ivory); background: #0d100f; font-size: 14px; letter-spacing: .05em; }

@media (max-width: 980px) {
  .location { display: none; }
  .hero-content { width: 78vw; }
  .preservation { grid-template-columns: 1fr; }
  .atelier, .path-home, .path-institution { grid-template-columns: 1fr; }
  .atelier-image-wrap, .path-image-crop { min-height: 600px; }
  .path-home .path-copy { order: 2; }
  .path-home > img { order: 1; max-height: 700px; object-fit: cover; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 18px; }
  .site-header { min-height: 82px; padding: 15px 18px; }
  .wordmark { display: block; }
  .wordmark span { display: block; font-size: 28px; }
  .wordmark small { display: block; margin-top: 3px; font-size: 14px; letter-spacing: .04em; }
  .phone { font-size: 16px; white-space: nowrap; }

  .hero { min-height: 844px; height: 100svh; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,12,11,.96) 0%, rgba(8,12,11,.82) 50%, rgba(8,12,11,.16) 100%); }
  .hero-content { justify-content: flex-end; width: 100%; padding: 120px 20px 72px; }
  .heritage-mark { margin-bottom: 16px; font-size: 14px; }
  h1 { font-size: clamp(49px, 14vw, 62px); line-height: .94; }
  .hero-copy { margin-top: 22px; font-size: 17px; line-height: 1.48; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 25px; }
  .button { width: 100%; min-height: 54px; }
  .hero-actions .text-link { align-self: center; }
  .hero-caption { display: none; }

  .lineage { padding: 72px 20px; }
  .lineage-intro, .process-heading { display: block; }
  .lineage-intro { padding-bottom: 38px; }
  .lineage-intro h2, .preservation h2, .atelier h2, .path h2, .process h2, .contact h2 { font-size: 46px; }
  .lineage-track { display: block; padding: 26px 0 42px 28px; }
  .lineage-track::before { top: 32px; bottom: 52px; left: 7px; right: auto; width: 3px; height: auto; background: linear-gradient(var(--ruby) 0 34%, var(--amber) 34% 67%, var(--ultramarine) 67%); }
  .lineage-track li { padding: 22px 0 22px 28px; }
  .lineage-track li::before { top: 37px; left: -28px; width: 14px; height: 14px; }
  .lineage-track strong { font-size: 50px; }
  .lineage-track span { font-size: 17px; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-band div { padding: 25px 26px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }

  .preservation-copy, .project-register, .atelier-copy, .path-copy { padding: 70px 20px; }
  .lead-copy, .atelier-copy > p:not(.record-label), .path-copy > p:not(.record-label):not(.guarantee) { font-size: 18px; }
  .project-register li { grid-template-columns: 34px 1fr; }
  .atelier-image-wrap, .path-image-crop { min-height: 480px; }
  .atelier-image-wrap figcaption { left: 12px; bottom: 12px; max-width: calc(100% - 24px); font-size: 14px; }
  blockquote { font-size: 30px; }
  .path-home > img { min-height: 430px; object-fit: cover; }
  .guarantee { font-size: 16px; }

  .process { padding: 72px 20px; }
  .process-heading { margin-bottom: 52px; }
  .process-heading .record-label { margin-bottom: 20px; }
  .process-steps { grid-template-columns: 1fr; border-top: 0; }
  .process-steps li { min-height: 0; padding: 24px 6px 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-steps span { margin-bottom: 12px; }
  .process-steps p { font-size: 17px; }

  .review-note { padding: 70px 20px; }
  .review-note p { font-size: 52px; }
  .contact { grid-template-columns: 1fr; gap: 46px; padding: 74px 20px; }
  .contact-details .contact-phone { font-size: 38px; }
  .contact-details a { max-width: 100%; overflow-wrap: anywhere; }
  footer { flex-direction: column; padding: 24px 20px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover, .button:focus-visible { transform: none; }
}
