:root {
  --bg: #f4f8f5;
  --surface: #ffffff;
  --surface-soft: #e9f2ed;
  --ink: #17312f;
  --muted: #607572;
  --brand: #1d4f4a;
  --brand-2: #39766d;
  --accent: #c5a66a;
  --line: rgba(29,79,74,.14);
  --shadow: 0 22px 60px rgba(25,63,59,.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,248,245,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(29,79,74,.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: 20px;
  box-shadow: 0 8px 20px rgba(29,79,74,.2);
}
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { font-size: 16px; letter-spacing: -.02em; }
.brand-text small { color: var(--muted); margin-top: 4px; font-size: 12px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-size: 14px; font-weight: 700; color: #405e5b; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--accent); transition: .25s; }
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; width: 45px; height: 42px; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--brand); margin: 6px 0; border-radius: 99px; transition: .25s; }

.hero { position: relative; min-height: 780px; display: flex; align-items: center; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background: radial-gradient(circle at 15% 10%, rgba(197,166,106,.15), transparent 28%), linear-gradient(135deg, #f6faf7 0%, #eef5f1 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--brand-2); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #dceee9; }
.hero h1 { margin: 20px 0 22px; font-size: clamp(56px, 7vw, 96px); line-height: .94; letter-spacing: -.055em; }
.hero h1 span { display: block; color: var(--brand-2); font-weight: 500; }
.hero-lead { max-width: 690px; font-size: clamp(19px, 2vw, 24px); color: #4f6865; margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 14px 30px rgba(29,79,74,.22); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(29,79,74,.3); }
.btn-secondary { background: rgba(255,255,255,.72); border: 1px solid var(--line); color: var(--brand); }
.btn-light { background: #fff; color: var(--brand); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.hero-tags span { background: rgba(255,255,255,.72); border: 1px solid var(--line); color: #4c6663; font-size: 12px; font-weight: 700; padding: 8px 12px; border-radius: 999px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.main-card {
  width: min(420px, 86vw); aspect-ratio: .86; border-radius: 54px; padding: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.94), rgba(226,240,233,.92));
  border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.main-card::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(197,166,106,.13); right: -90px; bottom: -80px; }
.abstract-head { height: 270px; border-radius: 34px; background: linear-gradient(145deg, var(--brand), #2d6a62); position: relative; overflow: hidden; }
.abstract-head::before { content: ""; position: absolute; width: 190px; height: 230px; border: 2px solid rgba(255,255,255,.5); border-radius: 48% 52% 45% 55%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.line { position: absolute; width: 88px; height: 2px; background: rgba(255,255,255,.7); border-radius: 20px; left: 52%; transform-origin: left center; }
.l1 { top: 35%; transform: rotate(18deg); }
.l2 { top: 49%; transform: rotate(-6deg); width: 104px; }
.l3 { top: 62%; transform: rotate(12deg); width: 72px; }
.dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #d8bd87; }
.d1 { left: 42%; top: 42%; } .d2 { left: 64%; top: 57%; }
.visual-copy { padding: 26px 6px 4px; display: grid; }
.visual-copy span { color: var(--muted); font-size: 13px; }
.visual-copy strong { font-size: 30px; letter-spacing: -.035em; margin: 2px 0; }
.visual-copy small { color: var(--brand-2); font-weight: 700; }
.mini-card { position: absolute; z-index: 2; padding: 12px 18px; border-radius: 16px; background: rgba(255,255,255,.92); border: 1px solid rgba(29,79,74,.08); box-shadow: 0 16px 34px rgba(25,63,59,.12); font-weight: 800; font-size: 13px; }
.card-a { top: 76px; left: 0; }.card-b { right: -4px; top: 180px; }.card-c { bottom: 74px; left: 28px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(.2px); z-index: -2; }
.orb-one { width: 180px; height: 180px; background: rgba(57,118,109,.08); right: 8%; top: 16%; }
.orb-two { width: 120px; height: 120px; border: 1px solid rgba(197,166,106,.26); right: 38%; bottom: 12%; }

.quick-info { margin-top: -42px; position: relative; z-index: 6; }
.info-strip { background: #fff; border-radius: 22px; box-shadow: 0 18px 50px rgba(25,63,59,.1); border: 1px solid rgba(29,79,74,.08); display: grid; grid-template-columns: repeat(3, 1fr); padding: 24px 28px; }
.info-strip > div { padding: 6px 26px; border-right: 1px solid var(--line); display: grid; gap: 3px; }
.info-strip > div:last-child { border-right: 0; }
.info-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.info-strip strong, .info-strip a { font-size: 16px; font-weight: 800; }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .hypnosis-copy h2, .contact-copy h2 { margin: 12px 0 12px; font-size: clamp(38px, 5vw, 60px); line-height: 1.02; letter-spacing: -.045em; }
.section-heading p, .contact-copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(180deg, #fff, #f9fbfa); display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(25,63,59,.09); border-color: rgba(57,118,109,.28); }
.service-icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--surface-soft); color: var(--brand); font-weight: 900; font-size: 12px; }
.service-card h3 { margin: 0; font-size: 21px; line-height: 1.15; letter-spacing: -.025em; }

.hypnosis { background: #fff; padding-top: 0; }
.hypnosis-panel { background: linear-gradient(135deg, #183f3b 0%, #2c675f 100%); color: #fff; min-height: 420px; border-radius: var(--radius-lg); display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; overflow: hidden; box-shadow: var(--shadow); }
.hypnosis-art { min-height: 420px; position: relative; display: grid; place-items: center; }
.ring { position: absolute; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.r1 { width: 110px; height: 110px; }.r2 { width: 210px; height: 210px; }.r3 { width: 320px; height: 320px; }
.center-dot { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 18px rgba(197,166,106,.11); }
.hypnosis-copy { padding: 54px 60px 54px 20px; }
.hypnosis-copy h2 { max-width: 650px; margin-top: 18px; }

.people { background: var(--bg); }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person-card { padding: 38px; min-height: 240px; background: #fff; border: 1px solid var(--line); border-radius: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.person-card.featured { background: var(--brand); color: #fff; }
.person-symbol { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-soft); color: var(--accent); font-size: 30px; }
.featured .person-symbol { background: rgba(255,255,255,.1); }
.person-card h3 { font-size: 31px; margin: 30px 0 0; letter-spacing: -.035em; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: stretch; }
.contact-copy, .social-card { border-radius: var(--radius-lg); }
.contact-copy { padding: 46px 0; }
.contact-list { margin-top: 34px; display: grid; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(197,166,106,.12); flex: 0 0 auto; }
.contact-item span:last-child { display: grid; }
.contact-item small { color: var(--muted); font-size: 12px; }
.contact-item strong { font-size: 17px; }
.social-card { padding: 42px; background: linear-gradient(145deg, #edf5f1, #f8fbf9); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.social-card h3 { font-size: 34px; margin: 14px 0 12px; letter-spacing: -.035em; }
.social-card p { color: var(--muted); margin: 0 0 26px; }
.social-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.social-badges span { padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 800; font-size: 13px; }

.closing-cta { background: var(--brand); color: #fff; padding: 52px 0; }
.closing-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.closing-wrap span { color: #cfe4df; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.closing-wrap h2 { margin: 8px 0 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -.04em; }

.site-footer { background: #102f2c; color: rgba(255,255,255,.9); padding: 36px 0 88px; }
.footer-wrap { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 24px; }
.footer-wrap > div:first-child { display: grid; }
.footer-wrap span { color: rgba(255,255,255,.62); font-size: 13px; }
.footer-wrap > a { font-weight: 800; }
.footer-socials { display: flex; gap: 14px; }

.floating-call { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 16px; border-radius: 999px; background: var(--accent); color: #17312f; box-shadow: 0 14px 32px rgba(27,42,40,.24); font-size: 14px; }
.floating-call span { font-size: 18px; }

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

@media (max-width: 980px) {
  .section-pad { padding: 82px 0; }
  .hero { min-height: auto; padding-top: 78px; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 500px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; min-height: 180px; }
  .hypnosis-panel { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { position: sticky; }
  .nav-wrap { min-height: 70px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); left: 14px; right: 14px; display: grid; gap: 0; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: 0 18px 42px rgba(25,63,59,.12); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .22s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 12px; border-radius: 12px; }
  .main-nav a:hover { background: var(--surface-soft); }
  .main-nav a::after { display: none; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { padding-bottom: 90px; }
  .hero h1 { font-size: clamp(54px, 18vw, 74px); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-visual { min-height: 440px; }
  .main-card { width: min(340px, 86vw); border-radius: 40px; }
  .abstract-head { height: 220px; }
  .card-a { left: -4px; top: 54px; }
  .card-b { right: -3px; top: 165px; }
  .card-c { bottom: 44px; left: 4px; }

  .quick-info { margin-top: -26px; }
  .info-strip { grid-template-columns: 1fr; padding: 10px 20px; }
  .info-strip > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 15px 4px; }
  .info-strip > div:last-child { border-bottom: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 160px; }
  .hypnosis-panel { grid-template-columns: 1fr; }
  .hypnosis-art { min-height: 290px; }
  .hypnosis-copy { padding: 10px 28px 42px; }
  .r3 { width: 240px; height: 240px; }.r2 { width: 160px; height: 160px; }
  .people-grid { grid-template-columns: 1fr; }
  .person-card { min-height: 190px; }
  .contact-copy { padding-top: 10px; }
  .social-card { padding: 30px 24px; }
  .closing-wrap { display: grid; }
  .footer-wrap { grid-template-columns: 1fr; gap: 14px; }
  .footer-socials { flex-wrap: wrap; }
}

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