:root {
  --paper: #e8e1d6;
  --charcoal: #1a1b1a;
  --cream: #d8cdbb;
  --muted: #999184;
  --line: rgba(216, 205, 187, .18);
  --sans: "Montserrat", Arial, sans-serif;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--charcoal); color: var(--cream); font: 400 14px/1.7 var(--sans); }
a { color: inherit; }
.skip-link { position: fixed; z-index: 10; top: 1rem; left: 1rem; padding: .65rem 1rem; background: var(--cream); color: var(--charcoal); transform: translateY(-200%); }
.skip-link:focus { transform: none; }

.hero { position: relative; isolation: isolate; width: 100%; height: 100svh; min-height: 620px; overflow: hidden; background: var(--paper) url("../assets/paper-texture.png") center / cover; color: #171715; }
.hero-title { position: absolute; z-index: 1; top: 18%; left: 3vw; right: 3vw; text-align: center; transform: translate3d(0, var(--title-shift, 0), 0); }
.hero-title h1 { margin: 0; font: clamp(4.5rem, 6.8vw, 7rem)/.8 var(--display); letter-spacing: -.012em; text-transform: uppercase; white-space: nowrap; }
.hero-title h1 span { display: inline-block; }
.hero-title h1 small { display: inline-block; font-size: .7em; line-height: 1; text-transform: uppercase; vertical-align: baseline; transform: none; -webkit-text-stroke: .018em currentColor; }
.hero-title p { margin: 1.55rem 0 0; padding-left: .62em; font-size: clamp(.67rem, .9vw, .9rem); font-weight: 500; letter-spacing: .62em; line-height: 1; text-transform: uppercase; }
.hero-title i { display: block; width: 1.5rem; height: 1px; margin: 1.25rem auto 0; background: currentColor; }
.mountains { position: absolute; z-index: 2; inset: 0; }
.mountains img { position: absolute; left: 50%; bottom: 0; display: block; width: 100%; height: auto; transform: translate3d(-50%, var(--mountain-shift, 0), 0); }
.mountains img.mountains-back { bottom: -28%; opacity: .3; filter: contrast(.86) brightness(1.06); }
.mountains img.mountains-mid { bottom: -36%; opacity: .58; filter: contrast(.9) brightness(1.03); }
.mountain-fade { position: absolute; z-index: 3; left: 0; right: 0; bottom: -1px; height: 24%; background: linear-gradient(to bottom, transparent 0%, rgba(26,27,26,.25) 32%, var(--charcoal) 100%); pointer-events: none; }

.content-surface { min-height: 100vh; background: var(--charcoal); }
.content-section, footer { width: min(72%, 820px); margin: 0 auto; }
.content-section { padding-top: 4rem; }
.content-section + .content-section { padding-top: 5.25rem; }
.section-label { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.5rem; color: var(--cream); font: 500 .62rem/1 var(--sans); letter-spacing: .34em; text-transform: uppercase; }
.section-label > span { display: block; width: 1.4rem; height: 1px; background: var(--cream); }

.video-frame { aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(216,205,187,.22); border-radius: 9px; background: #101110; }
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

.about-row { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 2.3rem; }
.tm-mark { width: 82px; height: 82px; }
.tm-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.about-copy p { max-width: 540px; margin: 0; font-size: .8rem; line-height: 1.85; }

.contact { padding-bottom: 3.25rem; }
.contact-row { display: grid; gap: 1.05rem; }
.contact-row a { display: grid; grid-template-columns: 1.35rem minmax(0, 1fr); align-items: center; gap: .85rem; max-width: 100%; font-size: .7rem; font-weight: 400; overflow-wrap: anywhere; text-decoration: none; }
.contact-row b { display: grid; place-items: center; width: 1.35rem; color: var(--muted); font-size: 1.15rem; font-weight: 400; }
.contact-row .linkedin-icon { height: 1.35rem; border: 1px solid currentColor; border-radius: 2px; font: 500 .63rem/1 var(--sans); letter-spacing: -.03em; }
footer { padding: 1.45rem 0 2rem; border-top: 1px solid var(--line); color: #706d66; font-size: .56rem; text-align: center; }
:focus-visible { outline: 1px solid var(--cream); outline-offset: 5px; }

@media (max-width: 720px) {
  .hero { height: 100svh; min-height: 580px; }
  .hero-title { top: 20%; left: 0; right: 0; }
  .hero-title h1 { font-size: clamp(3.7rem, 18vw, 5.5rem); line-height: .82; white-space: normal; }
  .hero-title h1 span { display: block; }
  .hero-title p { margin-top: 1.2rem; font-size: .62rem; letter-spacing: .48em; }
  .mountains img { width: 180%; }
  .mountains img.mountains-back { bottom: -19%; }
  .mountains img.mountains-mid { bottom: -24%; }
  .mountain-fade { height: 22%; }
  .content-section, footer { width: 88%; }
  .content-section { padding-top: 3.25rem; }
  .content-section + .content-section { padding-top: 4.25rem; }
  .about-row { grid-template-columns: 66px 1fr; gap: 1.3rem; align-items: start; }
  .tm-mark { width: 62px; height: 62px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title, .mountains img { will-change: transform; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
