:root {
  --ink: #111613;
  --ink-soft: #26312c;
  --paper: #fbfaf6;
  --mist: #eef1ea;
  --line: rgba(17, 22, 19, 0.14);
  --copper: #c86635;
  --gold: #d9a75f;
  --sage: #416f62;
  --sky: #8db7c8;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(18, 20, 16, 0.22);
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(200, 102, 53, 0.3);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: max(18px, 3vw);
  right: max(18px, 3vw);
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  background: rgba(17, 22, 19, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 22, 19, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.brand-name,
.brand-meta {
  display: block;
  white-space: nowrap;
}

.brand-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-meta {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
}

.header-cta path,
.button path,
.feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(112px, 14vh, 170px) max(22px, 5vw) clamp(28px, 6vh, 60px);
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(0.96) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, 0.9) 0%, rgba(10, 11, 9, 0.67) 38%, rgba(10, 11, 9, 0.18) 74%),
    linear-gradient(0deg, rgba(9, 11, 8, 0.62) 0%, rgba(9, 11, 8, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 20px;
  font-size: clamp(62px, 8.2vw, 132px);
  line-height: 0.86;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-secondary:hover {
  border-color: var(--gold);
}

.launch-panel {
  position: absolute;
  z-index: 3;
  right: max(22px, 5vw);
  bottom: clamp(24px, 5vh, 58px);
  width: min(470px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 0.75fr 1.1fr 1fr;
  color: var(--white);
  background: rgba(17, 22, 19, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.launch-panel div {
  padding: 17px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.launch-panel div:last-child {
  border-right: 0;
}

.launch-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-panel strong {
  display: block;
  color: var(--gold);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.05;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.strip-item {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px max(18px, 4vw);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 32px;
}

.strip-item strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strategy-section,
.portfolio-section,
.gallery-section,
.contact-section {
  padding: clamp(78px, 12vw, 150px) max(22px, 5vw);
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: clamp(34px, 6vw, 70px);
}

.strategy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.strategy-copy {
  position: sticky;
  top: 116px;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.thesis-list,
.market-list {
  border-top: 1px solid var(--line);
}

.thesis-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.thesis-list p,
.pipeline-card p,
.asset-body p,
.contact-copy p {
  margin-bottom: 0;
  color: rgba(17, 22, 19, 0.68);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--sage);
  background: rgba(65, 111, 98, 0.1);
  border-radius: 8px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.portfolio-section {
  background: var(--mist);
}

.asset-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  margin-bottom: 22px;
}

.asset-media {
  margin: 0;
  min-height: 420px;
}

.asset-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.asset-body {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.asset-kicker,
.pipeline-card span {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-body h3 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.94;
}

.asset-meta {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.asset-meta span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pipeline-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pipeline-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 102, 53, 0.5);
  box-shadow: 0 18px 48px rgba(18, 20, 16, 0.12);
}

.pipeline-card h3 {
  font-size: 21px;
}

.markets-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  background: var(--ink);
  color: var(--white);
}

.markets-image {
  min-height: 520px;
  background-image:
    linear-gradient(0deg, rgba(17, 22, 19, 0.08), rgba(17, 22, 19, 0.08)),
    url("assets/images/cabin-wide-retouched.webp");
  background-size: cover;
  background-position: 50% 53%;
}

.markets-content {
  display: grid;
  align-content: center;
  padding: clamp(58px, 9vw, 120px) max(22px, 7vw);
}

.markets-content p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.market-list {
  margin-top: 38px;
  border-top-color: rgba(255, 255, 255, 0.16);
}

.market-list div {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.market-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-list strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.36fr 0.82fr;
  gap: 18px;
  align-items: start;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-large img {
  aspect-ratio: 1.58;
}

.gallery-small img {
  aspect-ratio: 0.94;
}

figcaption {
  margin-top: 12px;
  color: rgba(17, 22, 19, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.66fr);
  gap: clamp(30px, 7vw, 98px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94)),
    var(--paper);
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  font-size: 18px;
}

.lead-form {
  display: grid;
  gap: 17px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.lead-form select option {
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  padding: 46px max(22px, 5vw);
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .launch-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 38px;
  }

  .intro-strip,
  .strategy-grid,
  .asset-card,
  .markets-section,
  .gallery-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .strategy-copy {
    position: static;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .gallery-small img {
    aspect-ratio: 1.58;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 60px;
    padding: 8px 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .brand-name {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-meta,
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    padding: 0;
  }

  .hero {
    min-height: 84svh;
    padding: 102px 20px 24px;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .hero-copy,
  .lede,
  .contact-copy p:not(.eyebrow),
  .markets-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .launch-panel {
    grid-template-columns: 1fr;
  }

  .launch-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .launch-panel div:last-child {
    border-bottom: 0;
  }

  .strip-item {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .strategy-section,
  .portfolio-section,
  .gallery-section,
  .contact-section {
    padding: 72px 20px;
  }

  .thesis-list article {
    grid-template-columns: 1fr;
  }

  .asset-media,
  .asset-media img {
    min-height: 300px;
  }

  .asset-body {
    padding: 26px 20px;
  }

  .markets-content {
    padding: 62px 20px;
  }

  .markets-image {
    min-height: 390px;
  }

  .market-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
