:root {
  --ink: #070d13;
  --navy: #06111b;
  --navy-2: #0a1a26;
  --paper: #f8f6f2;
  --paper-2: #fbfaf7;
  --charcoal: #22272d;
  --muted: #60656b;
  --gold: #bd8840;
  --gold-light: #d5a55d;
  --line: rgba(35, 39, 44, .15);
  --serif: "Bodoni 72", "Bodoni MT", Didot, "GFS Didot", "Didot LT STD", "Times New Roman", Times, serif;
  --text-serif: Baskerville, "Baskerville Old Face", "Hoefler Text", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: #020304;
}
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--text-serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--gold); color: #07111a; }

.page-shell {
  width: 86%;
  max-width: 1320px;
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

#home, #about, #principles, #contact { scroll-margin-top: 82px; }

/* Fixed navigation: transparent at the top, restrained dark glass after scrolling. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: #fff;
  background: rgba(2, 6, 10, 0);
  border-bottom: 1px solid transparent;
  transition:
    background-color .34s ease,
    border-color .34s ease,
    backdrop-filter .34s ease,
    box-shadow .34s ease;
}
.site-header.is-scrolled {
  background: rgba(2, 7, 11, .80);
  border-color: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  box-shadow: 0 10px 34px rgba(0,0,0,.17);
}
.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  transition: min-height .28s ease;
}
.site-header.is-scrolled .header-inner { min-height: 78px; }
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  width: clamp(252px, 29vw, 314px);
  flex: 0 0 auto;
}
.brand-wordmark {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 153;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4.1vw, 52px);
}
.primary-nav a {
  position: relative;
  padding: 13px 0 12px;
  color: rgba(255,255,255,.84);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .12em;
  transition: color .18s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold-light);
  transition: right .2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active { color: #fff; }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after { right: 0; }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  height: clamp(640px, 68vw, 780px);
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 77% 34%, rgba(40, 72, 92, .39) 0, rgba(22, 45, 61, .19) 24%, rgba(2, 8, 13, 0) 49%),
    linear-gradient(108deg, #02070b 0%, #030a10 43%, #0a1822 100%);
}
/* Strong left-side veil exists at every width so the headline never competes with the figure. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(1, 5, 8, .985) 0%,
    rgba(1, 5, 8, .94) 22%,
    rgba(1, 5, 8, .80) 37%,
    rgba(1, 5, 8, .47) 50%,
    rgba(1, 5, 8, .13) 64%,
    rgba(1, 5, 8, 0) 77%
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,.17), transparent 24%);
}
.hero-glow {
  position: absolute;
  z-index: 0;
  right: 2%;
  top: 13%;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .55;
  background: radial-gradient(circle, rgba(180, 147, 96, .10) 0, rgba(40,82,106,.06) 34%, transparent 68%);
}
.hero-inner { height: 100%; position: relative; }
.hero-copy {
  position: absolute;
  z-index: 5;
  left: 0;
  top: clamp(170px, 18vw, 210px);
  width: 42%;
  max-width: 455px;
}
.hero-eyebrow {
  margin: 0 0 44px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: clamp(13px, 1.42vw, 17px);
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: .25em;
}
.hero h1 {
  margin: 0;
  color: #f7f4ef;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 67px);
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
  line-height: 1.01;
  letter-spacing: .018em;
}
.hero h1 span { color: #d4a055; }
.short-gold-rule {
  display: block;
  width: 45px;
  height: 2px;
  margin: 42px 0 38px;
  background: var(--gold);
}
.hero-process {
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.75vw, 22px);
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(9px, 1.02vw, 11px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .15em;
}
.hero-figure {
  position: absolute;
  z-index: 1;
  right: -4vw;
  bottom: -4px;
  width: min(68vw, 760px);
  pointer-events: none;
  filter: none;
}
.hero-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

/* Company overview */
.about {
  background:
    radial-gradient(circle at 50% 0, rgba(223, 207, 180, .15), transparent 36%),
    var(--paper-2);
  padding: 44px 0 50px;
}
.about-intro { text-align: center; }
.company-kicker {
  margin: 0;
  color: #a77738;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: clamp(13px, 1.52vw, 16px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .25em;
}
.center-gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: 31px auto 28px;
  background: var(--gold);
}
.business-description {
  margin: 0 auto;
  color: #20242a;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.26vw, 26px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -.005em;
}
.pillars {
  margin-top: 43px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.pillar {
  position: relative;
  text-align: center;
  padding: 0 24px 4px;
}
.pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 142px;
  background: var(--line);
}
.pillar-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: #a67838;
}
.pillar-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar h3 {
  margin: 0 0 10px;
  color: #24272c;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: clamp(14px, 1.45vw, 17px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .11em;
}
.pillar p {
  margin: 0;
  color: #555b62;
  font-family: var(--text-serif);
  font-size: clamp(13px, 1.28vw, 15px);
  font-weight: 400;
  line-height: 1.44;
}

/* Approved mountain statement band */
.principles {
  position: relative;
  height: clamp(250px, 26.2vw, 350px);
  background-image: url("../assets/mountain-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-color: #09121a;
}
.principles-copy { display: none; }

/* Footer: adapted from v1 for legibility and compactness. */
.site-footer {
  background: #020608;
  color: rgba(255,255,255,.65);
  padding: 54px 0 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: .9fr 1.1fr 1.2fr;
  align-items: center;
  gap: 48px;
}
.footer-brand {
  padding-right: 44px;
  border-right: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
}
.footer-brand img {
  width: 225px;
  height: auto;
  aspect-ratio: 900 / 153;
  object-fit: contain;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 44px;
  border-right: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.73);
  font-family: var(--text-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: .005em;
  text-transform: none;
}
.footer-address strong {
  color: rgba(255,255,255,.91);
  font-weight: 400;
}
.footer-address span { display: block; }
.footer-nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}
.footer-nav a {
  color: rgba(255,255,255,.70);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .11em;
}
.footer-nav a:hover,
.footer-nav a:focus-visible { color: #fff; }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-family: var(--text-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .01em;
}
.mail-icon { color: #ac8c5e; font-size: 14px; line-height: 1; }
.footer-email:hover,
.footer-email:focus-visible { color: #fff; }
.footer-bottom {
  display: grid;
  grid-template-columns: .60fr 1.40fr;
  gap: 56px;
  align-items: start;
  margin-top: 42px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.50);
  font-family: var(--text-serif);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.62;
}
.footer-bottom p { margin: 0; }
.footer-legal {
  text-align: right;
  color: rgba(255,255,255,.43);
}

/* Medium desktop / tablet */
@media (max-width: 1040px) {
  .brand { width: 286px; }
  .primary-nav { gap: 28px; }
  .hero { height: clamp(640px, 68vw, 700px); min-height: 640px; }
  .hero-copy { top: 178px; width: 45%; }
  .hero h1 { font-size: 45px; }
  .hero-figure { width: 655px; right: -82px; }
  .business-description { font-size: 23px; }

  .footer-main { grid-template-columns: 1fr 1.15fr; gap: 36px; }
  .footer-brand { padding-right: 34px; }
  .footer-address { border-right: 0; padding-right: 0; }
  .footer-nav-wrap {
    grid-column: 1 / -1;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.10);
  }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .page-shell { width: calc(100% - 56px); }
  .header-inner { min-height: 86px; }
  .site-header.is-scrolled .header-inner { min-height: 70px; }
  .brand { width: 215px; position: relative; z-index: 151; }
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 151;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(1,6,10,.12);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    color: #fff;
    cursor: pointer;
  }
  .menu-line {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle[aria-expanded="true"] .menu-line:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-line:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    z-index: 150;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 29px;
    padding: 80px 20px;
    background: rgba(3,8,13,.975);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .20s ease, visibility .20s ease, transform .20s ease;
  }
  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .primary-nav a { font-size: 16px; letter-spacing: .16em; }
  body.nav-open { overflow: hidden; }

  .hero {
    height: 760px;
    min-height: 760px;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(2,7,11,.99) 0%,
      rgba(2,7,11,.94) 34%,
      rgba(2,7,11,.58) 60%,
      rgba(2,7,11,.12) 100%
    );
  }
  .hero-copy { top: 145px; width: 58%; max-width: 410px; }
  .hero-eyebrow { margin-bottom: 37px; font-size: 13px; }
  .hero h1 { font-size: clamp(42px, 6.1vw, 50px); }
  .short-gold-rule { margin: 37px 0 32px; }
  .hero-process { gap: 13px; font-size: 9px; letter-spacing: .12em; }
  .hero-figure { width: 650px; right: -210px; bottom: 0; opacity: .92; }

  .about { padding: 42px 0 48px; }
  .business-description { font-size: 22px; }
  .pillars { grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: 40px; }
  .pillar:nth-child(2)::after { display: none; }
  .pillar:not(:last-child)::after { height: 134px; }
  .pillar:nth-child(-n+2) { padding-bottom: 8px; }
  .principles { height: 280px; }

  .site-footer { padding-top: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .footer-brand { width: 100%; padding-right: 32px; }
  .footer-brand img { width: 220px; }
  .footer-address { padding-left: 0; font-size: 13px; }
  .footer-nav-wrap { padding-top: 26px; }
  .footer-bottom { margin-top: 34px; }
}

/* Mobile */
@media (max-width: 560px) {
  .page-shell { width: calc(100% - 42px); }
  .header-inner { min-height: 78px; }
  .site-header.is-scrolled .header-inner { min-height: 66px; }
  .brand { width: 182px; }
  .menu-toggle { width: 40px; height: 40px; }

  .hero {
    height: max(760px, 92svh);
    min-height: 760px;
    max-height: 860px;
  }
  .hero-copy {
    top: 126px;
    width: 100%;
    max-width: 360px;
  }
  .hero-eyebrow { font-size: 12px; margin-bottom: 31px; }
  .hero h1 {
    font-size: clamp(40px, 11vw, 49px);
    line-height: 1.01;
  }
  .short-gold-rule { margin: 34px 0 27px; width: 42px; }
  .hero-process {
    flex-wrap: wrap;
    max-width: 270px;
    row-gap: 8px;
    column-gap: 16px;
    font-size: 8.5px;
  }
  .hero-figure {
    width: 620px;
    right: -265px;
    bottom: -1px;
    opacity: .74;
    filter: none;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(2,7,11,.995) 0%,
      rgba(2,7,11,.94) 36%,
      rgba(2,7,11,.57) 64%,
      rgba(2,7,11,.11) 100%
    );
  }

  .about { padding: 39px 0 45px; }
  .company-kicker { font-size: 11px; line-height: 1.45; letter-spacing: .21em; }
  .center-gold-rule { margin: 24px auto 23px; width: 43px; }
  .business-description {
    max-width: 390px;
    font-size: 19px;
    line-height: 1.38;
  }
  .desktop-break { display: none; }
  .pillars {
    margin-top: 36px;
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
  }
  .pillar { padding: 0 12px; }
  .pillar:nth-child(odd)::after { height: 126px; top: 7px; }
  .pillar:nth-child(even)::after { display: none; }
  .pillar-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .pillar h3 { font-size: 13px; }
  .pillar p { font-size: 12.5px; }

  .principles {
    height: 260px;
    display: grid;
    place-items: center;
    background-image: url("../assets/mountain-bg.jpg");
    background-position: 50% 50%;
  }
  .principles-copy {
    display: flex;
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255,255,255,.90);
    text-shadow: 0 2px 12px rgba(0,0,0,.48);
  }
  .principles-copy h2 {
    margin: 0;
    text-transform: uppercase;
    font-family: var(--serif);
    font-size: clamp(19px, 6.2vw, 25px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .09em;
  }
  .principles-copy span {
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 25px;
    background: var(--gold-light);
  }

  .site-footer { padding: 42px 0 24px; }
  .footer-main { display: block; }
  .footer-brand {
    width: auto;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }
  .footer-brand img { width: 205px; margin-inline: auto; }
  .footer-address {
    padding: 25px 0 0;
    border: 0;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.55;
  }
  .footer-nav-wrap {
    grid-column: auto;
    align-items: center;
    margin-top: 26px;
    padding: 25px 0 0;
    border-top: 1px solid rgba(255,255,255,.11);
  }
  .footer-nav { justify-content: center; gap: 18px 22px; }
  .footer-nav a { font-size: 9px; }
  .footer-email { justify-content: center; font-size: 12px; }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
    padding-top: 21px;
    text-align: center;
    font-size: 9.5px;
  }
  .footer-legal { text-align: center; }
}

@media (max-width: 380px) {
  .page-shell { width: calc(100% - 34px); }
  .brand { width: 168px; }
  .hero-copy { top: 121px; }
  .hero h1 { font-size: 38px; }
  .hero-figure { width: 585px; right: -255px; }
  .hero-process { max-width: 245px; gap: 7px 12px; }
  .business-description { font-size: 18px; }
  .footer-nav { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ======================================================================
   V4 TYPOGRAPHY RESTORATION
   Restores the font families, weights and type scale from the original
   v1 concept while preserving the v3 composition, artwork and behavior.
   ====================================================================== */
:root {
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, "Times New Roman", serif;
  --text-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--sans);
}

/* Navigation — v1 type treatment */
.primary-nav a {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .15em;
}

/* Hero — v1 type treatment */
.hero-copy {
  width: 43%;
  max-width: 610px;
}
.hero-eyebrow {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .29em;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.35vw, 78px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: .025em;
}
.hero-process {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .22em;
}

/* Company overview — v1 type treatment */
.company-kicker {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .29em;
}
.business-description {
  max-width: 840px;
  font-family: var(--serif);
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .13em;
}
.pillar p {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

/* The v3 desktop mountain asset had its statement baked into the image.
   V4 uses the clean mountain artwork at all widths so the statement can
   use the same v1 typography as the rest of the site. */
.principles {
  display: grid;
  place-items: center;
  background-image: url("../assets/mountain-bg.jpg");
  background-position: 50% 50%;
}
.principles-copy {
  display: flex;
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 56px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.principles-copy h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: .06em;
}
.principles-copy span {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 24px;
  background: var(--gold-light);
}

/* Footer — exact v1 font families / sizes restored. */
.footer-address {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .025em;
}
.footer-address strong {
  font-weight: 500;
}
.footer-nav a,
.footer-email {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .12em;
}
.footer-email {
  letter-spacing: .05em;
}
.mail-icon {
  font-size: 12px;
}
.footer-bottom {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.65;
}

@media (max-width: 1040px) {
  .hero-copy {
    width: 47%;
    max-width: 610px;
  }
  .hero h1 {
    font-size: clamp(49px, 6.4vw, 68px);
  }
  .business-description {
    font-size: clamp(23px, 2.6vw, 34px);
  }
}

@media (max-width: 820px) {
  .primary-nav a {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .15em;
  }
  .hero-copy {
    width: 63%;
    max-width: 470px;
  }
  .hero-eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(44px, 13vw, 66px);
    line-height: 1.01;
  }
  .hero-process {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .22em;
  }
  .company-kicker {
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: .24em;
  }
  .business-description {
    font-size: 24px;
    line-height: 1.35;
  }
  .pillar h3 {
    font-size: 14px;
  }
  .pillar p {
    font-size: 14px;
    line-height: 1.55;
  }
  .principles-copy h2 {
    font-size: clamp(34px, 10.5vw, 47px);
    line-height: 1.16;
    letter-spacing: .06em;
  }
  .footer-address {
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-nav a,
  .footer-email {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 10px;
    line-height: 1.65;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }
  .hero-eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(44px, 13vw, 66px);
    line-height: 1.01;
  }
  .hero-process {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .22em;
  }
  .company-kicker {
    font-size: 11px;
    letter-spacing: .24em;
  }
  .business-description {
    font-size: 24px;
    line-height: 1.35;
  }
  .pillar h3 {
    font-size: 14px;
  }
  .pillar p {
    font-size: 14px;
  }
  .principles-copy h2 {
    font-size: clamp(34px, 10.5vw, 47px);
  }
  .footer-address {
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-nav a,
  .footer-email {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 10px;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: clamp(39px, 12.8vw, 54px);
  }
}

/* Final v1 breakpoint normalization: v1 switched content typography at 760px.
   V3 opens the mobile navigation at 820px, so only the navigation keeps its
   larger mobile-menu type between 761px and 820px. */
.principles-copy {
  width: min(1120px, calc(100% - 56px));
}
@media (min-width: 761px) and (max-width: 820px) {
  .hero-copy {
    width: 52%;
    max-width: 610px;
  }
  .hero-eyebrow {
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: .29em;
  }
  .hero h1 {
    font-size: clamp(49px, 6.4vw, 68px);
    line-height: .99;
  }
  .hero-process {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .22em;
  }
  .company-kicker {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .29em;
  }
  .business-description {
    font-size: clamp(23px, 2.6vw, 34px);
    line-height: 1.35;
  }
  .pillar h3 { font-size: 17px; }
  .pillar p { font-size: 15px; line-height: 1.55; }
  .principles-copy h2 {
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.16;
    letter-spacing: .06em;
  }
}
@media (max-width: 560px) {
  .principles-copy {
    width: calc(100% - 36px);
  }
}

/* ======================================================================
   V5 LOWER-PAGE REFINEMENT
   Keeps the approved v4 header/hero intact and restores the richer v1
   About / Principles / Contact composition with the v4 mountain artwork.
   ====================================================================== */

/* ABOUT */
.about {
  padding: 102px 0 108px;
  background:
    linear-gradient(rgba(255,255,255,.83), rgba(255,255,255,.83)),
    radial-gradient(circle at 50% 8%, rgba(214, 188, 148, .13), transparent 38%),
    var(--paper-2);
}
.about-heading-block {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}
.about-heading-block .company-kicker {
  margin: 0;
}
.about-heading-block .center-gold-rule {
  margin: 23px auto 30px;
  width: 52px;
}
.about-heading-block h2 {
  margin: 0 0 26px;
  color: #24272b;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .014em;
}
.about-lead {
  max-width: 870px;
  margin: 0 auto;
  color: #25282d;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0;
  text-wrap: balance;
}
.about-supporting {
  max-width: 760px;
  margin: 25px auto 0;
  color: #73787d;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  text-wrap: balance;
}
.about .pillars {
  margin-top: 70px;
  padding: 45px 0 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  row-gap: 0;
}
.about .pillar {
  padding: 0 30px;
}
.about .pillar:not(:last-child)::after {
  top: 4px;
  height: calc(100% - 8px);
}
.about .pillar-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}
.about .pillar h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .13em;
}
.about .pillar p {
  color: #62676d;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

/* PRINCIPLES — retain v4 mountain asset, add the richer v1 message. */
.principles {
  position: relative;
  height: auto;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: url("../assets/mountain-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-color: #07111a;
  color: #fff;
}
.principles-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 77% 47%, rgba(220, 170, 86, .12), transparent 18%),
    linear-gradient(to bottom, rgba(2,9,14,.34), rgba(2,9,14,.16) 46%, rgba(2,9,14,.38) 100%);
  pointer-events: none;
}
.principles-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 78px 0 88px;
  text-align: center;
}
.principles-kicker {
  margin: 0 0 25px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.principles h2 {
  margin: 0;
  color: rgba(255,255,255,.95);
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 59px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,.37);
}
.principles-rule {
  display: block;
  width: 54px;
  height: 1px;
  margin: 25px auto 21px;
  background: var(--gold-light);
}
.principles-supporting {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255,255,255,.70);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
}

/* CONTACT */
.contact {
  padding: 104px 0 110px;
  background:
    radial-gradient(circle at 86% 19%, rgba(213, 190, 151, .12), transparent 33%),
    #f6f2e9;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(62px, 8vw, 118px);
  align-items: center;
}
.contact-kicker {
  margin: 0 0 25px;
  color: #a77738;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .27em;
  text-transform: uppercase;
}
.contact-copy h2 {
  margin: 0 0 24px;
  color: #24272b;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 67px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: .012em;
}
.contact-copy > p:not(.contact-kicker) {
  max-width: 700px;
  margin: 0 0 31px;
  color: #51565c;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(111,77,31,.31);
  color: #785425;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .075em;
}
.contact-link span {
  transition: transform .18s ease;
}
.contact-link:hover span,
.contact-link:focus-visible span {
  transform: translateX(4px);
}
.contact-card {
  padding: 40px 42px 37px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(12,33,48,.11);
  box-shadow: 0 24px 70px rgba(25,34,40,.075);
}
.contact-card-label {
  margin: 0 0 19px;
  color: #32373c;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.contact-card address {
  color: #444a50;
  font-family: var(--serif);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
}
.contact-card-note {
  margin: 27px 0 0;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #868a8e;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

/* Lower-page responsive tuning */
@media (max-width: 1040px) {
  .about { padding: 90px 0 96px; }
  .about .pillars { margin-top: 61px; }
  .about .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; }
  .about .pillar { padding: 39px 28px 38px; }
  .about .pillar:nth-child(2)::after { display: none; }
  .about .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about .pillar:not(:last-child)::after { top: 24%; height: 52%; }
  .contact-grid { gap: 56px; }
}

@media (max-width: 820px) {
  .about { padding: 80px 0 84px; }
  .about-heading-block h2 { font-size: clamp(37px, 6vw, 48px); }
  .about-lead { font-size: 25px; line-height: 1.36; }
  .about-supporting { max-width: 640px; font-size: 14px; }
  .about .pillars { margin-top: 54px; }

  .principles { min-height: 390px; background-position: 50% 50%; }
  .principles-inner { padding: 72px 0 78px; }
  .principles h2 { font-size: clamp(34px, 7.2vw, 49px); }
  .principles-supporting { font-size: 14px; }

  .contact { padding: 82px 0 88px; }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .contact-copy h2 { font-size: clamp(45px, 8vw, 58px); }
  .contact-copy > p:not(.contact-kicker) { max-width: 720px; font-size: 18px; }
  .contact-card { max-width: 560px; width: 100%; }
}

@media (max-width: 560px) {
  .about { padding: 68px 0 72px; }
  .about-heading-block .company-kicker { font-size: 10.5px; line-height: 1.5; letter-spacing: .22em; }
  .about-heading-block .center-gold-rule { margin: 21px auto 24px; width: 44px; }
  .about-heading-block h2 {
    margin-bottom: 21px;
    font-size: clamp(34px, 9.6vw, 43px);
    line-height: 1.08;
  }
  .about-lead { font-size: 22px; line-height: 1.38; }
  .about-supporting { margin-top: 21px; font-size: 13px; line-height: 1.62; }
  .about .pillars {
    margin-top: 46px;
    grid-template-columns: 1fr 1fr;
  }
  .about .pillar { padding: 32px 12px 31px; }
  .about .pillar-icon { width: 47px; height: 47px; margin-bottom: 14px; }
  .about .pillar h3 { font-size: 13px; }
  .about .pillar p { font-size: 12.5px; line-height: 1.5; }
  .about .pillar:nth-child(odd)::after { display: block; top: 23%; height: 54%; }
  .about .pillar:nth-child(even)::after { display: none; }
  .about .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .principles { min-height: 360px; background-position: 50% 50%; }
  .principles-inner { padding: 65px 0 70px; }
  .principles-kicker { margin-bottom: 20px; font-size: 10.5px; letter-spacing: .23em; }
  .principles h2 { font-size: clamp(29px, 8.8vw, 39px); line-height: 1.16; letter-spacing: .045em; }
  .principles-rule { margin: 22px auto 19px; width: 46px; }
  .principles-supporting { max-width: 360px; font-size: 13.5px; line-height: 1.58; }

  .contact { padding: 70px 0 74px; }
  .contact-kicker { margin-bottom: 20px; font-size: 10.5px; letter-spacing: .22em; }
  .contact-copy h2 { margin-bottom: 20px; font-size: clamp(40px, 11.5vw, 52px); }
  .contact-copy > p:not(.contact-kicker) { margin-bottom: 27px; font-size: 17px; line-height: 1.52; }
  .contact-link { font-size: 10.5px; letter-spacing: .055em; }
  .contact-card { padding: 31px 28px 29px; }
  .contact-card-label { font-size: 10px; }
  .contact-card address { font-size: 16px; line-height: 1.68; }
  .contact-card-note { margin-top: 23px; padding-top: 20px; font-size: 10.5px; }
}

@media (max-width: 340px) {
  .about .pillars { grid-template-columns: 1fr; }
  .about .pillar { padding: 30px 10px; }
  .about .pillar:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .about .pillar:nth-child(4) { border-bottom: 0; }
  .about .pillar::after { display: none !important; }
  .contact-card { padding-inline: 24px; }
}
