:root {
  --ink: #20363d;
  --ink-soft: #53676c;
  --primary: #395b64;
  --primary-deep: #29464e;
  --sage: #85a6a0;
  --mint: #dcebe7;
  --cream: #f6f4ef;
  --paper: #ffffff;
  --line: rgba(32, 54, 61, .12);
  --shadow: 0 24px 70px rgba(32, 54, 61, .12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-space { padding: 108px 0; }
.section-shell { position: relative; overflow: hidden; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,244,239,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 12px 36px rgba(32,54,61,.06); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; max-width: 340px; font-weight: 750; letter-spacing: -.02em; line-height: 1.15; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; color: var(--primary); background: var(--mint); border-radius: 14px; padding: 8px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .95rem; font-weight: 650; }
.main-nav > a:not(.nav-cta) { color: var(--ink-soft); transition: color .2s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta { background: var(--primary); color: #fff; padding: 11px 18px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; border-radius: 14px; padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 99px; transition: .25s ease; }

.hero { min-height: 720px; display: flex; align-items: center; padding: 88px 0 110px; background: radial-gradient(circle at 85% 18%, rgba(133,166,160,.25), transparent 31%), linear-gradient(180deg, #f8f6f1 0%, #f3f4ef 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 800; color: var(--primary); }
.eyebrow::before, .section-kicker::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.hero h1 { margin: 20px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.6rem, 7vw, 6.8rem); line-height: .92; letter-spacing: -.055em; font-weight: 500; }
.hero h1 span { color: var(--primary); }
.hero-lead { max-width: 610px; margin: 0; color: var(--ink-soft); font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border-radius: 999px; font-weight: 750; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--primary); box-shadow: 0 12px 30px rgba(57,91,100,.18); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 16px 36px rgba(57,91,100,.24); }
.btn-primary svg { width: 19px; }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.btn-secondary:hover { background: #fff; }
.btn-light { background: #fff; color: var(--primary-deep); box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.btn.full { width: 100%; }
.hero-meta { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 560px; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-meta div { display: flex; flex-direction: column; gap: 3px; padding-right: 18px; }
.hero-meta strong { font-size: 1rem; }
.hero-meta span { color: var(--ink-soft); font-size: .82rem; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-card.main-card { width: min(100%, 460px); aspect-ratio: .9; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.88); border-radius: 42px; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; align-items: center; backdrop-filter: blur(12px); }
.line-art { width: 76%; color: var(--primary); opacity: .75; }
.visual-label { margin-top: -15px; font-weight: 800; color: var(--primary-deep); }
.floating-card { position: absolute; background: #fff; border: 1px solid rgba(57,91,100,.08); box-shadow: 0 14px 40px rgba(32,54,61,.12); border-radius: 16px; padding: 13px 16px; display: flex; align-items: center; gap: 9px; font-weight: 750; }
.floating-card p { margin: 0; font-size: .9rem; }
.floating-card .dot { width: 9px; height: 9px; background: var(--sage); border-radius: 50%; box-shadow: 0 0 0 5px var(--mint); }
.floating-one { left: 0; top: 17%; }
.floating-two { right: -5px; top: 30%; }
.floating-three { left: 3%; bottom: 11%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 310px; height: 310px; right: -95px; top: 110px; background: rgba(133,166,160,.16); }
.hero-orb-two { width: 160px; height: 160px; left: -80px; bottom: 70px; background: rgba(220,235,231,.75); }

.intro { background: #fff; }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; }
.intro h2, .section-heading h2, .contact-copy h2, .location-card h2, .audience h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.intro h2 { font-size: clamp(2.3rem, 4vw, 4.2rem); margin: 12px 0 0; }
.intro-text { border-left: 1px solid var(--line); padding-left: 46px; }
.intro-text p { margin: 0 0 20px; color: var(--ink-soft); font-size: 1.16rem; }
.online-pill { display: inline-flex; align-items: center; gap: 9px; font-weight: 750; padding: 10px 14px; border-radius: 999px; background: var(--mint); color: var(--primary-deep); }
.online-pill span, .location-mode span { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }

.services { background: var(--cream); }
.section-heading { max-width: 680px; margin-bottom: 44px; }
.section-heading h2 { margin: 12px 0 14px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.section-heading p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 18px; }
.service-card { grid-column: span 2; min-height: 250px; padding: 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid rgba(32,54,61,.08); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 20px 55px rgba(32,54,61,.10); border-color: rgba(57,91,100,.2); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--mint); color: var(--primary); font-weight: 850; font-size: .82rem; }
.service-card h3 { margin: 54px 0 10px; font-size: 1.35rem; }
.service-card p { margin: 0; color: var(--ink-soft); }

.modality { background: #fff; }
.modality-card { min-height: 500px; display: grid; grid-template-columns: 1fr .9fr; border-radius: var(--radius-xl); overflow: hidden; background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.modality-copy { padding: 72px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.section-kicker.light { color: #dcebe7; }
.modality-copy h2 { margin: 10px 0 20px; font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(4.6rem, 8vw, 8.5rem); letter-spacing: -.06em; line-height: .9; }
.modality-copy p { max-width: 530px; margin: 0 0 32px; color: rgba(255,255,255,.76); font-size: 1.12rem; }
.modality-visual { display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, rgba(220,235,231,.2), transparent 48%); padding: 40px; }
.screen-frame { width: min(100%, 390px); aspect-ratio: 1.2; border: 1px solid rgba(255,255,255,.25); border-radius: 28px; background: rgba(255,255,255,.09); box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); backdrop-filter: blur(5px); overflow: hidden; }
.screen-top { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.screen-top i { width: 8px; height: 8px; background: rgba(255,255,255,.42); border-radius: 50%; }
.screen-content { height: calc(100% - 46px); display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: center; padding: 30px; }
.profile-shape { width: 105px; height: 105px; border-radius: 50% 50% 44% 56% / 58% 44% 56% 42%; background: rgba(220,235,231,.7); }
.screen-lines span { display: block; height: 12px; margin: 16px 0; border-radius: 99px; background: rgba(255,255,255,.25); }
.screen-lines span:nth-child(1) { width: 86%; }
.screen-lines span:nth-child(2) { width: 64%; }
.screen-lines span:nth-child(3) { width: 75%; }

.audience { background: var(--cream); }
.audience-wrap { padding: 52px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.section-heading.compact { margin: 0; }
.section-heading.compact h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 0; }
.audience-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.audience-list span { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 750; }

.location { background: #fff; }
.location-card { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 34px 38px; background: #f8f9f7; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.location-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 20px; background: var(--mint); color: var(--primary); padding: 17px; }
.location-card h2 { margin: 4px 0 0; font-size: 2.7rem; }
.location-mode { display: flex; align-items: center; gap: 8px; font-weight: 750; color: var(--primary-deep); }

.contact { background: #f1f5f2; }
.contact-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: center; }
.contact-copy h2 { margin: 12px 0 20px; font-size: clamp(2.7rem, 5vw, 5rem); }
.contact-copy p { max-width: 620px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.contact-card { background: #fff; padding: 34px; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(32,54,61,.09); }
.contact-label { display: block; color: var(--ink-soft); font-size: .86rem; margin-bottom: 8px; }
.phone-link { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; margin-bottom: 28px; color: var(--primary-deep); }

.closing-band { background: var(--primary-deep); color: #fff; padding: 48px 0; }
.closing-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.closing-grid p { margin: 4px 0; color: rgba(255,255,255,.75); }
.closing-name { color: #fff !important; font-weight: 800; font-size: 1.14rem; }

.site-footer { background: #182b31; color: rgba(255,255,255,.7); padding: 58px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; }
.footer-grid p { margin: 5px 0; }
.footer-brand { color: #fff; font-weight: 800; }
.footer-grid a:hover { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; display: grid; place-items: center; padding: 16px; border-radius: 50%; color: #fff; background: var(--primary); box-shadow: 0 14px 34px rgba(32,54,61,.28); transition: transform .2s ease; }
.floating-contact:hover { transform: translateY(-3px) scale(1.02); }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .hero-grid { gap: 35px; }
  .hero-visual { min-height: 450px; }
  .service-grid { grid-template-columns: repeat(6, 1fr); }
  .service-card { grid-column: span 2; }
  .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
  .modality-copy { padding: 58px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-space { padding: 78px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 82px 14px auto; display: flex; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); opacity: 0; transform: translateY(-10px) scale(.98); pointer-events: none; transition: .22s ease; }
  .main-nav.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .main-nav a { padding: 12px 14px; border-radius: 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 64px; }
  .hero-grid, .intro-grid, .modality-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 420px; }
  .visual-card.main-card { width: min(88%, 430px); }
  .floating-one { left: 2%; }
  .floating-two { right: 1%; }
  .floating-three { left: 7%; }
  .intro-grid { gap: 30px; }
  .intro-text { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; }
  .modality-copy { padding: 50px 36px; }
  .modality-visual { min-height: 350px; }
  .audience-wrap { flex-direction: column; align-items: flex-start; }
  .audience-list { justify-content: flex-start; }
  .contact-grid { gap: 36px; }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 72px; }
  .brand { font-size: .88rem; max-width: 245px; }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .main-nav { top: 72px; }
  .hero { padding: 50px 0 76px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; border-top: 0; padding-top: 0; }
  .hero-meta div { padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.55); }
  .hero-visual { min-height: 330px; }
  .visual-card.main-card { width: 88%; border-radius: 30px; }
  .floating-card { padding: 10px 12px; }
  .floating-card p { font-size: .78rem; }
  .floating-one { top: 11%; left: 0; }
  .floating-two { top: 33%; right: 0; }
  .floating-three { bottom: 8%; left: 0; }
  .section-space { padding: 64px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: auto; }
  .service-card h3 { margin-top: 34px; }
  .modality-card { border-radius: 24px; }
  .modality-copy { padding: 42px 24px; }
  .modality-visual { padding: 24px; min-height: 270px; }
  .screen-content { grid-template-columns: 82px 1fr; padding: 22px; gap: 18px; }
  .profile-shape { width: 80px; height: 80px; }
  .location-card { grid-template-columns: auto 1fr; padding: 28px 22px; }
  .location-mode { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); }
  .contact-card { padding: 28px 22px; }
  .closing-grid, .footer-grid { flex-direction: column; align-items: flex-start; }
  .closing-grid .btn { width: 100%; }
  .footer-nav { gap: 14px 18px; }
  .floating-contact { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

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