/* =========================================================
THE INNER MAP — FULL CSS
Balanced, calm, premium, neurodivergent-friendly
========================================================= */

:root {
  --bg: #f4f7f6;
  --bg-soft: #ffffff;
  --bg-muted: #e7eeee;
  --bg-panel: #f8faf9;

  --text: #18201f;
  --muted: #5f6f6d;
  --muted-soft: #7a8986;

  --accent: #476a68;
  --accent-dark: #243f3d;
  --accent-soft: #d9e7e5;

  --blue-soft: #dfe8ee;
  --sage: #dfe9df;
  --sand: #eee8dd;
  --warm: #f2eee6;

  --white: #ffffff;

  --border: rgba(24, 32, 31, 0.1);
  --border-strong: rgba(24, 32, 31, 0.18);

  --shadow: 0 28px 80px rgba(24, 32, 31, 0.1);
  --shadow-soft: 0 16px 44px rgba(24, 32, 31, 0.07);

  --radius: 30px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(.nav-toggle:checked) {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-main,
.page-main {
  overflow: hidden;
}

section[id],
main[id] {
  scroll-margin-top: 104px;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 247, 246, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 32, 31, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1004;
}

.text-logo {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.header-logo-img {
  width: 220px;
  max-width: 58vw;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(36, 63, 61, 0.16);
}

.nav-button::after {
  display: none;
}

.nav-button:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobile Toggle */

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1004;
  box-shadow: 0 10px 30px rgba(24, 32, 31, 0.08);
}

.nav-toggle-label span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Type */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 5.8vw, 5.85rem);
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.8vw, 3.45rem);
  line-height: 1.04;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1.04rem;
}

em {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.eyebrow,
.section-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 999px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 14px 30px rgba(36, 63, 61, 0.18);
}

.button-primary:hover {
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(36, 63, 61, 0.22);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-dark);
}

.button-secondary:hover {
  border-color: rgba(71, 106, 104, 0.34);
  background: #fff;
}

/* Hero */

.hero {
  padding: 108px 0 100px;
  background:
    radial-gradient(circle at 12% 10%, rgba(71, 106, 104, 0.12), transparent 32%),
    radial-gradient(circle at 86% 4%, rgba(223, 232, 238, 0.8), transparent 34%),
    linear-gradient(135deg, #f7f9f8 0%, #e7eeee 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.hero-content {
  max-width: 690px;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 0;
  color: #526461;
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-image-wrap {
  position: relative;
  height: clamp(390px, 42vw, 520px);
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(135deg, #dfe8ee 0%, #d9e7e5 100%);
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(24, 32, 31, 0.08), transparent 45%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.24), transparent 45%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.03) contrast(0.96) saturate(0.88);
}

/* Sections */

.section {
  position: relative;
  padding: 120px 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1200px, 90%);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(24, 32, 31, 0.07),
      transparent
    );
}

.statement-section {
  background: var(--bg-soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.two-column p:last-child {
  margin-bottom: 0;
}

.muted-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.62), transparent 28%),
    var(--bg-muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading p {
  max-width: 640px;
  margin-inline: auto;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.card {
  padding: 42px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 32, 31, 0.08);
  border-radius: 34px;
  box-shadow: 0 8px 24px rgba(24, 32, 31, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(71, 106, 104, 0.2);
  box-shadow: 0 28px 70px rgba(24, 32, 31, 0.08);
}

.card-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  line-height: 1.75;
}

/* Lists */

.simple-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.simple-list p {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(24, 32, 31, 0.08);
}

.simple-list p:last-child {
  border: none;
  padding-bottom: 0;
}

.simple-list strong {
  color: var(--accent-dark);
}

/* Pull Quote */

.pull-quote {
  margin: 42px 0;
  padding-left: 34px;
  border-left: 4px solid var(--accent);
  color: var(--text);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: italic;
  line-height: 1.55;
}

/* Image Section */

.soft-image-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(71, 106, 104, 0.08), transparent 30%),
    linear-gradient(180deg, #f2eee6, #f8faf9);
}

.image-content-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: 82px;
  align-items: center;
}

.soft-image {
  overflow: hidden;
  border-radius: 40px;
  background:
    linear-gradient(135deg, #dfe8ee 0%, #dfe9df 100%);
  box-shadow: var(--shadow);
}

.soft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(0.95) saturate(0.9);
  transition: transform 0.7s ease;
}

.soft-image:hover img {
  transform: scale(1.035);
}

/* Check List */

.check-list {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.check-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.check-item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: Inter, sans-serif;
  font-weight: 800;
}

.check-item p {
  margin: 0;
}

/* Future Topics */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-card {
  padding: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 32, 31, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(71, 106, 104, 0.18);
  box-shadow: 0 24px 60px rgba(24, 32, 31, 0.08);
}

.process-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-card h3 {
  margin-bottom: 14px;
}

.process-card p {
  margin: 0;
  line-height: 1.75;
}

/* Contact / Closing */

.contact-section {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #2f4a48, #203735);
}

.contact-section h2 {
  color: #fff;
}

.contact-section p {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.74);
}

.contact-section .button-primary {
  margin-top: 22px;
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.contact-section .button-primary:hover {
  background: #f8faf9;
}

.contact-small {
  margin-top: 34px;
  font-size: 0.9rem;
}

.contact-small a {
  color: #fff;
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding: 70px 0;
  background: #1d302f;
  text-align: center;
}

.footer-simple {
  max-width: 680px;
  margin: auto;
}

.footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.2rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 24px;
}

.footer-email {
  margin-bottom: 26px;
}

.footer-email a {
  color: #fff;
  font-weight: 700;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 1000px) {
  .hero-grid,
  .two-column,
  .image-content-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    height: 500px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }

  section[id],
  main[id] {
    scroll-margin-top: 82px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    background: rgba(244, 247, 246, 0.98);
  }

  .header-inner {
    min-height: 78px;
    gap: 14px;
  }

  .site-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .text-logo {
    font-size: 1.3rem;
  }

  .nav-toggle-label {
    display: inline-flex;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin-left: 10px;
  }

  .nav-toggle:checked + .nav-toggle-label {
    background: #fff;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 112px 26px 38px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.6), transparent 36%),
      linear-gradient(180deg, #f8faf9, #e7eeee);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(24, 32, 31, 0.1);
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: center;
    text-transform: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.22s ease, border-color 0.22s ease;
  }

  .nav-toggle:checked ~ .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a:hover {
    background: transparent;
    color: var(--accent);
    border-color: rgba(71, 106, 104, 0.26);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    margin-top: 40px;
    border-radius: 999px;
    background: var(--accent-dark);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(36, 63, 61, 0.2);
  }

  .site-nav .nav-button:hover {
    background: var(--accent);
    color: #fff !important;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding: 56px 0 68px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-image-wrap {
    height: 420px;
  }

  .site-footer {
    padding: 52px 0 42px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  p {
    font-size: 1rem;
  }

  .hero-text {
    font-size: 1.12rem;
    line-height: 1.75;
  }

  .card,
  .process-card {
    padding: 30px;
    border-radius: 28px;
  }

  .soft-image {
    border-radius: 30px;
  }

  .image-content-grid {
    gap: 42px;
  }

  .contact-section {
    padding: 90px 0;
  }
}

@media (max-width: 430px) {
  .hero-image-wrap {
    height: 360px;
  }

  .text-logo {
    font-size: 1.18rem;
  }
}