:root {
  --bg: #F5F0EA;
  --beige: #C8BFB0;
  --slate: #8B9BAE;
  --lavender: #A89BB5;
  --text: #3D3835;
  --white: #FFFFFF;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }
p { line-height: 1.85; }
a { text-decoration: none; color: inherit; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.4rem 5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(245,240,234,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,191,176,0.4);
  transition: padding 0.3s var(--ease);
}
nav.scrolled { padding: 1rem 5rem; }
.nav-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  letter-spacing: 0.55em;
  font-size: 1.3rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}
.nav-logo small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--slate);
  margin-top: 0.3rem;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-weight: 300;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0.65;
  transition: opacity 0.25s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  background: var(--text) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.6rem !important;
  opacity: 1 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--slate) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.4rem; background: none; border: none;
}
.hamburger span {
  width: 22px; height: 1px; background: var(--text);
  transition: 0.3s var(--ease); display: block;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  border: none;
  text-transform: uppercase;
}
.btn-primary { background: var(--text); color: var(--white); }
.btn-primary:hover { background: var(--slate); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-light { background: var(--white); color: var(--text); }
.btn-light:hover { background: var(--bg); }
.btn-slate { background: var(--slate); color: var(--white); }
.btn-slate:hover { background: #7a8c9e; }

/* ── LAYOUT ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; }
.container-sm { max-width: 780px; margin: 0 auto; }
section { padding: 6rem 4rem; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; width: 2.5rem; height: 1px; background: var(--slate);
}
.divider { width: 4rem; height: 1px; background: var(--beige); margin: 2rem 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.legal-note {
  font-size: 0.75rem; color: var(--text); opacity: 0.4;
  font-style: italic; margin-top: 1.5rem; line-height: 1.6;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: #F5F0EA;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245,240,234,0.06) 0%, rgba(245,240,234,0.18) 100%);
  pointer-events: none;
}
.hero-center {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 9rem 3rem 6rem;
  width: 100%;
}
.hero-eyebrow {
  font-weight: 300; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 2.5rem; height: 1px; background: var(--beige); flex-shrink: 0;
}
.hero h1 {
  margin-bottom: 2rem; color: var(--text);
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.hero-sub {
  font-size: 1.1rem; max-width: 560px;
  color: var(--text); opacity: 0.7;
  margin: 0 auto 3rem; font-weight: 300; line-height: 1.85;
}
.hero-ctas { display: flex; gap: 1.2rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-micro {
  font-size: 0.73rem; letter-spacing: 0.1em;
  color: var(--text); opacity: 0.42; margin-top: 1.8rem;
}
.hero-micro span { margin: 0 0.6rem; }

/* ── PAGE HERO (secondary pages) ────────────── */
.page-hero {
  padding: 9rem 5rem 5rem;
  background: var(--bg);
}
.page-hero-label {
  font-weight: 300; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.page-hero-label::before { content: ''; width: 2.5rem; height: 1px; background: var(--slate); }
.page-hero h1 { max-width: 680px; margin-bottom: 1.5rem; }
.page-hero .intro { max-width: 620px; opacity: 0.68; font-size: 1.05rem; font-weight: 300; }

/* ── CARDS ───────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--white);
  padding: 2.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(61,56,53,0.07); }
.card-icon {
  width: 2.2rem; height: 2.2rem; margin-bottom: 1.5rem;
  color: var(--slate); stroke: var(--slate); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.card p { font-size: 0.88rem; opacity: 0.68; }

/* ── STATS ───────────────────────────────────── */
.stats-section { background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.stat { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300; color: var(--slate); line-height: 1; margin-bottom: 1rem;
}
.stat p { font-size: 0.88rem; opacity: 0.65; max-width: 200px; margin: 0 auto; }

/* ── CTA BAND ────────────────────────────────── */
.cta-band { background: var(--slate); text-align: center; padding: 6rem 4rem; }
.cta-band h2 { color: var(--white); margin-bottom: 1.5rem; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 3rem; font-size: 1rem; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-q {
  width: 100%; text-align: left;
  padding: 1.6rem 0;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--text);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--slate); }
.faq-arrow {
  width: 1.3rem; height: 1.3rem; flex-shrink: 0;
  transition: transform 0.35s var(--ease); color: var(--slate);
  stroke: var(--slate); fill: none; stroke-width: 2;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s; }
.faq-a.open { max-height: 400px; padding-bottom: 1.6rem; }
.faq-a p { font-size: 0.92rem; opacity: 0.7; line-height: 1.85; padding-right: 4rem; }

/* ── ABOUT SHORT ─────────────────────────────── */
.about-short-section { background: var(--bg); }
.portrait-placeholder {
  aspect-ratio: 3/4; background: linear-gradient(145deg, #E0D8CE, #C8BFB0);
  display: flex; align-items: flex-end; padding: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.9rem; color: var(--text); opacity: 0.5;
}

/* ── NOT LIST ────────────────────────────────── */
.not-list {
  background: var(--bg); padding: 2.5rem; margin-top: 2rem;
}
.not-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(200,191,176,0.5);
  font-size: 0.92rem; opacity: 0.72;
}
.not-item:last-child { border-bottom: none; }
.not-x { color: var(--beige); font-size: 1.2rem; font-weight: 300; }

/* ── REPORTS ─────────────────────────────────── */
.report-list { margin-top: 2rem; }
.report-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(200,191,176,0.4);
}
.report-item:last-child { border-bottom: none; }
.report-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate); margin-top: 0.6rem; flex-shrink: 0;
}
.report-item p { font-size: 0.92rem; opacity: 0.75; }

/* ── PROFILE CARDS ───────────────────────────── */
.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.profile-card {
  background: var(--white); padding: 2.5rem;
  border-left: 3px solid var(--beige);
  transition: border-color 0.3s, transform 0.3s;
}
.profile-card:hover { border-left-color: var(--slate); transform: translateX(4px); }
.profile-card h3 { font-size: 1.15rem; margin-bottom: 0.85rem; }
.profile-card p { font-size: 0.88rem; opacity: 0.7; }
.profile-card.enterprise {
  background: var(--bg); border: 1px dashed var(--beige); border-left: 3px solid var(--lavender);
}
.profile-card.enterprise:hover { border-left-color: var(--lavender); }

/* ── MOMENTS (experience) ────────────────────── */
.moments-list { margin-top: 3rem; }
.moment {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--beige); align-items: start;
}
.moment:last-child { border-bottom: none; }
.moment-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--beige); line-height: 1;
}
.moment h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.moment p { font-size: 0.9rem; opacity: 0.7; }

/* ── VALUES ──────────────────────────────────── */
.values-list { margin-top: 3rem; }
.value-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--beige); align-items: start;
}
.value-item:last-child { border-bottom: none; }
.value-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--slate);
}
.value-text { font-size: 0.92rem; opacity: 0.72; }

/* ── CONTACT ─────────────────────────────────── */
.contact-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem;
}
.contact-card {
  background: var(--white); padding: 3rem 2.5rem; text-align: center;
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.contact-card p { font-size: 0.88rem; opacity: 0.68; margin-bottom: 2.5rem; }
.calendly-placeholder {
  background: var(--bg); border: 1px dashed var(--beige);
  padding: 4rem 2rem; text-align: center; margin-top: 3rem;
}
.calendly-placeholder h3 { font-size: 1.4rem; margin-bottom: 1rem; opacity: 0.7; }
.calendly-placeholder p { font-size: 0.85rem; opacity: 0.45; font-style: italic; }

/* ── FORM ────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-full { grid-column: 1 / -1; }
.form-group label {
  display: block; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1.1rem;
  background: var(--bg); border: 1px solid var(--beige);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.25s; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--slate);
}
.form-group textarea { min-height: 120px; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.78rem; opacity: 0.6; margin: 1.25rem 0 1.5rem;
}
.form-check input { width: auto; margin-top: 0.15rem; flex-shrink: 0; }

/* ── BLOG ────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card {
  background: var(--white); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(61,56,53,0.08); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.blog-thumb-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--slate); opacity: 0.5;
}
.blog-content { padding: 2rem; }
.blog-tag {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; opacity: 0.6; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--text); color: var(--white); padding: 5rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 100; letter-spacing: 0.55em; font-size: 1.3rem;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.95rem;
  opacity: 0.45; margin-bottom: 1.5rem;
}
.footer-legal { font-size: 0.75rem; opacity: 0.35; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-weight: 300; font-size: 0.68rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.4; margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.85rem; opacity: 0.55; cursor: pointer;
  transition: opacity 0.25s; color: var(--white);
}
.footer-col ul li a:hover, .footer-col ul li span:hover { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; opacity: 0.3;
}
.social-row { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-btn {
  width: 2.4rem; height: 2.4rem; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.25s, opacity 0.25s;
  opacity: 0.5;
}
.social-btn:hover { opacity: 1; border-color: rgba(255,255,255,0.5); }
.social-btn svg { width: 1rem; height: 1rem; fill: var(--white); }

/* ── ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ── PAGES ───────────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 1.4rem 2.5rem; }
  nav.scrolled { padding: 1rem 2.5rem; }
  section { padding: 5rem 2.5rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-center { padding: 8rem 2rem 5rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { gap: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .profiles-grid { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg); padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--beige); gap: 1.5rem; z-index: 199;
  }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 8rem 2rem 4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .value-item { grid-template-columns: 1fr; gap: 0.5rem; }
  footer { padding: 3rem 2rem; }
}
