@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --black:        #1D1D1F;
  --gray-bg:      #F5F5F7;
  --gray-text:    #6E6E73;
  --gray-border:  #D2D2D7;
  --gray-mid:     #AEAEB2;
  --gray-light:   #E8E8ED;

  /* Brand accent — swap to terracotta #C4532A when ready */
  --accent:       #1D1D1F;
  --accent-muted: #6E6E73;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 980px;

  --max-width: 960px;
  --section-pad: 96px 48px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--gray-border);
  padding: 0 48px;
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: var(--font-serif); font-size: 18px; letter-spacing: 0.09em; color: var(--black); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; color: var(--gray-text); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); }
.nav-cta {
  font-size: 13px; color: var(--black);
  border: 0.5px solid var(--gray-border);
  padding: 7px 18px; border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gray-bg); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--gray-bg);
  border-top: 0.5px solid var(--gray-border);
  padding: 40px 48px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px;
}
.footer-logo { font-family: var(--font-serif); font-size: 16px; letter-spacing: 0.08em; margin-bottom: 6px; }
.footer-sub { font-size: 12px; color: var(--gray-text); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--gray-text); transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }
.footer-copy { font-size: 11px; color: var(--gray-mid); align-self: flex-end; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: var(--section-pad); }
.section--dark { background: var(--black); color: var(--white); }
.section--gray { background: var(--gray-bg); }
.section--white { background: var(--white); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-text); margin-bottom: 20px; display: block;
}
.section--dark .section-label { color: var(--gray-mid); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.t-hero {
  font-family: var(--font-serif); font-size: clamp(40px, 6vw, 64px);
  font-weight: 400; line-height: 1.18; letter-spacing: -0.01em;
}
.t-headline {
  font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px);
  font-weight: 400; line-height: 1.25;
}
.t-subhead {
  font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400; line-height: 1.55;
}
.t-body { font-size: 15px; line-height: 1.85; color: var(--gray-text); }
.t-small { font-size: 13px; line-height: 1.75; color: var(--gray-text); }
.t-wordmark {
  font-family: var(--font-serif); font-size: clamp(52px, 8vw, 88px);
  font-weight: 400; letter-spacing: 0.07em;
}

/* ─── DIVIDER LINE ───────────────────────────────────────── */
.line-divider { width: 1px; height: 52px; background: var(--gray-border); margin: 0 auto; }
.section--dark .line-divider { background: #3D3D3F; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn { display: inline-block; padding: 13px 32px; font-size: 13px; border-radius: var(--radius-pill); cursor: pointer; transition: all 0.2s; border: none; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #3D3D3F; }
.btn-outline { background: transparent; color: var(--black); border: 0.5px solid var(--gray-border); }
.btn-outline:hover { background: var(--gray-bg); }
.btn-outline-white { background: transparent; color: var(--white); border: 0.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── TEXT LINK ──────────────────────────────────────────── */
.text-link { font-size: 14px; color: var(--black); border-bottom: 0.5px solid var(--black); padding-bottom: 2px; display: inline-block; }
.text-link:hover { opacity: 0.6; }

/* ─── PHOTO + QUOTE PLACEHOLDER ──────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px;
}
.section--gray .testimonial-card { background: var(--white); }
.section--white .testimonial-card { background: var(--gray-bg); }
.section--dark .testimonial-card { background: #2D2D2F; }

.photo-placeholder {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gray-light); overflow: hidden; margin-bottom: 18px;
  flex-shrink: 0;
}
.photo-placeholder svg { width: 100%; height: 100%; }
.section--dark .photo-placeholder { background: #3D3D3F; }

.testimonial-quote {
  font-family: var(--font-serif); font-size: 15px; font-style: italic;
  color: var(--black); line-height: 1.65; margin-bottom: 16px;
}
.section--dark .testimonial-quote { color: #E8E8ED; }
.testimonial-name { font-size: 13px; color: var(--black); margin-bottom: 2px; }
.testimonial-role { font-size: 11px; color: var(--gray-text); }
.section--dark .testimonial-name { color: var(--white); }

/* ─── VIDEO PLACEHOLDER ──────────────────────────────────── */
.video-placeholder {
  width: 100%; aspect-ratio: 16/7;
  background: var(--black); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 40px; overflow: hidden; position: relative;
}
.video-play {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
}
.video-play-icon {
  width: 0; height: 0;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  border-left: 16px solid rgba(255,255,255,0.75); margin-left: 4px;
}
.video-label { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.14em; text-transform: uppercase; }

/* ─── INSIGHT CARDS ──────────────────────────────────────── */
.insight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--gray-border); border-radius: var(--radius-md); overflow: hidden; }
.insight-card { background: var(--white); padding: 28px 24px; }
.section--dark .insight-card { background: #2D2D2F; }
.insight-quote { font-family: var(--font-serif); font-size: 15px; font-style: italic; line-height: 1.65; margin-bottom: 16px; }
.section--dark .insight-quote { color: #E8E8ED; }
.insight-tag { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-text); }

/* ─── FORK SPLIT ─────────────────────────────────────────── */
.fork { display: grid; grid-template-columns: 1fr 1fr; }
.fork-pane { padding: 64px 48px; }
.fork-work { background: var(--black); color: var(--white); }
.fork-life { background: var(--gray-bg); }
.fork-work .t-small { color: var(--gray-mid); }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero { padding: 112px 48px 96px; text-align: center; }
.hero-dark { background: var(--black); color: var(--white); }
.hero-dark .section-label { color: var(--gray-mid); }
.hero-dark .t-body { color: var(--gray-mid); }
.hero-white { background: var(--white); }
.hero-gray { background: var(--gray-bg); }

/* ─── PRINCIPLES ─────────────────────────────────────────── */
.principles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.principle-number { font-family: var(--font-serif); font-size: 40px; color: var(--gray-light); margin-bottom: 12px; }
.section--dark .principle-number { color: #3D3D3F; }

/* ─── FORM ───────────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-label { font-size: 12px; color: var(--gray-text); margin-bottom: 8px; display: block; letter-spacing: 0.04em; }
.form-input {
  width: 100%; padding: 14px 16px; font-size: 15px; font-family: var(--font-sans);
  border: 0.5px solid var(--gray-border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--black); outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--black); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.form-radio {
  padding: 10px 20px; border: 0.5px solid var(--gray-border);
  border-radius: var(--radius-pill); font-size: 13px; cursor: pointer;
  transition: all 0.2s;
}
.form-radio:hover { border-color: var(--black); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 80px 24px 64px; }
  .fork { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 28px; padding: 36px 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
