
:root {
  --blue: #021429;
  --blue-2: #0a2240;
  --almond: #DE9864;
  --pearl: #ECDFC1;
  --floral: #FAF9F0;
  --pumpkin: #FF6A00;
  --ink: #171717;
  --muted: #4f473c;
  --line: rgba(2, 20, 41, 0.12);
  --line-light: rgba(250, 249, 240, 0.14);
  --shadow: 0 20px 60px rgba(15, 18, 28, 0.12);
  --radius: 28px;
  --container: min(1280px, calc(100vw - 72px));
  --header-h: 96px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--floral);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  background: var(--floral);
  color: var(--blue);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 4vw, 56px);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  height: 78px;
  background: rgba(2, 20, 41, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.brand img { width: clamp(132px, 11vw, 176px); height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--floral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  opacity: .94;
  transition: color .2s ease, opacity .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--almond);
  transition: transform .25s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--almond); opacity: 1; }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--floral);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: max(860px, 100svh);
  color: var(--floral);
  background: var(--blue);
  overflow: clip;
}
.hero-media,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background: url("assets/hero-mountains.png") center center / cover no-repeat;
  transform: scale(1.05) translateY(var(--hero-shift, 0px));
  will-change: transform;
  animation: heroSlowZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  background:
    radial-gradient(circle at 72% 22%, rgba(222, 152, 100, 0.18), transparent 16%),
    linear-gradient(90deg, rgba(2,20,41,0.97) 0%, rgba(2,20,41,0.86) 24%, rgba(2,20,41,0.28) 61%, rgba(2,20,41,0.56) 100%),
    linear-gradient(180deg, rgba(2,20,41,0.12), rgba(2,20,41,0.76) 88%, rgba(2,20,41,0.94));
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  align-items: center;
  padding-top: calc(var(--header-h) + 28px);
}
.hero-copy {
  max-width: 620px;
  padding-inline-start: clamp(10px, 3vw, 48px);
  padding-block: clamp(120px, 17vh, 220px) clamp(70px, 10vh, 110px);
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--almond);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(48px, 5.7vw, 82px);
  line-height: .98;
}
h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
}
h3 {
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.2;
}
.rule,
.center-rule {
  height: 2px;
  background: linear-gradient(90deg, var(--pumpkin), var(--almond));
}
.rule { width: 58px; margin: 30px 0 30px; }
.center-rule { width: 52px; margin: 24px auto 0; }
.hero-text {
  max-width: 460px;
  color: rgba(250, 249, 240, 0.91);
  font-size: 15px;
}
.hero-text p,
.founder-copy p,
.conversation-copy p,
.value-card p { margin: 0 0 1rem; }

.btn {
  --btn-bg: var(--pumpkin);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.18) 50%, transparent 80%);
  transform: translateX(-160%);
  transition: transform .6s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,106,0,.22); }
.btn:hover::before { transform: translateX(160%); }
.btn-primary { background: var(--btn-bg); color: #fff; }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  opacity: .8;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 42px;
  background: linear-gradient(rgba(250,249,240,.1), rgba(250,249,240,.95));
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.section-paper {
  background-color: var(--floral);
  background-image:
    linear-gradient(180deg, rgba(250,249,240,.70), rgba(236,223,193,.24)),
    url("assets/values-background.png");
  background-size: auto, cover;
  background-position: center, center;
}
.values {
  padding: clamp(92px, 9vw, 134px) 0;
}
.values-container {
  max-width: 1220px;
}
.section-intro { margin-bottom: 64px; }
.section-intro-center { text-align: center; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.value-card {
  position: relative;
  padding: 32px 28px 28px;
  text-align: center;
  background: rgba(255,255,255,0.36);
  border: 1px solid rgba(2,20,41,0.07);
  border-radius: 22px;
  box-shadow: 0 16px 46px rgba(40,35,29,0.04);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.52);
  box-shadow: 0 22px 48px rgba(40,35,29,0.09);
}
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
}
.value-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
}
.value-card h3::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--pumpkin);
  margin: 13px auto 0;
}
.value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.founder {
  position: relative;
  padding: clamp(86px, 9vw, 136px) 0;
  overflow: hidden;
  background: #efe6db;
}
.founder-bg {
  position: absolute;
  inset: 0;
  background: url("assets/founder-paper-bg.png") center center / cover no-repeat;
}
.founder::after {
  content: "";
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: clamp(10px, 2vw, 30px);
  width: clamp(180px, 24vw, 360px);
  aspect-ratio: 1 / 1;
  background: url("assets/embossed-v.png") center center / contain no-repeat;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}
.founder-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.founder-photo {
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.1s ease;
}
.founder:hover .founder-photo img { transform: scale(1.03); }
.founder-copy {
  align-self: center;
  padding: clamp(20px, 2.5vw, 30px) clamp(8px, 1vw, 16px) clamp(18px, 2vw, 24px) clamp(10px, 1vw, 16px);
}
.founder-copy p {
  color: #2b261f;
  max-width: 650px;
}
.founder-name {
  font-size: 15px;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}
.signature-image {
  width: min(340px, 74%);
  margin: 28px 0 10px;
}

.conversation {
  padding: clamp(88px, 10vw, 138px) 0;
  background: #e5d9c7 url("assets/conversation-background.png") center center / cover no-repeat;
}
.conversation-grid {
  min-height: 370px;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}
.conversation-copy {
  max-width: 520px;
  padding-inline-start: clamp(10px, 2vw, 22px);
}
.conversation-copy p { color: #413a30; }
.conversation-spacer { min-height: 300px; }

.site-footer {
  background:
    radial-gradient(circle at 0% 0%, rgba(222,152,100,.12), transparent 32%),
    linear-gradient(180deg, var(--blue-2), var(--blue));
  color: var(--floral);
  padding: clamp(32px, 4vw, 54px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1px minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}
.footer-logo img { width: 196px; height: auto; }
.footer-line { width: 1px; height: 120px; background: rgba(250,249,240,.16); }
.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
  font-size: 15px;
}
.contact-list a,
.contact-list span {
  color: rgba(250,249,240,.92);
  transition: color .2s ease, transform .2s ease;
}
.contact-list a:hover {
  color: var(--almond);
  transform: translateX(3px);
}

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroSlowZoom {
  from { transform: scale(1.05) translateY(var(--hero-shift, 0px)); }
  to { transform: scale(1.09) translateY(calc(var(--hero-shift, 0px) - 4px)); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

@media (max-width: 1120px) {
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-inner { grid-template-columns: minmax(280px, 400px) 1fr; }
}

@media (max-width: 920px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(2, 20, 41, 0.97);
    border: 1px solid rgba(236,223,193,0.18);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(250,249,240,0.10);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }

  .hero { min-height: 820px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 560px; }
  .founder-inner { grid-template-columns: 1fr; }
  .conversation-grid { grid-template-columns: 1fr; min-height: auto; }
  .conversation-spacer { min-height: 200px; }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 32px, 1280px);
    --header-h: 84px;
  }
  body { font-size: 15px; }
  .site-header { padding-inline: 16px; }
  .site-header.is-scrolled { height: 72px; }
  .hero { min-height: 760px; }
  .hero-bg { background-position: 66% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2,20,41,0.95) 0%, rgba(2,20,41,0.74) 55%, rgba(2,20,41,0.46) 100%),
      linear-gradient(180deg, rgba(2,20,41,0.18), rgba(2,20,41,0.92));
  }
  .hero-copy {
    padding-inline-start: 0;
    padding-block: 120px 72px;
  }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  h2 { font-size: clamp(32px, 8vw, 44px); }
  .btn { width: 100%; justify-content: center; }

  .values {
    padding: 76px 0;
  }
  .section-intro { margin-bottom: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .value-card { padding: 24px 18px 20px; }

  .founder {
    padding: 72px 0;
  }
  .founder-photo { min-height: 400px; }
  .founder-copy { padding: 8px 0 0; }
  .signature-image { width: min(280px, 90%); }

  .conversation {
    padding: 74px 0;
    background-position: 72% center;
  }
  .conversation-spacer { min-height: 180px; }
  .conversation-copy { padding-inline-start: 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-line { width: 100%; height: 1px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 1100px) {
  .founder::after {
    right: clamp(10px, 3vw, 28px);
    bottom: 14px;
    width: clamp(160px, 26vw, 260px);
    opacity: 0.68;
  }
}

@media (max-width: 720px) {
  .founder::after {
    right: 8px;
    bottom: 8px;
    width: clamp(120px, 32vw, 170px);
    opacity: 0.62;
  }
}
