:root {
  color-scheme: light;
  --ink: #1f3340;
  --muted: #607787;
  --line: #d7edf3;
  --paper: #f6fcff;
  --surface: #ffffff;
  --blush: #d8f7ff;
  --sage: #d7f3f0;
  --mist: #e5f3ff;
  --lavender: #edf9fc;
  --honey: #c9f0ff;
  --terracotta: #3e9ec1;
  --teal: #1f8aa5;
  --deep: #173c4a;
  --shadow: 0 24px 70px rgba(31, 82, 105, 0.13);
  --soft-shadow: 0 14px 34px rgba(31, 82, 105, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

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

p {
  color: var(--muted);
}

ul,
ol {
  padding-left: 1.25rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--deep);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  background: var(--deep);
  color: #fdf8f3;
  font-size: 0.93rem;
}

.topbar__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 252, 255, 0.91);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 221, 216, 0.9);
}

.nav {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand__text {
  display: none;
  line-height: 1.15;
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand__role {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav__links a {
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: #e8f7fb;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.18rem;
}

.language-switch a {
  min-width: 42px;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  text-align: center;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.82rem;
}

.language-switch a[aria-current="true"] {
  color: var(--surface);
  background: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 12px 26px rgba(184, 111, 93, 0.25);
}

.button--secondary {
  background: var(--surface);
  color: var(--deep);
  border-color: var(--line);
}

.button--ghost {
  color: var(--deep);
  background: transparent;
  border-color: rgba(31, 63, 59, 0.18);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--deep);
  content: "";
  border-radius: 999px;
}

.menu-button span {
  position: relative;
}

.menu-button span::before {
  position: absolute;
  top: -6px;
}

.menu-button span::after {
  position: absolute;
  top: 6px;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: #eef8fc;
}

.section--mist {
  background: #f0fbfc;
}

.section--answer {
  background: linear-gradient(135deg, #eefbff, #f6fcff);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(216, 247, 255, 0.78), rgba(215, 243, 240, 0.62) 46%, rgba(229, 243, 255, 0.74)),
    radial-gradient(circle at 84% 14%, rgba(201, 240, 255, 0.7), transparent 34%);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 760;
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  margin: 1rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1.02;
  color: var(--deep);
}

.page-hero h1 {
  max-width: 14ch;
}

.hero__lead,
.page-hero__lead {
  max-width: 720px;
  font-size: 1.13rem;
  color: #415057;
}

.hero__actions,
.cta__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.proof-pill {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 0.85rem;
  color: #3c4c52;
  font-size: 0.93rem;
}

.hero-next-step {
  display: grid;
  gap: 0.18rem;
  max-width: 560px;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.hero-next-step strong {
  color: var(--deep);
  font-size: 1rem;
}

.hero-next-step span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
}

.portrait-frame {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: 0.8rem;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 708 / 758;
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
}

.visual-note {
  position: absolute;
  left: -1.25rem;
  bottom: 1.25rem;
  max-width: 235px;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--line);
}

.visual-note strong {
  display: block;
  color: var(--deep);
  font-size: 1rem;
}

.visual-note span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading--with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.section-heading__copy {
  max-width: 760px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep);
  font-size: 2.25rem;
  line-height: 1.12;
}

.section-heading p {
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.testimonial,
.info-card,
.resource-card,
.faq-item,
.timeline-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.service-card {
  display: grid;
  overflow: hidden;
}

.service-card__image {
  aspect-ratio: 16 / 9;
  background: #f3ebe5;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body,
.resource-card,
.info-card,
.testimonial,
.faq-item,
.timeline-item {
  padding: 1.25rem;
}

.service-card h3,
.info-card h3,
.resource-card h2,
.resource-card h3,
.faq-item h3 {
  color: var(--deep);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.service-card p,
.info-card p,
.resource-card p,
.faq-item p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--teal);
}

.section-button {
  margin-top: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split img.section-portrait {
  aspect-ratio: 3 / 4;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #3d4b52;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.answer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 237, 243, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.answer-panel h2 {
  margin: 0.85rem 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--deep);
  font-size: 2rem;
  line-height: 1.14;
}

.answer-panel p {
  margin-bottom: 0;
}

.answer-panel .check-list {
  margin-top: 0.2rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 860px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  color: var(--deep);
  font-weight: 780;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1.25rem 1.2rem;
  margin: 0;
}

.band {
  background: var(--deep);
  color: #fff;
  padding: 3.2rem 0;
}

.band p {
  color: #dbe8df;
}

.band h2 {
  color: #fff;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.14;
  margin-bottom: 0.4rem;
}

.page-hero {
  padding: 4.8rem 0 3.4rem;
  background:
    linear-gradient(118deg, rgba(215, 243, 240, 0.88), rgba(246, 252, 255, 0.92) 48%, rgba(229, 243, 255, 0.88)),
    var(--paper);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.24fr);
  gap: 2rem;
  align-items: center;
}

.page-hero__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.91rem;
  margin-bottom: 0.8rem;
}

.breadcrumbs a {
  color: var(--teal);
  font-weight: 750;
}

.content {
  max-width: 840px;
}

.content h2 {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.18;
  margin-top: 2.5rem;
}

.content h3 {
  color: var(--deep);
  margin-top: 1.6rem;
}

.content p {
  margin-bottom: 1rem;
}

.content a {
  color: var(--teal);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.6rem;
}

.reference-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.reference-card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.reference-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 2rem;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 1rem;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.meta-list li {
  display: grid;
  gap: 0.12rem;
  color: var(--muted);
}

.meta-list strong {
  color: var(--deep);
}

.testimonial blockquote {
  margin: 0;
  color: #344349;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.testimonial cite {
  display: block;
  color: var(--muted);
  font-style: normal;
  margin-top: 0.9rem;
  font-weight: 700;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
}

.timeline-item strong {
  color: var(--terracotta);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.map-embed {
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--lavender);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.map-embed__link {
  display: inline-flex;
  padding: 0.75rem 0.9rem;
  color: var(--teal);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #eefbff;
  color: var(--deep);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: #f0c8c8;
  background: #fff4f4;
  color: #7c2d2d;
}

.form label {
  display: grid;
  gap: 0.25rem;
  color: var(--deep);
  font-weight: 750;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  margin-top: 0.25rem;
  font-size: 0.94rem;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--teal);
}

.consent-field a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer {
  background: #12323e;
  color: #fff;
  padding: 3rem 0 1.4rem;
}

.reels-rail {
  --rail-padding: 0.72rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  z-index: 18;
}

.reels-rail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.reels-rail__title {
  display: grid;
  gap: 0.08rem;
}

.reels-rail__title strong {
  color: var(--deep);
  line-height: 1.15;
}

.reels-rail__title span {
  color: var(--muted);
  font-size: 0.83rem;
}

.reels-rail__link {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
}

.reels-rail__viewport {
  padding: var(--rail-padding);
}

.reels-rail__list {
  display: grid;
  gap: 0.75rem;
}

.reel-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(216, 247, 255, 0.9), rgba(215, 243, 240, 0.85)),
    var(--mist);
}

.reel-card video,
.reel-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.reel-card__overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.45rem;
  padding: 3.2rem 0.75rem 0.75rem;
  background: linear-gradient(transparent, rgba(12, 40, 52, 0.84));
  color: #fff;
}

.reel-card__caption {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.35;
}

.reel-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.reel-sound-button,
.reel-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.reel-sound-button {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  padding: 0.25rem 0.62rem;
}

.reel-open-link {
  color: #fff;
}

.reels-rail__fallback {
  padding: 1rem;
  border-radius: 6px;
  background: var(--lavender);
}

.reels-rail__fallback p {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reels-rail__status {
  padding: 0.85rem 0.95rem;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (min-width: 1180px) {
  body.has-reels-rail main {
    padding-right: 318px;
  }

  .reels-rail {
    position: fixed;
    top: var(--reels-rail-top, 112px);
    right: 1rem;
    bottom: var(--reels-rail-bottom, 1rem);
    width: 286px;
    max-height: calc(100vh - var(--reels-rail-top, 112px) - var(--reels-rail-bottom, 1rem));
  }

  .reels-rail__viewport {
    max-height: calc(100vh - var(--reels-rail-top, 112px) - var(--reels-rail-bottom, 1rem) - 76px);
    overflow: auto;
    scrollbar-width: thin;
  }
}

@media (max-width: 1179px) {
  body.has-reels-rail main {
    padding-right: 0;
  }

  .reels-rail {
    width: min(100% - 2rem, var(--max));
    margin: 2.5rem auto 0;
  }

  .reels-rail__list {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .reel-card {
    min-height: 220px;
  }

  .reel-card video,
  .reel-card img {
    min-height: 220px;
  }
}

.site-footer p,
.site-footer a {
  color: #d8f7ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 2rem;
  padding-top: 1.2rem;
  color: #bfd4cd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}

.footer-bottom__meta {
  display: flex;
  gap: clamp(1.6rem, 3vw, 3rem);
  flex-wrap: wrap;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 247, 255, 0.3);
  border-radius: 999px;
  background: rgba(216, 247, 255, 0.08);
  color: #d8f7ff;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(216, 247, 255, 0.16);
  border-color: rgba(216, 247, 255, 0.52);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.asset-note {
  background: #fff7df;
  color: #69552a;
  border: 1px solid #ecd797;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 0.93rem;
}

@media (max-width: 1040px) {
  .nav {
    min-height: 70px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 0.6rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: grid;
  }

  .nav__links a {
    padding: 0.75rem;
  }

  .nav__actions .button {
    display: none;
  }

  .hero__grid,
  .split,
  .two-column,
  .contact-grid,
  .answer-panel {
    grid-template-columns: 1fr;
  }

  .page-hero__grid,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom__meta {
    gap: 0.65rem 1.5rem;
  }
}

@media (max-width: 760px) {
  .topbar__inner {
    display: grid;
    justify-items: start;
    gap: 0.25rem;
  }

  .brand__role {
    display: none;
  }

  .language-switch a {
    min-width: 38px;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero__proof,
  .grid--3,
  .grid--2,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--with-action {
    display: grid;
    align-items: start;
  }

  .visual-note {
    position: static;
    margin-top: 0.9rem;
    max-width: none;
  }

  .section {
    padding: 3.4rem 0;
  }

  .section-heading h2,
  .content h2 {
    font-size: 1.85rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 128px;
    height: auto;
  }

  .brand__name {
    font-size: 1rem;
  }

  .nav {
    gap: 0.65rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.1rem;
  }

  .hero__actions,
  .cta__actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
