

:root {
  --ink: #0a2420;
  --ink-soft: #143b35;
  --forest: #174f45;
  --sage: #8db3a5;
  --mint: #dcece5;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --coral: #e77a66;
  --coral-deep: #b94e3c;
  --gold: #d7b36a;
  --text: #17312d;
  --muted: #60756f;
  --line: rgba(20, 74, 64, 0.14);
  --shadow: 0 30px 90px rgba(10, 36, 32, 0.14);
  --radius: 28px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(231,122,102,.10), transparent 32rem),
    radial-gradient(circle at 95% 8%, rgba(141,179,165,.16), transparent 34rem),
    var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: rgba(231,122,102,.25); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 18px; color: var(--coral-deep); font-size: .76rem;
  font-weight: 850; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.display {
  margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7.2vw, 7.2rem); line-height: .94; letter-spacing: -.06em;
  text-wrap: balance;
}
.h2 {
  margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.045em;
  text-wrap: balance;
}
.lead { max-width: 680px; color: var(--muted); font-size: clamp(1.06rem, 1.8vw, 1.28rem); }
.muted { color: var(--muted); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  font-size: .93rem; font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; box-shadow: 0 15px 35px rgba(10,36,32,.2); }
.button-primary:hover { background: var(--forest); box-shadow: 0 20px 46px rgba(10,36,32,.24); }
.button-light { background: rgba(255,255,255,.75); border-color: rgba(10,36,32,.12); backdrop-filter: blur(16px); }
.button-coral { background: var(--coral); color: #fff; box-shadow: 0 14px 36px rgba(185,78,60,.22); }
.button-small { min-height: 42px; padding-inline: 17px; }

.site-header {
  position: fixed; z-index: 50; top: 14px; left: 0; right: 0;
  width: min(1180px, calc(100% - 28px)); margin: auto;
  border: 1px solid rgba(255,255,255,.6); border-radius: 999px;
  background: rgba(255,253,249,.76); backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 12px 35px rgba(10,36,32,.08);
}
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 66px; padding: 8px 12px 8px 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-family: Georgia, serif; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .9rem; font-weight: 720; }
.nav-links a:not(.button) { color: #36534d; }
.nav-links a:not(.button):hover { color: var(--coral-deep); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; border-radius: 50%; }

.hero { min-height: 100svh; display: grid; align-items: center; padding: 130px 0 70px; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display em { color: var(--coral); font-style: italic; font-weight: 400; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta div { display: grid; gap: 2px; }
.hero-meta strong { color: var(--ink); font-size: 1.05rem; }
.hero-meta span { color: var(--muted); font-size: .82rem; }
.hero-visual-shell { min-height: 660px; position: relative; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.45); backdrop-filter: blur(10px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 25px 24px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--ink); }
.trust-grid span { color: var(--muted); font-size: .86rem; }

.split-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.route-section { position: relative; }
.route-section::before { content:""; position:absolute; inset: 50px 0 auto; height: 520px; background: linear-gradient(120deg, rgba(220,236,229,.75), rgba(255,255,255,.2)); z-index:-1; transform: skewY(-2deg); }

.service-editorial { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card {
  position: relative; overflow: hidden; min-height: 330px; padding: 30px; border: 1px solid var(--line);
  border-radius: var(--radius); background: rgba(255,255,255,.66); backdrop-filter: blur(14px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(231,122,102,.35); }
.service-card:nth-child(1) { grid-column: span 7; }
.service-card:nth-child(2) { grid-column: span 5; background: var(--ink); color: white; }
.service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 4; }
.service-card .index { color: var(--coral); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.service-card h3 { margin: 62px 0 12px; color: var(--ink); font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.02; }
.service-card:nth-child(2) h3 { color: white; }
.service-card p { max-width: 46ch; color: var(--muted); }
.service-card:nth-child(2) p { color: #bdd3cc; }
.service-card .arrow { position: absolute; top: 25px; right: 25px; width: 43px; height: 43px; display:grid; place-items:center; border:1px solid currentColor; border-radius:50%; opacity:.65; }

.workshops { overflow: hidden; background: var(--ink); color: white; }
.workshops .h2 { color: white; }
.workshops .lead { color: #bad0c9; }
.cover-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.cover-card { position: relative; min-height: 520px; border-radius: 30px; overflow: hidden; transform: translateZ(0); }
.cover-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cover-card:hover img { transform: scale(1.045); }
.cover-overlay { position:absolute; inset:auto 0 0; padding: 80px 26px 26px; background: linear-gradient(transparent, rgba(5,27,23,.92)); }
.cover-overlay span { color: #f5b7aa; font-size:.74rem; font-weight:850; letter-spacing:.1em; text-transform:uppercase; }
.cover-overlay h3 { margin: 8px 0; font-family: Georgia, serif; font-size: 2rem; line-height: 1.03; }
.cover-overlay p { color:#c3d8d1; font-size:.9rem; }

.process-grid { display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center; }
.process-steps { display:grid; gap: 10px; }
.process-step { display:grid; grid-template-columns: 60px 1fr; gap:18px; padding:24px 0; border-bottom:1px solid var(--line); }
.process-step b { color: var(--coral); font-size:.8rem; letter-spacing:.1em; }
.process-step h3 { margin:0 0 5px; color:var(--ink); font-family:Georgia,serif; font-size:1.65rem; }
.process-step p { margin:0; color:var(--muted); }
.quote-panel { position:relative; min-height:560px; padding:50px; display:flex; flex-direction:column; justify-content:flex-end; border-radius:38px; overflow:hidden; background:linear-gradient(145deg,#dbe9e3,#f7e2da); }
.quote-panel::before { content:""; position:absolute; width:370px; height:370px; top:-120px; right:-100px; border:1px solid rgba(20,74,64,.25); border-radius:50%; box-shadow:0 0 0 45px rgba(255,255,255,.18),0 0 0 90px rgba(255,255,255,.12); }
.quote-panel blockquote { position:relative; margin:0; color:var(--ink); font-family:Georgia,serif; font-size:clamp(2rem,4vw,3.7rem); line-height:1.02; letter-spacing:-.04em; }
.quote-panel small { position:relative; margin-top:24px; color:var(--muted); }

.about-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.about-portrait { min-height:640px; padding:24px; border-radius:42px; background:linear-gradient(145deg,var(--mint),#f5ddd4); position:relative; overflow:hidden; }
.about-portrait img { width:100%; height:100%; object-fit:cover; border-radius:28px; }
.photo-note { position:absolute; left:42px; right:42px; bottom:42px; padding:18px; border-radius:18px; background:rgba(255,255,255,.82); backdrop-filter:blur(14px); color:var(--ink); font-size:.86rem; }
.credentials { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:28px 0; }
.credentials span { padding:13px 15px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.55); color:var(--ink); font-size:.88rem; font-weight:700; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:45px; }
.blog-card { display:flex; flex-direction:column; min-height:390px; padding:27px; border:1px solid var(--line); border-radius:26px; background:rgba(255,255,255,.64); transition:transform .24s ease,box-shadow .24s ease; }
.blog-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.blog-card .category { color:var(--coral-deep); font-size:.74rem; text-transform:uppercase; font-weight:900; letter-spacing:.09em; }
.blog-card h3 { margin:50px 0 14px; color:var(--ink); font-family:Georgia,serif; font-size:1.8rem; line-height:1.06; }
.blog-card p { color:var(--muted); }
.blog-card footer { margin-top:auto; display:flex; justify-content:space-between; gap:12px; color:var(--muted); font-size:.8rem; }

.cta-panel { position:relative; overflow:hidden; padding:75px; border-radius:42px; background:var(--coral); color:white; }
.cta-panel::after { content:""; position:absolute; width:430px; height:430px; right:-160px; top:-180px; border:1px solid rgba(255,255,255,.35); border-radius:50%; box-shadow:0 0 0 60px rgba(255,255,255,.08),0 0 0 120px rgba(255,255,255,.05); }
.cta-panel .h2 { color:white; max-width:800px; position:relative; z-index:1; }
.cta-panel p { color:#ffe3dd; max-width:640px; position:relative; z-index:1; }
.cta-panel .button { position:relative; z-index:1; margin-top:15px; }

.site-footer { padding:70px 0 35px; background:#071d19; color:#c5d9d2; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:60px; }
.footer-grid h3 { color:white; font-family:Georgia,serif; font-size:1.75rem; }
.footer-grid h4 { color:#fff; }
.footer-links { display:grid; gap:9px; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:55px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); color:#78958c; font-size:.82rem; }

.blog-hero { padding:170px 0 80px; }
.blog-list { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; padding-bottom:100px; }
.article { width:min(780px,calc(100% - 38px)); margin:0 auto; padding:170px 0 100px; }
.article-header { margin-bottom:55px; }
.article-header h1 { margin:12px 0 20px; color:var(--ink); font-family:Georgia,serif; font-size:clamp(2.8rem,6vw,5.5rem); line-height:.98; letter-spacing:-.05em; }
.article-meta { display:flex; gap:16px; flex-wrap:wrap; color:var(--muted); font-size:.86rem; }
.prose { color:#294540; font-size:1.07rem; }
.prose h2 { margin-top:2.4em; color:var(--ink); font-family:Georgia,serif; font-size:2rem; line-height:1.08; }
.prose h3 { margin-top:2em; color:var(--ink); font-size:1.3rem; }
.prose a { color:var(--coral-deep); text-decoration:underline; text-underline-offset:3px; }
.prose blockquote { margin:2em 0; padding:20px 24px; border-left:3px solid var(--coral); background:#fff7f3; color:#67473f; border-radius:0 16px 16px 0; }
.prose li { margin:.5em 0; }
.source-list { margin-top:55px; padding:28px; border-radius:22px; background:var(--mint); }
.source-list h2 { margin-top:0; }
.crisis-box { margin:35px 0; padding:22px; border-radius:18px; background:#fff0ec; border:1px solid #f0c3b9; color:#704137; }

@media (max-width: 980px) {
  .hero-grid,.split-heading,.process-grid,.about-grid { grid-template-columns:1fr; gap:38px; }
  .hero { padding-top:130px; }
  .hero-visual-shell { min-height:520px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-grid div:nth-child(2) { border-right:0; }
  .service-card:nth-child(n) { grid-column:span 6; }
  .cover-grid,.blog-grid,.blog-list { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :first-child { grid-column:1/-1; }
}
@media (max-width: 760px) {
  .container { width:min(100% - 26px,1180px); }
  .section { padding:82px 0; }
  .site-header { top:8px; width:calc(100% - 16px); }
  .brand span:last-child { display:none; }
  .menu-toggle { display:grid; place-items:center; }
  .nav-links { position:fixed; inset:82px 12px auto; display:none; padding:22px; border:1px solid var(--line); border-radius:24px; background:rgba(255,253,249,.97); box-shadow:var(--shadow); }
  .nav-links.open { display:grid; }
  .hero { min-height:auto; padding:120px 0 55px; }
  .hero-visual-shell { min-height:430px; }
  .hero-meta { gap:16px; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-grid div { border-right:0; border-bottom:1px solid var(--line); }
  .service-editorial { grid-template-columns:1fr; }
  .service-card:nth-child(n) { grid-column:auto; min-height:290px; }
  .cover-grid,.blog-grid,.blog-list { grid-template-columns:1fr; }
  .cover-card { min-height:460px; }
  .quote-panel { min-height:460px; padding:32px; }
  .about-portrait { min-height:500px; }
  .credentials { grid-template-columns:1fr; }
  .cta-panel { padding:45px 26px; border-radius:30px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-grid > :first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; } }

.hero-visual-static{position:absolute;inset:0;overflow:hidden;border-radius:44px;background:linear-gradient(145deg,#d8ebe3,#f4d9d0 48%,#e8d7ab);box-shadow:0 35px 90px rgba(10,36,32,.18)}.hero-visual-static .blob{position:absolute;inset:8%;border:1px solid rgba(10,36,32,.18);border-radius:46% 54% 52% 48%/46% 41% 59% 54%;background:rgba(255,255,255,.22);animation:floatblob 14s ease-in-out infinite}.hero-visual-static .orbit{position:absolute;border:1px solid rgba(10,36,32,.18);border-radius:50%;animation:spin 26s linear infinite}.hero-visual-static .orbit.one{width:530px;height:530px;left:4%;top:4%}.hero-visual-static .orbit.two{width:380px;height:380px;left:22%;top:18%;animation-direction:reverse}.hero-visual-static .dot{position:absolute;width:16px;height:16px;border-radius:50%;background:#e77a66;top:8%;left:58%;box-shadow:0 0 0 8px rgba(255,255,255,.15)}.hero-glass{position:absolute;left:8%;right:8%;bottom:8%;padding:28px;border-radius:26px;background:rgba(255,253,249,.76);border:1px solid rgba(255,255,255,.72);backdrop-filter:blur(20px);box-shadow:0 20px 60px rgba(10,36,32,.12)}@keyframes spin{to{transform:rotate(360deg)}}@keyframes floatblob{50%{transform:rotate(8deg) scale(1.025)}}.route-finder-static{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:18px}.route-list{display:grid;gap:10px}.route-button{display:grid;grid-template-columns:44px 1fr 34px;align-items:center;gap:14px;width:100%;padding:18px;border-radius:18px;border:1px solid rgba(20,74,64,.13);background:rgba(255,255,255,.58);color:#0a2420;text-align:left;cursor:pointer;transition:.22s}.route-button.active{border-color:#e77a66;background:#fff;box-shadow:0 18px 50px rgba(10,36,32,.10)}.route-number{display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:#dcece5;color:#174f45;font-size:.78rem;font-weight:900}.route-button.active .route-number{background:#e77a66;color:#fff}.route-result{min-height:520px;border-radius:28px;padding:34px;background:#0a2420;color:#fff;box-shadow:0 28px 80px rgba(10,36,32,.20);overflow:hidden;position:relative}.route-result h3{margin:18px 0 15px;font-family:Georgia,serif;font-size:clamp(2rem,4vw,3.25rem);line-height:1.02}.route-result p{color:#bdd2cb}.route-steps{display:grid;gap:9px;margin:25px 0}.route-steps span{padding:11px 13px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.05);color:#d9e8e3}.route-result .button{margin-top:20px;width:100%}@media(max-width:880px){.route-finder-static{grid-template-columns:1fr}}