:root {
  --blush: #ede3df;
  --blush-deep: #e0d3ce;
  --blush-light: #f5efec;
  --mocha: #7a6560;
  --mocha-dark: #4a3c39;
  --mocha-light: #a8968f;
  --white: #fdfaf9;
  --border: rgba(122,101,96,0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--white); color: var(--mocha-dark); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: transparent;
  transition: background 0.4s, border-color 0.4s;
}
#main-nav.scrolled {
  background: rgba(253,250,249,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 46px; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s; }
#main-nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
#main-nav.scrolled .nav-links a { color: var(--mocha); }
#main-nav.scrolled .nav-links a:hover { color: var(--mocha-dark); }
.nav-links .nav-cta {
  border: 1px solid rgba(255,255,255,0.35); padding: 9px 22px;
  color: rgba(255,255,255,0.85) !important; transition: all 0.2s;
}
.nav-links .nav-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff !important; }
#main-nav.scrolled .nav-links .nav-cta {
  border-color: var(--mocha-dark); color: var(--mocha-dark) !important; background: transparent;
}
#main-nav.scrolled .nav-links .nav-cta:hover {
  background: var(--mocha-dark); color: var(--white) !important;
}

/* ══ HERO — dark full-viewport, large serif centred ══ */
#home {
  min-height: 100vh;
  background: var(--mocha-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle photo in background with dark overlay */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width:65%;height:auto;
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  opacity:0.09;
  filter:brightness(10);
  pointer-events:none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(74,60,57,0.6) 0%, rgba(74,60,57,0.9) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 60px;
  max-width: 860px;
}
.hero-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(237,227,223,0.45); font-weight: 400;
  margin-bottom: 40px; display: block;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 300; line-height: 0.95;
  color: var(--blush-light);
  letter-spacing: -2px;
  margin-bottom: 48px;
}
.hero-h1 em { font-style: italic; color: var(--blush); opacity: 0.8; }
.hero-sub {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(237,227,223,0.5);
  max-width: 520px; margin: 0 auto 52px;
}
.hero-ctas {
  display: flex; gap: 24px; justify-content: center; align-items: center;
}
.btn-hero-primary {
  display: inline-block;
  background: var(--blush-light); color: var(--mocha-dark);
  padding: 16px 40px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; transition: all 0.25s;
}
.btn-hero-primary:hover { background: #fff; }
.btn-hero-ghost {
  display: inline-block;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(237,227,223,0.5); border-bottom: 1px solid rgba(237,227,223,0.25);
  padding-bottom: 2px; transition: all 0.2s;
}
.btn-hero-ghost:hover { color: var(--blush-light); border-color: rgba(237,227,223,0.6); }

/* Scroll indicator */
.hero-scroll-line {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-scroll-line span {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(237,227,223,0.3);
}
.hero-scroll-line::after {
  content: '';
  display: block; width: 1px; height: 48px;
  background: rgba(237,227,223,0.2);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(1.15); }
}

/* ══ INTRO BAR — 3 facts, full width, dark strip ══ */
.intro-bar {
  background: var(--mocha);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(237,227,223,0.08);
}
.intro-bar-item {
  padding: 28px 48px; border-right: 1px solid rgba(237,227,223,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.intro-bar-item:last-child { border-right: none; }
.intro-bar-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--blush-light); white-space: nowrap;
 text-align: center;}
.intro-bar-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(237,227,223,0.4); line-height: 1.5;
 text-align: center;}

/* ══ ABOUT — massive left label, text right ══ */
#about {
  padding: 140px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; align-items: start;
}
.about-left-label {
  display: flex; flex-direction: column; gap: 24px; padding-top: 8px;
}
.section-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--mocha-light); font-weight: 400;
}
.about-big-num { margin-top: 24px; }
.about-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; line-height: 1.1; color: var(--mocha-dark);
  letter-spacing: -0.5px; margin-bottom: 36px;
}
.about-right h2 em { font-style: italic; color: var(--mocha); }
.about-right p {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: var(--mocha); margin-bottom: 20px; max-width: 580px;
}
.about-pull {
  margin-top: 48px; padding: 36px 0 0;
  border-top: 1px solid var(--border);
}
.about-pull blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; font-weight: 300;
  color: var(--mocha-dark); line-height: 1.5; max-width: 520px;
}
.about-pull cite {
  display: block; margin-top: 14px;
  font-family: 'Jost', sans-serif; font-style: normal;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mocha-light);
}

/* ══ SERVICES — dark band, cards in a row ══ */
#services {
  background: var(--mocha-dark);
  padding: 0 0 100px;
  border-bottom: 1px solid rgba(237,227,223,0.06);
}
.services-top {
  max-width: 1200px; margin: 0 auto; padding: 100px 60px 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.services-top h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.0; color: var(--blush-light);
  letter-spacing: -0.5px;
}
.services-top h2 em { font-style: italic; color: var(--blush); opacity: 0.7; }
.services-top p {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(237,227,223,0.45); max-width: 420px; align-self: end;
}
/* Service cards — 3 across, border between */
.service-cards {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(237,227,223,0.1);
}
.svc-card {
  padding: 48px 40px 48px 0;
  border-right: 1px solid rgba(237,227,223,0.1);
  padding-right: 48px;
  transition: background 0.2s;
}
.svc-card:first-child { padding-left: 0; }
.svc-card:last-child { border-right: none; padding-right: 0; }
.svc-card + .svc-card { padding-left: 48px; }
.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; color: var(--mocha-light); letter-spacing: 3px;
  margin-bottom: 24px; display: block;
}
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--blush-light);
  line-height: 1.2; margin-bottom: 16px;
}
.svc-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(237,227,223,0.4); margin-bottom: 28px;
}

.svc-list {
  list-style: none;
  margin: 0 0 24px 0;
  display: flex; flex-direction: column; gap: 7px;
}
.svc-list li {
  font-size: 12px; font-weight: 300; line-height: 1.5;
  color: rgba(237,227,223,0.38);
  padding-left: 14px; position: relative;
}
.svc-list li::before {
  content: '—'; position: absolute; left: 0;
  color: rgba(169,150,143,0.5); font-size: 10px;
}
.svc-link {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mocha-light); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(169,150,143,0.4);
  padding-bottom: 2px; transition: all 0.2s;
}
.svc-link:hover { color: var(--blush-light); border-color: var(--blush-light); gap: 12px; }

/* ══ TEAM — left: large portrait, right: bio text ══ */
#founder {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 680px;
  border-bottom: 1px solid var(--border);
}
.team-img-col {
  position: relative; overflow: hidden;
  background: var(--blush-deep);
}
.team-img-col img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: saturate(0.85);
}
.team-text-col {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
}
.team-text-col .section-eyebrow { margin-bottom: 36px; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--mocha-dark);
  letter-spacing: -1px; line-height: 1; margin-bottom: 6px;
}
.team-role {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mocha-light); margin-bottom: 40px;
}
.team-text-col p {
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: var(--mocha); margin-bottom: 16px; max-width: 440px;
}
.team-creds {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0;
}
.cred {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mocha); border: 1px solid var(--border); padding: 7px 14px;
}
.team-quote {
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic; font-weight: 300;
  color: var(--mocha); line-height: 1.55;
}

/* ══ PHILOSOPHY — large type, 4 pillars below ══ */
#philosophy {
  background: var(--blush-light);
  padding: 140px 0;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.phil-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.phil-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}
.phil-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 300; line-height: 0.98; color: var(--mocha-dark);
  letter-spacing: -1px;
}
.phil-header h2 em { font-style: italic; color: var(--mocha); }
.phil-header p {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: var(--mocha); max-width: 440px;
}
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--border);
}
.pillar {
  padding: 44px 0 44px 0; padding-right: 40px;
  border-right: 1px solid var(--border);
}
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar + .pillar { padding-left: 40px; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 3px; color: var(--mocha-light);
  margin-bottom: 20px; display: block;
}
.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--mocha-dark);
  margin-bottom: 14px; line-height: 1.2;
}
.pillar-text {
  font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--mocha);
}

/* ══ PROCESS — white, horizontal numbered ══ */
#process {
  background: var(--white);
  padding: 140px 0;
  border-bottom: 1px solid var(--border);
}
.process-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.process-header {
  margin-bottom: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.process-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 300; line-height: 1.0; color: var(--mocha-dark);
  letter-spacing: -0.5px;
}
.process-header h2 em { font-style: italic; color: var(--mocha); }
.process-header p {
  font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--mocha);
}
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.step {
  padding: 48px 40px 0 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; padding-right: 0; }
.step + .step { padding-left: 40px; }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: var(--blush-deep);
  line-height: 1; margin-bottom: 24px;
}
.step-name {
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--mocha-dark); margin-bottom: 12px;
}
.step-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--mocha);
}

/* ══ CONTACT — dark, centred ══ */
#contact {
  background: var(--mocha-dark);
  padding: 160px 0;
}
.contact-wrap {
  max-width: 720px; margin: 0 auto; padding: 0 60px; text-align: center;
}
.contact-wrap .section-eyebrow {
  color: rgba(237,227,223,0.35); margin-bottom: 32px; display: block;
}
.contact-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 300; line-height: 1.1; color: var(--blush-light);
  letter-spacing: -0.5px; margin-bottom: 24px;
}
.contact-wrap h2 em { font-style: italic; color: var(--blush); opacity: 0.7; }
.contact-wrap p {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(237,227,223,0.45); margin-bottom: 52px;
}
.contact-links {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--blush-light);
  letter-spacing: 0.5px; transition: color 0.2s;
  border-bottom: 1px solid rgba(237,227,223,0.2);
  padding-bottom: 6px;
}
.contact-email:hover { color: var(--blush); border-color: rgba(237,227,223,0.4); }
.contact-addr {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(237,227,223,0.3); line-height: 1.8; margin-top: 8px;
}
.btn-contact {
  display: inline-block; margin-top: 32px;
  background: var(--blush-light); color: var(--mocha-dark);
  padding: 16px 44px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; transition: all 0.25s;
}
.btn-contact:hover { background: var(--white); }

/* ══ FOOTER ══ */
footer{background:#2a2220;color:var(--blush-light);padding:64px 56px 40px;}
.footer-grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:48px;padding-bottom:48px;border-bottom:1px solid rgba(237,227,223,0.12);margin-bottom:32px;}
.footer-brand{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;letter-spacing:3px;text-transform:uppercase;margin-bottom:16px;}
.footer-tagline{font-size:13px;color:rgba(237,227,223,0.45);font-weight:300;line-height:1.7;max-width:240px;}
.footer-col-title{font-size:10px;letter-spacing:2.5px;text-transform:uppercase;color:rgba(237,227,223,0.35);font-weight:400;margin-bottom:20px;}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:10px;}
.footer-links a{font-size:13px;color:rgba(237,227,223,0.6);font-weight:300;text-decoration:none;transition:color 0.2s;}
.footer-links a:hover{color:var(--blush-light);}
.footer-bottom{max-width:1120px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;}
.footer-copy{font-size:11px;color:rgba(237,227,223,0.3);font-weight:300;letter-spacing:0.5px;}
.footer-disclaimer{font-size:11px;color:rgba(237,227,223,0.2);max-width:400px;text-align:right;line-height:1.5;font-weight:300;}
.footer-grid{grid-template-columns:1fr 1fr;}
.footer-bottom{flex-direction:column;gap:16px;text-align:center;}
.footer-disclaimer{text-align:center;}

/* ══ REVEAL ANIMATIONS ══ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══ MOBILE ══ */
@media (max-width: 900px) {
  #main-nav { padding: 0 28px; }
  .hero-content { padding: 0 28px; }
  .hero-h1 { font-size: 56px; letter-spacing: -1px; }
  .intro-bar { grid-template-columns: 1fr; }
  .intro-bar-item { border-right: none; border-bottom: 1px solid rgba(237,227,223,0.1); padding: 24px 28px; }
  .about-grid, .services-top, .phil-header, .process-header {
    grid-template-columns: 1fr; gap: 32px; padding: 0 28px;
  }
  .about-big-num { font-size: 80px; }
  .service-cards { grid-template-columns: 1fr; padding: 0 28px; }
  .svc-card { border-right: none; border-bottom: 1px solid rgba(237,227,223,0.1); padding: 36px 0; }
  .svc-card + .svc-card { padding-left: 0; }
  #founder { grid-template-columns: 1fr; }
  .team-img-col { min-height: 460px; }
  .team-text-col { padding: 60px 28px; border-left: none; border-top: 1px solid var(--border); }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .pillar + .pillar { padding-left: 0; }
  .steps { grid-template-columns: 1fr 1fr; gap: 0; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .step + .step { padding-left: 0; }
  .phil-wrap, .process-wrap { padding: 0 28px; }
  .contact-wrap { padding: 0 28px; }
}

.founder-name{font-family:'Cormorant Garamond',serif;font-size:clamp(40px,5vw,60px);font-weight:300;line-height:1;color:var(--mocha-dark);letter-spacing:-1px;margin-bottom:8px;}
.founder-name em{font-style:italic;color:var(--mocha);}
.founder-title-line{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--mocha-light);margin-bottom:32px;display:block;}
.founder-bio{font-size:14px;font-weight:300;line-height:1.9;color:var(--mocha);margin-bottom:16px;max-width:440px;}
.founder-credentials{display:flex;flex-wrap:wrap;gap:8px;margin-top:28px;}
.credential-tag{font-size:9px;letter-spacing:2px;text-transform:uppercase;color:var(--mocha);border:1px solid var(--border);padding:7px 14px;}