@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700&display=swap");

:root {
  --ink: #17213b;
  --ink-soft: #4c5366;
  --cream: #fff9ef;
  --paper: #f7f0e5;
  --white: #fffdf9;
  --blue: #2454d7;
  --blue-dark: #173da7;
  --coral: #ff684d;
  --mint: #9fdbc5;
  --yellow: #ffcb46;
  --line: rgba(23, 33, 59, 0.16);
  --shadow: 0 24px 70px rgba(23, 33, 59, 0.13);
  --shell: min(1280px, calc(100% - 80px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

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

em {
  color: var(--coral);
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  border-radius: 12px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 239, 0.91);
  box-shadow: 0 12px 32px rgba(23, 33, 59, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
}

.brand b {
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-weight: 800;
  gap: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 var(--ink);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
  gap: 12px;
}

.button-primary {
  color: white;
  background: var(--blue);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.45);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: white;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-menu {
  visibility: hidden;
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  background: rgba(23, 33, 59, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.mobile-menu-card {
  display: flex;
  width: min(460px, 100%);
  height: 100%;
  max-height: calc(100dvh - 24px);
  padding: 24px;
  flex-direction: column;
  color: white;
  background: var(--blue);
  border-radius: 28px;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-card {
  transform: none;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

.menu-close {
  min-height: 44px;
  padding: 0 12px;
  color: white;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close span {
  margin-left: 8px;
  font-size: 28px;
  line-height: 1;
  vertical-align: -2px;
}

.mobile-menu nav {
  display: grid;
  margin-block: auto;
  padding-block: 20px;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 58px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 5vw, 24px);
}

.mobile-menu nav span {
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.mobile-menu-actions {
  display: grid;
  gap: 14px;
}

.mobile-menu-actions .button {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.mobile-menu-actions .text-link {
  min-height: 44px;
  text-align: center;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(900px, 100vh);
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 70% 14%, rgba(159, 219, 197, 0.35), transparent 27%),
    linear-gradient(135deg, var(--cream), #fffdf8 50%, #f5eee4);
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: center;
  min-height: 570px;
  gap: clamp(30px, 6vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-number {
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 16px 0 0 var(--yellow);
}

.hero h1 {
  max-width: 850px;
  margin: 22px 0 26px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(50px, 5.45vw, 88px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin-top: 34px;
  gap: 14px;
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.hero-note b {
  color: var(--ink);
}

.note-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: white;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-width: 0;
  min-height: 520px;
  perspective: 1000px;
}

.speech-card,
.speech-bubble,
.hero-sticker {
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 0.18s ease-out;
}

.speech-card-main {
  position: absolute;
  z-index: 2;
  top: 70px;
  left: 1%;
  width: 86%;
  min-height: 340px;
  padding: clamp(30px, 4vw, 56px);
  color: white;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 42px 42px 42px 6px;
  box-shadow: 18px 20px 0 var(--yellow);
  rotate: -3deg;
}

.sound-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.syllables {
  display: flex;
  margin: 54px 0 42px;
  gap: 8px;
}

.syllables span {
  display: grid;
  min-width: 28%;
  min-height: 96px;
  padding: 14px;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 18px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 2.4vw, 37px);
  font-weight: 700;
  box-shadow: 5px 6px 0 var(--ink);
}

.syllables span:nth-child(1) {
  color: white;
  background: var(--coral);
}

.syllables span:nth-child(3) {
  background: var(--mint);
}

.wave {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
}

.wave i {
  width: 6px;
  height: 18%;
  background: white;
  border-radius: 6px;
  animation: sound 1.4s ease-in-out infinite alternate;
}

.wave i:nth-child(3n) { height: 82%; animation-delay: -0.4s; }
.wave i:nth-child(2n) { height: 48%; animation-delay: -0.8s; }
.wave i:nth-child(5n) { height: 100%; animation-delay: -1.1s; }

@keyframes sound {
  to { height: 95%; }
}

.speech-bubble {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  box-shadow: 7px 8px 0 var(--ink);
}

.bubble-blue {
  top: 12px;
  right: 0;
  width: 146px;
  height: 104px;
  color: white;
  background: var(--coral);
  border-radius: 50% 50% 48% 12%;
  rotate: 8deg;
}

.bubble-mint {
  right: 4%;
  bottom: 10px;
  width: 162px;
  height: 106px;
  background: var(--mint);
  border-radius: 50% 12% 50% 50%;
  rotate: -5deg;
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  right: -18px;
  bottom: 132px;
  display: grid;
  width: 100px;
  height: 100px;
  place-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: "Unbounded", sans-serif;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  rotate: 9deg;
}

.hero-sticker small {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.hero-info-card {
  position: absolute;
  z-index: 3;
  bottom: 2px;
  left: 0;
  display: flex;
  min-width: 270px;
  padding: 16px 20px;
  align-items: center;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 7px 0 var(--ink);
  gap: 12px;
}

.hero-info-card p {
  margin: 0;
  font-size: 12px;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: #39ad77;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(57, 173, 119, 0.15);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(23, 33, 59, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 2%;
  right: 4%;
  width: 430px;
  height: 430px;
}

.hero-orbit-two {
  right: 26%;
  bottom: 8%;
  width: 180px;
  height: 180px;
}

.hero-ribbon {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 50px;
  color: var(--ink);
  background: var(--yellow);
  border-block: 2px solid var(--ink);
  overflow: clip;
  rotate: -1deg;
}

.hero-ribbon-track {
  display: flex;
  width: max-content;
  min-height: 50px;
  align-items: center;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.ribbon-set {
  display: flex;
  flex: 0 0 auto;
  min-height: 50px;
  align-items: center;
}

.hero-ribbon span {
  padding-inline: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.hero-ribbon i {
  color: var(--coral);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-12.5%); }
}

.section {
  padding: clamp(90px, 9vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  margin-bottom: 54px;
  gap: 40px;
}

.section-heading h2,
.approach h2,
.about h2,
.faq h2,
.contact-heading h2 {
  max-width: 850px;
  margin: 16px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(37px, 4.2vw, 66px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  min-width: 0;
  min-height: 355px;
  padding: clamp(24px, 2.4vw, 34px);
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  z-index: 1;
  box-shadow: 10px 12px 0 var(--ink);
  transform: translateY(-8px) rotate(-0.5deg);
}

.service-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 38px;
  font-size: 11px;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
}

.service-card h3 {
  max-width: 330px;
  margin-bottom: 14px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(21px, 1.8vw, 28px);
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 28px;
  font-size: 14px;
}

.service-card a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.service-coral { background: var(--coral); }
.service-blue { color: white; background: var(--blue); }
.service-mint { background: var(--mint); }
.service-yellow { background: var(--yellow); }
.service-cream { background: var(--paper); }
.service-outline { background: white; border-style: dashed; }

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 26px 30px;
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 24px;
  gap: 30px;
}

.section-cta p {
  display: grid;
  margin: 0;
}

.section-cta p span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-cta p b {
  font-size: 17px;
}

.approach {
  color: white;
  background: var(--ink);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
}

.approach .section-number,
.contact-heading .section-number {
  color: rgba(255, 255, 255, 0.66);
}

.approach-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.approach-intro p {
  max-width: 430px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.approach .button {
  border-color: white;
}

.approach .button:hover {
  box-shadow: 0 8px 0 white;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 170px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  gap: 28px;
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.steps > li > span {
  color: var(--mint);
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
}

.steps h3 {
  margin-bottom: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(21px, 2vw, 29px);
  letter-spacing: -0.03em;
}

.steps p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.about-shape {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 48% 52% 60% 40% / 45% 40% 60% 55%;
  box-shadow: 15px 16px 0 var(--blue);
  rotate: -4deg;
}

.about-board {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(86%, 430px);
  min-height: 390px;
  padding: 34px;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 32px 32px 32px 6px;
  box-shadow: 11px 12px 0 var(--ink);
  rotate: 2deg;
}

.about-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-board-top > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.about-mark {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.about-syllables {
  display: flex;
  gap: 7px;
}

.about-syllables span {
  display: grid;
  min-width: 0;
  min-height: 78px;
  flex: 1 1 0;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 700;
  box-shadow: 4px 5px 0 var(--ink);
}

.about-syllables span:first-child {
  color: white;
  background: var(--coral);
}

.about-syllables span:last-child {
  background: var(--mint);
}

.about-wave {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
}

.about-wave i {
  width: 7px;
  height: 35%;
  background: white;
  border-radius: 7px;
}

.about-wave i:nth-child(2n) { height: 72%; }
.about-wave i:nth-child(3n) { height: 100%; }
.about-wave i:nth-child(5n) { height: 52%; }

.about-caption {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 30px;
  padding: 18px 22px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 18px;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  box-shadow: 7px 8px 0 var(--ink);
  rotate: 4deg;
}

.about-copy > p {
  max-width: 700px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  gap: 18px;
}

.facts div {
  min-width: 0;
}

.facts b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.05em;
}

.facts span {
  color: var(--ink-soft);
  font-size: 12px;
}

.about-copy .small-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(159, 219, 197, 0.36);
  border-left: 4px solid var(--blue);
  font-size: 13px;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq-intro {
  align-self: start;
}

.faq-intro p {
  max-width: 380px;
  margin-top: 24px;
  color: var(--ink-soft);
}

.accordion details {
  border-top: 2px solid var(--ink);
}

.accordion details:last-child {
  border-bottom: 2px solid var(--ink);
}

.accordion summary {
  display: grid;
  grid-template-columns: 1fr 44px;
  min-height: 94px;
  align-items: center;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.03em;
  list-style: none;
  cursor: pointer;
  gap: 20px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  transition: rotate 0.2s ease;
}

.accordion details[open] summary span {
  rotate: 45deg;
}

.accordion details > div {
  max-width: 680px;
  padding: 0 70px 28px 0;
  color: var(--ink-soft);
}

.accordion details p {
  margin: 0;
}

.contacts {
  padding: 40px 0 0;
  background: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(40px, 6vw, 80px);
  color: white;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 44px 44px 0 0;
  gap: clamp(40px, 7vw, 100px);
}

.contact-heading h2 {
  color: white;
  font-size: clamp(37px, 3.8vw, 60px);
  overflow-wrap: anywhere;
}

.contact-heading h2 em {
  color: var(--yellow);
}

.contact-heading p {
  max-width: 430px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
}

.contact-list > a {
  position: relative;
  display: grid;
  min-height: 100px;
  padding: 20px 60px 20px 0;
  align-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-list > a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-list span,
.address-card span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list b {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.04em;
}

.contact-list i {
  position: absolute;
  top: 50%;
  right: 8px;
  font-size: 24px;
  font-style: normal;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.contact-list a:hover i {
  transform: translate(6px, -8px);
}

.address-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  margin-top: 10px;
  padding: 26px 30px;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 24px;
  gap: 30px;
}

.address-card span {
  color: var(--blue-dark);
}

.address-card b {
  display: block;
  font-size: 17px;
}

.address-card p {
  margin: 2px 0 0;
  font-size: 13px;
}

.footer {
  padding: 56px 0 100px;
  color: white;
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 40px;
}

.brand-footer img {
  border-color: white;
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.6);
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer nav a,
.footer-vk {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.footer-vk {
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  gap: 24px;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-dock {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1000px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto auto; }
  .header-call { justify-self: end; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr); gap: 20px; }
  .hero h1 { font-size: clamp(48px, 6.2vw, 68px); }
  .speech-card-main { left: 4%; width: 82%; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { gap: 60px; }
  .about-visual { min-height: 460px; }
  .contact-panel { grid-template-columns: 1fr 1.25fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 720px); }
  .header-inner { min-height: 72px; gap: 14px; }
  .header-call { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand img { width: 46px; height: 46px; }
  .hero { min-height: auto; padding: 112px 0 86px; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(45px, 10vw, 72px); }
  .hero-art { min-height: 500px; width: min(640px, 100%); margin-inline: auto; }
  .speech-card-main { width: 82%; left: 4%; }
  .section-heading,
  .approach-grid,
  .about-grid,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .section-heading { align-items: start; gap: 20px; }
  .section-heading > p { max-width: 580px; }
  .approach-intro { position: static; }
  .approach-intro h2 br { display: none; }
  .about-visual { width: min(520px, 100%); margin-inline: auto; order: 2; }
  .about-copy { order: 1; }
  .faq-grid { gap: 50px; }
  .contact-panel { padding: 48px 34px; border-radius: 32px 32px 0 0; }
  .address-card { grid-template-columns: 1fr 1fr; }
  .address-card .button { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer nav { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 76px; }
  body { font-size: 15px; padding-bottom: 70px; }
  .brand b { font-size: 13px; }
  .brand small { font-size: 8px; }
  .hero { padding: 100px 0 78px; }
  .eyebrow { font-size: 10px; }
  .hero h1 {
    margin: 18px 0 22px;
    font-size: clamp(38px, 12.8vw, 56px);
    line-height: 1.02;
  }
  .hero-lead { font-size: 16px; line-height: 1.55; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-note { margin-top: 24px; align-items: flex-start; }
  .hero-art { min-height: 400px; margin-top: 4px; }
  .speech-card-main {
    top: 48px;
    left: 2%;
    width: 87%;
    min-height: 272px;
    padding: 26px 22px;
    border-radius: 26px 26px 26px 5px;
    box-shadow: 10px 12px 0 var(--yellow);
  }
  .syllables { margin: 40px 0 32px; gap: 5px; }
  .syllables span {
    min-height: 70px;
    padding: 8px;
    border-radius: 12px;
    font-size: clamp(18px, 6.5vw, 26px);
    box-shadow: 3px 4px 0 var(--ink);
  }
  .wave { height: 30px; gap: 4px; }
  .wave i { width: 4px; }
  .bubble-blue {
    top: 2px;
    right: 0;
    width: 106px;
    height: 76px;
    font-size: 12px;
  }
  .bubble-mint {
    right: 2%;
    bottom: 18px;
    width: 116px;
    height: 76px;
    font-size: 12px;
  }
  .hero-sticker {
    right: -2px;
    bottom: 108px;
    width: 74px;
    height: 74px;
    font-size: 19px;
  }
  .hero-info-card {
    bottom: 6px;
    min-width: 220px;
    padding: 12px 14px;
  }
  .hero-info-card p { font-size: 10px; }
  .hero-ribbon span { padding-inline: 18px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .approach h2,
  .about h2,
  .faq h2,
  .contact-heading h2 {
    font-size: clamp(31px, 9.5vw, 43px);
    overflow-wrap: break-word;
  }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .section-cta { align-items: stretch; padding: 22px; flex-direction: column; }
  .section-cta .button { width: 100%; }
  .steps li { grid-template-columns: 40px 1fr; min-height: 0; padding: 26px 0; gap: 10px; }
  .about-visual { min-height: 390px; }
  .about-board {
    width: 88%;
    min-height: 320px;
    padding: 24px;
    border-radius: 24px 24px 24px 6px;
  }
  .about-mark {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }
  .about-syllables span {
    min-height: 64px;
    font-size: clamp(15px, 5vw, 21px);
  }
  .about-caption { right: 0; bottom: 15px; }
  .facts { grid-template-columns: 1fr; }
  .facts div { display: grid; grid-template-columns: 100px 1fr; align-items: center; }
  .facts b { margin: 0; }
  .accordion summary { grid-template-columns: 1fr 40px; min-height: 84px; }
  .accordion details > div { padding-right: 18px; }
  .contact-panel { padding: 38px 20px; }
  .contact-list > a { min-height: 88px; padding-right: 38px; }
  .contact-list b { font-size: clamp(16px, 5vw, 21px); overflow-wrap: anywhere; }
  .address-card { grid-template-columns: 1fr; padding: 22px; }
  .address-card .button { grid-column: auto; width: 100%; }
  .footer { padding-bottom: 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-vk { justify-self: start; }
  .footer nav { display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-dock {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 58px;
    padding: 5px;
    color: white;
    background: var(--ink);
    border: 2px solid var(--cream);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(23, 33, 59, 0.3);
  }
  .mobile-dock a {
    display: flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
    gap: 8px;
  }
  .mobile-dock a:last-child { color: var(--ink); background: var(--mint); }
}

@media (max-width: 350px) {
  :root { --shell: calc(100% - 22px); }
  .brand small { display: none; }
  .hero h1 { font-size: 37px; }
  .hero-art { min-height: 370px; }
  .speech-card-main { min-height: 250px; padding-inline: 16px; }
  .hero-info-card { min-width: 198px; }
  .about-visual { min-height: 330px; }
  .about-board { min-height: 292px; padding: 20px; }
  .about-mark { width: 70px; height: 70px; flex-basis: 70px; }
  .about-caption { font-size: 10px; }
  .footer nav { grid-template-columns: 1fr; }
}

@media (min-width: 1200px) and (max-height: 760px) {
  .header-inner { min-height: 70px; }
  .hero {
    min-height: 720px;
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .hero-grid { min-height: 520px; }
  .hero h1 { font-size: clamp(54px, 5vw, 76px); }
  .hero-lead { margin-bottom: 22px; font-size: 17px; }
  .hero-note { margin-top: 22px; }
  .hero-art { min-height: 480px; }
  .speech-card-main { top: 56px; min-height: 315px; }
  .syllables { margin: 45px 0 34px; }
}

@media (min-width: 1900px) {
  :root { --shell: min(1440px, calc(100% - 120px)); }
  .hero h1 { font-size: 88px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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