
:root {
  --bg: #f7f3f1;
  --paper: #fffdfb;
  --ink: #302b2d;
  --muted: #756b6f;
  --accent: #8b6f7f;
  --accent-2: #b79aa9;
  --deep: #4e3d47;
  --sage: #aab3a4;
  --line: rgba(78, 61, 71, .13);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(72, 54, 64, .11);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 15px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 112px 0; }
.section-soft { background: rgba(255,255,255,.48); border-block: 1px solid rgba(78,61,71,.05); }

.page-orb { position: fixed; border-radius: 50%; filter: blur(3px); opacity: .35; pointer-events: none; z-index: -1; }
.page-orb--one { width: 420px; height: 420px; right: -180px; top: 90px; background: radial-gradient(circle, rgba(183,154,169,.34), transparent 68%); }
.page-orb--two { width: 360px; height: 360px; left: -160px; bottom: 80px; background: radial-gradient(circle, rgba(170,179,164,.28), transparent 68%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,243,241,.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 40px rgba(56,43,50,.07); border-color: var(--line); background: rgba(247,243,241,.94); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--deep); color: white; font: 600 16px/1 "Playfair Display", serif; box-shadow: 0 8px 24px rgba(78,61,71,.18); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: .96rem; font-weight: 700; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: .92rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; color: #62575c; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--accent); transition: right .25s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 17px; border-radius: 999px; background: var(--deep); color: white; box-shadow: 0 10px 25px rgba(78,61,71,.15); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.7); cursor: pointer; padding: 12px; }
.menu-toggle span { height: 1.5px; background: var(--deep); display: block; margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero { padding-top: 86px; min-height: calc(100vh - 82px); display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 70px; align-items: center; }
.eyebrow { color: var(--accent); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,.77); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.3vw, 6.3rem); line-height: .99; margin-bottom: 28px; max-width: 880px; }
h1 em { color: var(--accent); font-style: italic; }
h2 { font-size: clamp(2.25rem, 4.1vw, 4.2rem); line-height: 1.05; margin-bottom: 18px; }
.hero-lead { font-size: clamp(1.15rem, 1.7vw, 1.38rem); color: #544a4f; max-width: 760px; }
.hero-intro { color: var(--muted); max-width: 700px; font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700; font-size: .95rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--deep); color: white; box-shadow: 0 14px 30px rgba(78,61,71,.18); }
.btn-secondary { background: rgba(255,255,255,.68); border: 1px solid var(--line); color: var(--deep); }
.hero-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 740px; }
.hero-details > div { display: flex; gap: 10px; padding: 14px 12px; border-top: 1px solid var(--line); }
.hero-details p { margin: 0; font-weight: 600; line-height: 1.35; }
.hero-details small { display: block; color: var(--muted); font-weight: 500; margin-bottom: 3px; }
.hero-card { position: relative; padding: 20px; }
.hero-card::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(139,111,127,.22); border-radius: 180px 180px 40px 40px; transform: rotate(3deg); }
.hero-card-inner { position: relative; min-height: 530px; padding: 70px 46px 46px; border-radius: 180px 180px 40px 40px; background: linear-gradient(155deg, #5a4551 0%, #806675 60%, #9f8794 100%); color: white; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; }
.hero-card-inner::before, .hero-card-inner::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.hero-card-inner::before { width: 320px; height: 320px; right: -150px; top: -60px; }
.hero-card-inner::after { width: 250px; height: 250px; left: -130px; bottom: -70px; }
.card-kicker { font-size: .77rem; text-transform: uppercase; letter-spacing: .16em; opacity: .72; }
blockquote { font: italic 600 clamp(2rem, 3.2vw, 3.25rem)/1.12 "Playfair Display", serif; margin: 22px 0 30px; position: relative; z-index: 1; }
.soft-tags { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.soft-tags span { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); padding: 8px 12px; border-radius: 999px; font-size: .86rem; }
.line-art { position: absolute; right: 34px; bottom: 34px; width: 110px; height: 80px; opacity: .45; }
.line-art span { position: absolute; display: block; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; width: 90px; height: 38px; transform: rotate(-24deg); }
.line-art span:nth-child(2) { top: 19px; right: 10px; }
.line-art span:nth-child(3) { top: 38px; right: 20px; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section-heading { max-width: 700px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.section-heading.centered { text-align: center; margin: 0 auto 46px; }
.section-heading.centered .eyebrow { justify-content: center; }
.intro-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: 0 18px 54px rgba(75,58,67,.06); }
.intro-panel > p { font-size: 1.15rem; color: #574d52; }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.approach-card { min-height: 180px; background: linear-gradient(160deg, rgba(139,111,127,.09), rgba(170,179,164,.12)); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.approach-number { color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.approach-card h3 { margin: 28px 0 0; font: 600 1.35rem/1.18 "Playfair Display", serif; }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { min-height: 190px; padding: 22px; background: rgba(255,255,255,.66); border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 18px 38px rgba(64,49,57,.08); background: white; }
.service-card span { font-size: .75rem; color: var(--accent); letter-spacing: .1em; font-weight: 700; }
.service-card h3 { margin: 40px 0 0; font: 600 1.1rem/1.22 "Playfair Display", serif; }

.statement-section { padding-top: 22px; }
.statement-card { border-radius: var(--radius-lg); padding: 55px; background: linear-gradient(135deg, #4b3943, #7b6270); color: white; display: grid; grid-template-columns: 1fr .85fr; gap: 60px; align-items: center; box-shadow: var(--shadow); overflow: hidden; position: relative; }
.statement-card::after { content: ""; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; right: -120px; top: -200px; }
.statement-card h2 { font-size: clamp(2.1rem, 3.7vw, 3.8rem); margin: 0; }
.statement-card > p { color: rgba(255,255,255,.83); font-size: 1.08rem; margin: 0; position: relative; z-index: 1; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.info-card { padding: 28px; border-radius: var(--radius-md); background: var(--paper); border: 1px solid var(--line); min-height: 180px; transition: transform .22s ease, box-shadow .22s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(67,51,60,.07); }
.info-icon { font-size: 1.55rem; display: block; margin-bottom: 24px; }
.info-card small { color: var(--muted); display: block; margin-bottom: 4px; }
.info-card h3 { font-size: 1.08rem; margin: 0; }
.info-card a { border-bottom: 1px solid rgba(78,61,71,.26); }

.formation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(var(--accent), rgba(139,111,127,.1)); }
.timeline-item { position: relative; padding: 0 0 36px 18px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -32px; top: 7px; width: 13px; height: 13px; border-radius: 50%; background: var(--bg); border: 3px solid var(--accent); box-shadow: 0 0 0 5px var(--bg); }
.timeline-item small { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .72rem; }
.timeline-item h3 { font: 600 1.55rem/1.22 "Playfair Display", serif; margin: 5px 0 7px; }
.timeline-item p { color: var(--muted); margin: 0; }

.modalities-section { padding-top: 45px; }
.modalities-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 900px; margin: 0 auto; }
.modality-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px; text-align: center; }
.modality-icon { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; font-size: 1.7rem; background: rgba(139,111,127,.09); }
.modality-card h3 { font: 600 1.8rem/1.1 "Playfair Display", serif; margin-bottom: 8px; }
.modality-card p { color: var(--muted); margin-bottom: 15px; }
.modality-card span { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(170,179,164,.16); font-size: .85rem; }

.contact-section { padding-top: 35px; }
.contact-card { background: linear-gradient(135deg, #51404a, #806675); color: white; border-radius: 38px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; box-shadow: var(--shadow); }
.contact-card h2 { margin-bottom: 10px; }
.contact-card p { color: rgba(255,255,255,.78); font-size: 1.06rem; }
.contact-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: rgba(255,255,255,.82); font-size: .9rem; }
.contact-actions { display: grid; gap: 10px; min-width: 250px; }
.btn-light { background: white; color: var(--deep); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.3); color: white; }

.site-footer { padding: 34px 0 92px; }
.footer-grid { border-top: 1px solid var(--line); padding-top: 28px; display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 30px; align-items: start; color: var(--muted); font-size: .9rem; }
.footer-grid strong { color: var(--ink); }
.footer-grid p { margin: 0; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; }
.footer-links a:hover { color: var(--accent); }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 45; display: inline-flex; align-items: center; gap: 9px; background: var(--deep); color: white; border-radius: 999px; padding: 13px 18px; box-shadow: 0 16px 36px rgba(55,41,49,.26); font-size: .88rem; transition: transform .2s ease; }
.floating-contact:hover { transform: translateY(-3px); }

/* Content is visible by default so the page never depends on JavaScript to render. */
.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: revealIn .65s ease both; }
@keyframes revealIn {
  from { opacity: .01; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.services-grid .reveal:nth-child(2), .info-grid .reveal:nth-child(2) { transition-delay: .06s; }
.services-grid .reveal:nth-child(3), .info-grid .reveal:nth-child(3) { transition-delay: .12s; }
.services-grid .reveal:nth-child(4), .info-grid .reveal:nth-child(4) { transition-delay: .18s; }
.services-grid .reveal:nth-child(5), .info-grid .reveal:nth-child(5) { transition-delay: .24s; }
.services-grid .reveal:nth-child(6), .info-grid .reveal:nth-child(6) { transition-delay: .08s; }

@media (max-width: 1050px) {
  .main-nav { gap: 15px; font-size: .86rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: 0; }
  .hero-card { max-width: 680px; width: 100%; margin: 0 auto; }
  .hero-card-inner { min-height: 450px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .split-grid, .formation-grid { gap: 48px; }
}

@media (max-width: 800px) {
  .section { padding: 84px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: rgba(255,253,251,.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(52,40,47,.18);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    visibility: hidden;
    transition: .24s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .main-nav a { padding: 13px 12px; border-radius: 12px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { padding-top: 55px; }
  .hero-details { grid-template-columns: 1fr; }
  .split-grid, .formation-grid, .statement-card, .contact-card { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .statement-card, .contact-card { padding: 42px 32px; gap: 28px; }
  .contact-actions { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-links { align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 74px; }
  .main-nav { top: 74px; }
  .brand-copy strong { font-size: .84rem; }
  .brand-copy small { font-size: .72rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { padding-top: 44px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-card { padding: 8px; }
  .hero-card::before { border-radius: 120px 120px 30px 30px; }
  .hero-card-inner { min-height: 420px; padding: 58px 28px 32px; border-radius: 120px 120px 30px 30px; }
  blockquote { font-size: 2rem; }
  .approach-grid, .services-grid, .info-grid, .modalities-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 150px; }
  .intro-panel, .modality-card { padding: 26px; }
  .statement-card, .contact-card { border-radius: 26px; padding: 34px 24px; }
  .floating-contact { right: 14px; bottom: 14px; padding: 12px 14px; }
  .floating-contact strong { font-size: .82rem; }
}

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