
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: "Helvetica Neue", Arial, sans-serif; background: #FDFBF7; color: var(--text); font-size: 1rem; line-height: 1.65; }
:root {
  --warm-white: #FDFBF7; --ivory: #F7F3EC; --linen: #EDE8DF;
  --border: #D8CDC1; --gold: #C9B483;
  --text: #4A4038; --body: #6F645B; --muted: #836F62; --hint: #A69586;
  --serif: "Palatino Linotype", Palatino, Georgia, serif;
}
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,251,247,0.97); border-bottom: 0.5px solid var(--border);
  padding: 0 1.5rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(8px);
}
.nav-logo { font-family: var(--serif); font-size: 16px; color: var(--text); letter-spacing: 0.22em; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; }
.nav-link { font-size: 13px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
button:focus-visible, .stay-input:focus-visible, .lab-btn:focus-visible, .nav-link:focus-visible, .footer-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.hero {
  background: var(--ivory); min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem 4rem;
  border-bottom: 0.5px solid var(--border); position: relative;
}
.hero-eyebrow { font-size: 12px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.75rem; }
.hero-h1 { font-family: var(--serif); font-size: clamp(30px,6vw,52px); color: var(--text); font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-sub { font-size: 16px; color: var(--body); line-height: 2.05; max-width: 420px; margin: 0 auto 3rem; font-weight: 300; }
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 8px; position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-label { font-size: 12px; color: var(--hint); letter-spacing: 0.16em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 30px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
.story-wrap { background: var(--warm-white); }
.story { padding: 4rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.story-img { border-radius: 3px; height: 380px; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 85%; }
.story-eyebrow { font-size: 12px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.story-h2 { font-family: var(--serif); font-size: clamp(18px,2.5vw,24px); color: var(--text); line-height: 1.55; margin-bottom: 1.25rem; font-weight: 400; }
.story-p { font-size: 15px; color: var(--body); line-height: 2; font-weight: 300; margin-bottom: 0.95rem; }
.mission { background: var(--ivory); padding: 4rem 1.5rem; text-align: center; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.gold-rule { width: 28px; height: 0.5px; background: var(--gold); margin: 0 auto 2rem; }
.mission-quote { font-family: var(--serif); font-size: clamp(18px,2.5vw,22px); color: var(--text); line-height: 1.8; max-width: 520px; margin: 0 auto 1.25rem; font-style: italic; }
.mission-attr { font-size: 12px; color: var(--hint); letter-spacing: 0.12em; text-transform: uppercase; }
.pillars { background: var(--warm-white); padding: 4rem 1.5rem; }
.pillars-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; color: var(--hint); letter-spacing: 0.16em; text-transform: uppercase; text-align: center; margin-bottom: 2.5rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.pillar-card { border: 0.5px solid var(--border); border-radius: 3px; padding: 1.75rem 1.25rem; background: var(--warm-white); }
.pillar-card.active { background: var(--ivory); border-color: var(--gold); }
.pillar-cat { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; color: var(--gold); }
.pillar-cat.muted { color: var(--hint); }
.pillar-name { font-family: var(--serif); font-size: 18px; color: var(--text); margin-bottom: 8px; font-weight: 400; }
.pillar-desc { font-size: 13px; color: var(--body); line-height: 1.85; font-weight: 300; }
.pillar-badge { display: inline-block; margin-top: 14px; font-size: 12px; padding: 6px 14px; border-radius: 1px; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-gold { background: var(--gold); color: var(--warm-white); }
.badge-muted { background: var(--linen); color: var(--muted); }
.lab { background: var(--ivory); border-top: 0.5px solid var(--border); padding: 4rem 1.5rem; }
.lab-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.lab-eyebrow { font-size: 12px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.lab-h2 { font-family: var(--serif); font-size: clamp(18px,2.5vw,24px); color: var(--text); line-height: 1.45; margin-bottom: 1.25rem; font-weight: 400; }
.lab-p { font-size: 15px; color: var(--body); line-height: 2; font-weight: 300; margin-bottom: 1.25rem; }
.lab-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.lab-feat { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--body); font-weight: 300; line-height: 1.75; }
.feat-dash { width: 12px; height: 0.5px; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.lab-btn { display: inline-block; border: 0.5px solid var(--muted); color: var(--text); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; padding: 13px 28px; border-radius: 1px; text-decoration: none; }
.lab-img { border-radius: 3px; height: 340px; overflow: hidden; }
.lab-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.founders { background: var(--warm-white); padding: 4rem 1.5rem; }
.founders-inner { max-width: 1100px; margin: 0 auto; }
.founders-section-image { width: 100%; max-width: 520px; height: 300px; margin: 0 auto 2rem; border-radius: 3px; overflow: hidden; }
.founders-section-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; display: block; }
.founders-intro { font-family: var(--serif); font-size: 15px; color: var(--body); line-height: 1.85; text-align: center; max-width: 520px; margin: 0 auto 3rem; font-style: italic; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.founder-card { display: flex; flex-direction: column; }
.founder-photo { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; border: 0.5px solid var(--border); margin-bottom: 1.1rem; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-name { font-family: var(--serif); font-size: 18px; color: var(--text); margin-bottom: 3px; font-weight: 400; }
.founder-role { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.founder-rule { width: 22px; height: 0.5px; background: var(--gold); margin-bottom: 14px; }
.founder-bio { font-size: 15px; color: var(--body); line-height: 1.95; font-weight: 300; margin-bottom: 0.95rem; }
.founder-ig { font-size: 12px; color: var(--hint); margin-top: 6px; letter-spacing: 0.04em; }
.stay { background: var(--linen); padding: 4.5rem 1.5rem; text-align: center; border-top: 0.5px solid #DDD8CE; }
.stay-h { font-family: var(--serif); font-size: clamp(20px,4vw,28px); color: var(--text); margin: 1.75rem 0 0.85rem; font-weight: 400; line-height: 1.3; }
.stay-sub { font-size: 14px; color: var(--body); line-height: 2; font-weight: 300; max-width: 420px; margin: 0 auto 2rem; }
.stay-form { display: flex; flex-wrap: wrap; max-width: 420px; margin: 0 auto 0.75rem; align-items: flex-start; }
.stay-label { flex: 1 1 100%; width: 100%; margin-bottom: 0.5rem; text-align: left; font-size: 13px; color: var(--text); }
.stay-form > [data-netlify-recaptcha] { flex: 1 1 100%; margin-top: 0.75rem; }
.stay-input { flex: 1; min-width: 0; padding: 14px 16px; font-size: 14px; background: var(--warm-white); border: 0.5px solid #C8BDB3; color: var(--text); font-family: inherit; border-radius: 1px 0 0 1px; font-weight: 300; }
.stay-input::placeholder { color: var(--hint); }
.stay-btn { flex-shrink: 0; padding: 14px 20px; background: var(--gold); color: var(--warm-white); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-family: inherit; border: none; cursor: pointer; border-radius: 0 1px 1px 0; white-space: nowrap; min-height: 46px; }
.stay-error { width: 100%; color: #8F2C2C; font-size: 12px; margin-top: 0.75rem; text-align: left; }
.stay-note { font-size: 12px; color: var(--hint); margin-top: 0.75rem; }
.stay-btn:focus, .lab-btn:focus, .nav-link:focus, .footer-link:focus { outline: 3px solid var(--gold); outline-offset: 3px; }
.stay-input:focus { outline: none; box-shadow: none; }
footer { background: var(--ivory); border-top: 0.5px solid var(--border); padding: 2rem 1.5rem; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-bottom: 1.25rem; border-bottom: 0.5px solid var(--border); margin-bottom: 1rem; }
.footer-logo { font-family: var(--serif); font-size: 14px; color: var(--hint); letter-spacing: 0.22em; text-transform: uppercase; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-link { font-size: 13px; color: var(--hint); text-decoration: none; letter-spacing: 0.04em; }
.footer-copy { font-size: 12px; color: var(--hint); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .story { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem; }
  .story-img { height: 260px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .lab-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lab-img { order: -1; height: 240px; }
  .founders-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founders-intro { font-size: 14px; margin-bottom: 2rem; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero { padding: 4rem 1.25rem 3.5rem; min-height: 80vh; }
  .stay-form { flex-direction: column; gap: 8px; }
  .stay-input { border-radius: 1px; }
  .stay-btn { border-radius: 1px; padding: 13px; width: 100%; }
  .mission, .pillars, .lab, .founders, .stay { padding-left: 1.25rem; padding-right: 1.25rem; }
}
