﻿:root {
  --ink: #082033;
  --muted: #66758a;
  --paper: #dcebf4;
  --surface: #ffffff;
  --rose: #00a86b;
  --rose-dark: #078158;
  --aqua: #a1c8d1;
  --mint: #d5e0eb;
  --sun: #f2c94c;
  --line: #d9e5ed;
  --brand-dark: #12394b;
  --brand-soft: #eef6fa;
  --shadow: 0 24px 70px rgba(8, 32, 51, 0.16);
  --shadow-soft: 0 12px 34px rgba(8, 32, 51, 0.09);
  --shadow-lift: 0 28px 80px rgba(8, 32, 51, 0.2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%) 0 0 / 34px 34px,
    radial-gradient(circle at 10% 8%, rgba(34, 167, 132, 0.18), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(18, 57, 75, 0.12), transparent 30%),
    linear-gradient(180deg, #d7edf0 0%, #c7e2e6 44%, #b9d9df 100%);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(232, 242, 248, 0.94);
  border-bottom: 1px solid rgba(189, 212, 225, 0.92);
  box-shadow: 0 6px 24px rgba(8, 32, 51, 0.06);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(161, 200, 209, 0.55);
  box-shadow: 0 18px 48px rgba(8, 32, 51, 0.12);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--rose), var(--aqua), var(--sun));
  box-shadow: 0 0 18px rgba(0, 168, 107, 0.45);
}

.topbar {
  display: none;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.topbar a {
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(8, 32, 51, 0.12));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #344054;
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.1rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--rose-dark);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.has-menu > a {
  padding-right: 0.95rem;
}

.has-menu > a::before {
  content: "";
  position: absolute;
  right: 0.05rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.has-menu:hover > a::before,
.has-menu:focus-within > a::before {
  transform: translateY(-35%) rotate(225deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: -0.7rem;
  z-index: 40;
  display: grid;
  gap: 0.2rem;
  min-width: 250px;
  padding: 0.85rem 0.65rem 0.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 253, 0.98)),
    white;
  border: 1px solid rgba(161, 200, 209, 0.55);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(8, 32, 51, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.75rem;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  min-height: 38px;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  color: var(--brand-dark);
}

.nav-menu a:hover,
.nav-menu a.is-active {
  background: rgba(161, 200, 209, 0.2);
  color: var(--rose-dark);
  transform: none;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

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

.hero {
  min-height: calc(100vh - 106px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(8, 32, 51, 0.88), rgba(18, 57, 75, 0.5) 50%, rgba(161, 200, 209, 0.18)),
    url("assets/hero-enfants-colores.jpg") center / cover;
  color: white;
  padding: 5rem 1.25rem 3rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 48%, transparent 60%),
    linear-gradient(180deg, rgba(8, 32, 51, 0.04), rgba(8, 32, 51, 0.22));
  animation: heroSheen 9s ease-in-out infinite;
}

.page-hero {
  min-height: 360px;
  align-items: center;
  padding: 7rem 1.25rem 4rem;
}

.page-hero .hero-content {
  padding-bottom: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 9rem;
  background: linear-gradient(180deg, transparent, rgba(243, 247, 251, 0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-bottom: clamp(2rem, 6vw, 4rem);
  animation: heroIn 900ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.7rem;
  color: var(--aqua);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 7vw, 5.5rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.hero p {
  max-width: 620px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-list {
  display: grid;
  gap: 0.4rem;
  max-width: 620px;
  padding-left: 1.2rem;
  margin: 1.25rem 0 1.5rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 32, 51, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform 520ms ease;
}

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

.button:hover::after {
  transform: translateX(120%) skewX(-18deg);
}

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

.button-primary:hover {
  background: var(--rose-dark);
}

.button-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.section {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3.8rem, 8vw, 6.5rem) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-grid,
.two-column,
.price,
.contact,
.recruit,
.founder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.rich-text {
  color: #3d4956;
  font-size: 1.05rem;
}

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

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.visual-split.reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.visual-split.reverse .visual-copy {
  order: 2;
}

.visual-split.reverse .visual-media {
  order: 1;
}

.visual-copy {
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border: 1px solid rgba(161, 200, 209, 0.58);
  border-left: 6px solid var(--rose);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 250, 0.96)),
    white;
  box-shadow: var(--shadow-soft);
}

.visual-copy p {
  color: var(--muted);
}

.visual-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #ffffff, var(--brand-soft));
}

.visual-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}

.visual-media img[src*="partner"],
.visual-media img[src*="service-"] {
  object-fit: contain;
  padding: clamp(2rem, 5vw, 4rem);
  background: white;
}

.visual-media img[src*="directeur"] {
  object-position: center top;
}

.visual-media:hover img {
  transform: scale(1.04);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.mini-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(161, 200, 209, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--rose-dark));
  color: white;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(8, 32, 51, 0.16);
}

.trust-strip,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip-devis {
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1.4fr) minmax(0, 0.8fr);
}

.trust-item-wide {
  border-left: 5px solid var(--rose);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 242, 0.94)),
    white;
}

.trust-item,
.benefit-grid article,
.home-cta {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 250, 0.94)),
    white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.trust-item::after,
.benefit-grid article::after,
.aid-grid article::after,
.team-grid article::after,
.activity-grid article::after,
.zone-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 48%);
  transition: opacity 220ms ease;
}

.trust-item:hover::after,
.benefit-grid article:hover::after,
.aid-grid article:hover::after,
.team-grid article:hover::after,
.activity-grid article:hover::after,
.zone-grid article:hover::after {
  opacity: 1;
}

.trust-item strong {
  color: var(--brand-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.trust-item span,
.benefit-grid p,
.home-cta p {
  color: var(--muted);
}

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

.benefit-grid article {
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  border-top: 4px solid rgba(0, 168, 107, 0.76);
}

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

.aid-grid article {
  min-height: 220px;
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 250, 0.9)),
    white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.aid-grid article:nth-child(2n) {
  border-left-color: var(--rose);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 242, 0.92)),
    white;
}

.aid-grid article.aid-feature {
  min-height: 0;
  border-left-color: var(--brand);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 246, 248, 0.96)),
    white;
}

.aid-grid article.aid-feature h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
}

.aid-grid p {
  color: var(--muted);
}

.aid-grid a {
  align-self: end;
  color: var(--brand);
  font-weight: 850;
}

.aid-detail-section {
  position: relative;
}

.aid-detail-list {
  display: grid;
  gap: 1rem;
}

.aid-detail-list details {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 250, 0.92)),
    white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.aid-detail-list details:nth-child(2n) {
  border-left-color: var(--rose);
}

.aid-detail-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: var(--brand-dark);
  cursor: pointer;
  list-style: none;
}

.aid-detail-list summary::-webkit-details-marker {
  display: none;
}

.aid-detail-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 168, 107, 0.12);
  color: var(--brand);
  font-weight: 900;
}

.aid-detail-list details[open] summary::after {
  content: "-";
  background: var(--rose);
  color: white;
}

.aid-detail-list summary strong {
  flex: 1;
  font-size: 1.05rem;
}

.aid-detail-body {
  display: grid;
  gap: 1rem;
  padding: 0 1.25rem 1.25rem;
}

.aid-detail-body p {
  margin: 0;
  color: var(--muted);
}

.aid-detail-body .button {
  justify-self: start;
}

.team-grid,
.activity-grid,
.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-grid article,
.activity-grid article,
.zone-grid article {
  min-height: 180px;
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 250, 0.94)),
    white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.zone-grid article {
  border-bottom: 4px solid rgba(0, 168, 107, 0.68);
}

.team-grid span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--rose-dark));
  color: white;
  font-weight: 900;
}

.activity-grid img {
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef6f8, #ffffff);
}

.child-showcase {
  display: grid;
  gap: 1.4rem;
}

.child-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.child-work-card {
  margin: 0;
  padding: 0.7rem;
  border: 1px solid rgba(161, 200, 209, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 250, 0.96)),
    white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.child-work-card img {
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: 6px;
  background: #eef6f8;
}

.child-work-card figcaption {
  padding: 0.75rem 0.25rem 0.2rem;
  color: var(--brand-dark);
  font-weight: 850;
}

.child-activity-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(213, 224, 235, 0.62), rgba(255, 255, 255, 0.96)),
    white;
  border: 1px solid rgba(161, 200, 209, 0.68);
  border-radius: 8px;
}

.child-activity-band ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--brand-dark);
  font-weight: 760;
}

.child-activity-photos {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 0.7rem;
  align-items: stretch;
}

.child-activity-photos img {
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.child-activity-photos img:first-child {
  grid-row: span 2;
}

.team-grid p,
.activity-grid p,
.zone-grid p {
  color: var(--muted);
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 250, 0.98)),
    white;
}

.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--rose);
  pointer-events: none;
}

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

.service-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.post-card:hover,
.location-grid article:hover,
.steps article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(161, 200, 209, 0.9);
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 1.4rem;
  background: linear-gradient(135deg, #eef6f8, #ffffff);
  transition: transform 260ms ease;
}

.service-card:hover img,
.post-card:hover img,
.activity-grid article:hover img {
  transform: scale(1.04);
}

.service-card div {
  padding: 1.15rem;
}

.service-price {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card a,
.post-card a {
  color: var(--rose-dark);
  font-weight: 850;
}

.service-card p,
.event-panel p,
.price p,
.recruit p,
.contact p,
.founder-copy p,
.quote-tool p,
.blog p,
.newsletter p {
  color: var(--muted);
}

.founder-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.stats article {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 2rem;
  background: linear-gradient(145deg, var(--brand-dark), #0b2938);
  color: white;
  text-align: center;
}

.stats img {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.7rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.stats strong {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
}

.stats span {
  color: #c6eef0;
}

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

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

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

.event-panel,
.price-box,
.recruit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.event-panel {
  padding: 2rem;
  border-left: 6px solid var(--sun);
}

.event-panel img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin: 0.5rem 0 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 250, 0.9)),
    white;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--brand-dark);
  font-weight: 900;
}

.steps img {
  width: 100%;
  max-height: 130px;
  margin-bottom: 1rem;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--brand-soft));
}

.price-box {
  padding: 1rem;
}

dl {
  margin: 0;
}

.price-box div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid var(--line);
}

.price-box div:last-child {
  border-bottom: 0;
}

dt {
  color: #3d4956;
}

dd {
  margin: 0;
  font-weight: 900;
}

.price-box .highlight {
  background: var(--mint);
  border-radius: 8px;
  border-bottom: 0;
  margin-top: 0.5rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.quote-heading {
  margin-bottom: 1.25rem;
}

.quote-layout .quote-result {
  position: sticky;
  top: 120px;
}

.quote-form,
.quote-result,
.newsletter {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 250, 0.94)),
    white;
}

.quote-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.quote-progress span {
  position: relative;
  padding: 0.85rem 0.7rem;
  border-radius: 8px;
  background: #eef5f7;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
  border: 1px solid rgba(161, 200, 209, 0.35);
}

.quote-progress span.is-active,
.quote-progress span.is-complete {
  background: linear-gradient(135deg, var(--mint), #ffffff);
  color: var(--brand-dark);
  border-color: rgba(0, 168, 107, 0.34);
  box-shadow: 0 10px 24px rgba(8, 32, 51, 0.08);
}

.quote-step {
  display: none;
}

.quote-step.is-active {
  display: grid;
  animation: quoteStepIn 240ms ease both;
}

.quote-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.quote-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-form legend {
  padding: 0 0.45rem;
  color: var(--brand-dark);
  font-weight: 900;
}

.quote-form small {
  color: var(--muted);
  font-weight: 650;
}

.quote-result {
  padding: 1.5rem;
  border-top: 5px solid var(--rose);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 242, 0.9)),
    white;
}

.quote-result > span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.quote-result > strong {
  display: block;
  margin: 0.2rem 0 1.25rem;
  color: var(--rose-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.quote-result dl {
  margin-bottom: 1.2rem;
}

.quote-result div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.quote-result .quote-line-feature {
  margin: 0 0 0.35rem;
  padding: 0.8rem;
  border: 0;
  border-radius: 8px;
  background: var(--mint);
  color: var(--brand-dark);
}

.quote-result .quote-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.human-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(161, 200, 209, 0.72);
  border-radius: 8px;
  background: white;
  color: var(--brand-dark);
  font-weight: 900;
}

.human-check input {
  width: 22px;
  height: 22px;
  accent-color: var(--rose);
}

.quote-help {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(161, 200, 209, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-help strong,
.quote-help a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.quote-help span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.post-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.post-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease;
}

.post-card div {
  padding: 1.15rem;
}

.post-card time {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--rose-dark);
  font-weight: 800;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.newsletter-form {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  font-weight: 750;
}

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

.contact-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.8fr));
  gap: 1rem;
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(161, 200, 209, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(238, 246, 250, 0.92)),
    white;
  box-shadow: var(--shadow-soft);
}

.contact-card-main {
  color: white;
  background:
    linear-gradient(145deg, rgba(18, 57, 75, 0.96), rgba(7, 129, 88, 0.88)),
    var(--brand-dark);
}

.contact-card-main .icon-badge {
  background: rgba(255, 255, 255, 0.18);
}

.contact-card-main p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card-main .button {
  justify-self: start;
  margin-top: 0.6rem;
  background: white;
  color: var(--brand-dark);
}

.location-grid article {
  padding: 1.5rem;
  min-height: 150px;
  background: linear-gradient(145deg, var(--brand-dark), #0b2938);
  color: white;
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.location-grid .button {
  margin-top: 1rem;
}

.social-grid,
.review-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.social-grid a,
.review-grid article,
.partner-grid span,
.partner-logo-card {
  display: grid;
  align-content: start;
  min-height: 110px;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  font-weight: 850;
}

.social-card {
  gap: 0.3rem;
  color: var(--brand-dark);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-card > .social-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.45rem;
  color: var(--rose-dark);
}

.social-card > .social-youtube {
  height: 24px;
}

.social-card:hover,
.footer-social a:hover {
  transform: translateY(-3px);
  border-color: var(--aqua);
  box-shadow: var(--shadow);
}

.social-card strong {
  font-size: 1.15rem;
}

.social-card span {
  color: var(--muted);
  font-weight: 700;
}

.review-grid strong {
  color: var(--rose-dark);
  font-size: 1.2rem;
}

.review-grid p {
  color: var(--muted);
  margin: 0.45rem 0 0.8rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--rose-dark));
  color: white;
  font-weight: 900;
}

.review-head div {
  display: grid;
  gap: 0.1rem;
}

.review-head span,
.review-grid small {
  align-self: end;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 850;
}

.review-grid small {
  color: var(--muted);
}

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

.home-reviews {
  position: relative;
}

.home-reviews::before {
  content: "";
  position: absolute;
  inset: clamp(2rem, 5vw, 4rem) -1.25rem auto;
  z-index: -1;
  height: 56%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 57, 75, 0.08), rgba(0, 168, 107, 0.08));
}

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

.partner-grid span,
.partner-logo-card {
  min-height: 86px;
  place-items: center;
  color: var(--brand-dark);
  text-align: center;
}

.partner-logo-card {
  gap: 0.75rem;
  margin: 0;
}

.partner-text-card {
  gap: 0.55rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 250, 0.94)),
    white;
}

.partner-text-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0.6rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-dark), #0f5da8);
  color: white;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.partner-text-card:nth-child(3n) .partner-text-logo {
  background: linear-gradient(135deg, var(--rose-dark), var(--brand-dark));
}

.partner-text-card:nth-child(4n) .partner-text-logo {
  background: linear-gradient(135deg, #0f5da8, var(--aqua));
}

.partner-logo-card img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.partner-logo-card figcaption {
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.location-grid p {
  color: #c6eef0;
}

.recruit {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.recruit-intro,
.recruit-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.recruit-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.recruit-card-grid article {
  min-height: 180px;
  padding: 1.3rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 250, 0.92)),
    white;
  border: 1px solid var(--line);
  border-top: 4px solid rgba(0, 168, 107, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.recruit-card-grid p,
.recruit-form-section p {
  color: var(--muted);
}

.recruitment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-form,
.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 250, 0.94)),
    white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--rose);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.review-submit {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: start;
  background:
    radial-gradient(circle at 8% 12%, rgba(227, 92, 122, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(232, 245, 249, 0.96), rgba(255, 255, 255, 0.94)),
    white;
  border: 1px solid rgba(161, 200, 209, 0.45);
  box-shadow: 0 22px 50px rgba(8, 32, 51, 0.1);
}

.review-submit::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  top: 1.3rem;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(227, 92, 122, 0.16), rgba(161, 200, 209, 0.18));
  pointer-events: none;
}

.review-submit .section-heading {
  align-items: flex-start;
  text-align: left;
  margin: 0;
}

.review-note {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--rose);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--muted);
}

.review-form {
  position: relative;
  z-index: 1;
}

.review-form .button {
  justify-self: stretch;
}

.google-review-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 242, 0.94)),
    white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.google-review-card p {
  color: var(--muted);
}

.google-review-card .button {
  justify-self: start;
}

label {
  display: grid;
  gap: 0.35rem;
  color: #344054;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdee7;
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  background: #fbfdfe;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--aqua);
  background: white;
  box-shadow: 0 0 0 4px rgba(161, 200, 209, 0.28);
}

input[type="file"] {
  padding: 0.75rem;
  background: white;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 0.85rem;
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  background: var(--brand-dark);
  color: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.file-field {
  padding: 1rem;
  border: 1px solid rgba(161, 200, 209, 0.6);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 250, 0.9)),
    white;
}

.file-field small {
  color: var(--muted);
  font-weight: 650;
}

.upload-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1.15rem;
  border: 1px solid rgba(0, 168, 107, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(236, 247, 242, 0.98), rgba(255, 255, 255, 0.96)),
    white;
  box-shadow: var(--shadow-soft);
}

.upload-panel p:not(.eyebrow) {
  color: var(--muted);
}

.upload-panel .file-field {
  background: white;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.quick-contact a {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(8, 32, 51, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-contact a:hover {
  transform: translateY(-2px);
  border-color: var(--aqua);
  box-shadow: var(--shadow-soft);
}

.contact-info {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.contact-info strong {
  color: var(--brand-dark);
  margin-top: 0.6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.service-detail img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.article-page,
.legal-page {
  width: min(860px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.article-page > img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.article-page p,
.legal-page p {
  color: var(--muted);
  font-size: 1.06rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.service-faq {
  position: relative;
}

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

.service-faq .faq-list details {
  border-left: 5px solid var(--aqua);
}

.service-faq .faq-list details:nth-child(2n) {
  border-left-color: var(--rose);
}

.faq-list details {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 250, 0.88)),
    white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 850;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--brand-dark);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--rose);
  color: white;
}

.faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  color: #3d4956;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--brand-dark);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-social a:hover {
  color: var(--rose-dark);
}

.footer a {
  text-decoration: none;
  font-weight: 750;
}

.mobile-action-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 35;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(161, 200, 209, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(8, 32, 51, 0.2);
  backdrop-filter: blur(16px);
}

.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.mobile-action-bar a:nth-child(2) {
  background: var(--rose);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.social-instagram {
  color: #e4405f;
  background: currentColor;
  -webkit-mask: url("assets/instagram-logo.svg") center / contain no-repeat;
  mask: url("assets/instagram-logo.svg") center / contain no-repeat;
}

.social-facebook {
  color: #1877f2;
  background: currentColor;
  -webkit-mask: url("assets/facebook-logo.svg") center / contain no-repeat;
  mask: url("assets/facebook-logo.svg") center / contain no-repeat;
}

.social-linkedin {
  color: #0a66c2;
  background: currentColor;
  -webkit-mask: url("assets/linkedin-logo.svg") center / contain no-repeat;
  mask: url("assets/linkedin-logo.svg") center / contain no-repeat;
}

.social-tiktok {
  color: #111111;
  background: currentColor;
  -webkit-mask: url("assets/tiktok-logo.svg") center / contain no-repeat;
  mask: url("assets/tiktok-logo.svg") center / contain no-repeat;
}

.social-youtube {
  color: #ff0000;
  background: currentColor;
  -webkit-mask: url("assets/youtube-logo.svg") center / contain no-repeat;
  mask: url("assets/youtube-logo.svg") center / contain no-repeat;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSheen {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.42;
  }

  50% {
    transform: translateX(18%);
    opacity: 0.72;
  }
}

@keyframes quoteStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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;
  }

  .hero::before {
    animation: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    animation: menuIn 180ms ease both;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-item {
    display: grid;
    align-items: stretch;
  }

  .has-menu > a::before {
    display: block;
    right: 0.35rem;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    display: none;
    margin: 0.2rem 0 0.45rem;
    padding: 0.45rem;
    background: var(--brand-soft);
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.is-open .nav-menu {
    display: grid;
  }

  .nav-item.is-open > a::before {
    transform: translateY(-35%) rotate(225deg);
  }

  .nav-menu a {
    white-space: normal;
  }

  .section-grid,
  .two-column,
  .price,
  .contact,
  .review-submit,
  .contact-premium,
  .recruit,
  .visual-split,
  .visual-split.reverse,
  .founder,
  .service-detail,
  .recruit-intro,
  .child-activity-band,
  .recruit-form-section {
    grid-template-columns: 1fr;
  }

  .visual-split.reverse .visual-copy,
  .visual-split.reverse .visual-media {
    order: initial;
  }

  .card-grid,
  .steps,
  .location-grid,
  .blog-grid,
  .trust-strip,
  .benefit-grid,
  .aid-grid,
  .team-grid,
  .activity-grid,
  .child-work-grid,
  .zone-grid,
  .social-grid,
  .review-grid,
  .partner-grid,
  .featured-reviews,
  .recruit-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-layout,
  .newsletter,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .child-activity-photos {
    grid-template-columns: 1fr;
  }

  .child-activity-photos img:first-child {
    grid-row: auto;
  }

  .service-faq .faq-list {
    grid-template-columns: 1fr;
  }

  .quote-layout .quote-result {
    position: static;
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .topbar,
  .footer,
  .actions {
    flex-direction: column;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding-top: 6rem;
    background-attachment: scroll;
  }

  .card-grid,
  .steps,
  .stats,
  .location-grid,
  .contact-form,
  .review-form,
  .recruitment-form,
  .quote-form,
  .contact-premium,
  .blog-grid,
  .trust-strip,
  .benefit-grid,
  .aid-grid,
  .team-grid,
  .activity-grid,
  .child-work-grid,
  .zone-grid,
  .social-grid,
  .review-grid,
  .partner-grid,
  .recruit-card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 1.5rem, 1180px);
  }

  .quote-progress {
    grid-template-columns: 1fr;
  }

  .quote-form fieldset {
    grid-template-columns: 1fr;
  }

  .upload-panel {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 4.8rem;
  }

  .mobile-action-bar {
    display: grid;
  }

  .featured-reviews {
    grid-template-columns: 1fr;
  }
}



