*,
*::before,
*::after {
  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-weight: 400;
  line-height: 1.6;
}

/* When navigation is open on small screens, prevent background scrolling */
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

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

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  background: rgba(250, 248, 242, 0.98);
  border-bottom: 1px solid rgba(30, 42, 50, 0.1);
  box-shadow: 0 14px 34px rgba(30, 42, 50, 0.1);
}

.site-header.menu-open {
  z-index: 200;
  background: #faf8f2;
  box-shadow: 0 18px 42px rgba(30, 42, 50, 0.16);
}

.site-header.menu-open::after {
  position: fixed;
  inset: 64px 0 0;
  z-index: 1;
  background: rgba(250, 248, 242, 0.96);
  content: "";
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  transition: width 220ms ease, height 220ms ease;
}

.brand-mark {
  display: grid;
  width: 92px;
  height: 82px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  box-shadow: none;
  font-weight: 650;
}

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

.brand strong {
  overflow: hidden;
  max-width: 500px;
  font-size: 1.2rem;
  color: var(--ink);
  text-shadow: none;
  text-overflow: ellipsis;
  white-space: normal;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.brand small {
  color: color-mix(in srgb, var(--ink), #fff 22%);
  font-size: 0.86rem;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.site-header.menu-open .brand strong,
.site-header.menu-open .site-nav a {
  color: var(--ink);
  text-shadow: none;
}

.site-header.menu-open .brand small {
  color: var(--muted);
  text-shadow: none;
}

.site-header.menu-open .site-nav .nav-cta {
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(30, 42, 50, 0.1);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(30, 42, 50, 0.08);
}

.site-nav a {
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
  background: #fff;
  color: var(--ink);
}

.site-nav .nav-cta {
  margin-left: 6px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 62%);
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary), var(--accent) 28%));
  color: #fff;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--primary), transparent 72%);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary), #000 8%), var(--primary));
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
}

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

.flash {
  margin: 18px 0 0;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 55%);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 800;
}

.flash.danger {
  border-color: color-mix(in srgb, var(--secondary), transparent 55%);
  color: #8c2a17;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease;
  contain: layout paint style;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 38, 0.86), rgba(23, 32, 38, 0.5), rgba(23, 32, 38, 0.24)),
    linear-gradient(0deg, rgba(23, 32, 38, 0.42), transparent 34%),
    var(--hero-image) var(--hero-focus, center) / cover no-repeat;
  content: "";
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 132px 0 132px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--secondary), #000 12%);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 720;
}

.hero-content h1 {
  max-width: 920px;
  font-size: 4.25rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 720;
  cursor: pointer;
}

.button.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button.full {
  width: 100%;
  margin-top: 18px;
}

.slider-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 38px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--accent);
}

.home-proof {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 42px 0 54px;
  background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--paper), #fff 38%) 100%);
}

.section,
.cta-band,
.global-map,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.gallery-preview,
.faq-section,
.security-section {
  contain-intrinsic-size: 1px 680px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 22px;
  align-items: stretch;
}

.proof-intro {
  display: grid;
  align-content: center;
  min-height: 210px;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 76%);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
    radial-gradient(circle at 18% 16%, color-mix(in srgb, var(--accent), transparent 62%), transparent 38%),
    color-mix(in srgb, var(--paper), #fff 42%);
  box-shadow: 0 18px 42px rgba(30, 42, 50, 0.08);
}

.proof-intro h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 660;
}

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

.proof-grid article {
  min-height: 210px;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(30, 42, 50, 0.07);
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 650ms ease forwards;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.proof-grid article:hover {
  border-color: color-mix(in srgb, var(--primary), transparent 62%);
  box-shadow: 0 24px 48px rgba(30, 42, 50, 0.12);
  transform: translateY(-4px);
}

.proof-grid article:nth-child(2) { animation-delay: 90ms; }
.proof-grid article:nth-child(3) { animation-delay: 180ms; }
.proof-grid article:nth-child(4) { animation-delay: 270ms; }

.proof-grid span,
.proof-grid strong {
  display: block;
}

.proof-grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--primary), #fff 86%);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-grid strong {
  margin-top: 14px;
  font-size: 1.14rem;
  line-height: 1.22;
  font-weight: 650;
}

.proof-grid p {
  margin: 9px 0 0;
  color: color-mix(in srgb, var(--ink), #fff 16%);
  font-size: 0.94rem;
  line-height: 1.55;
}

.section {
  padding: 84px 0;
}

.section-head,
.split,
.cta-inner,
.security-panel,
.content-layout,
.contact-grid {
  display: grid;
  gap: 34px;
}

.section-head,
.split,
.cta-inner,
.security-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: end;
}

.section-head {
  margin-bottom: 28px;
}

.section-head .text-link {
  justify-self: end;
  align-self: center;
  white-space: nowrap;
}

.section-head h2,
.split h2,
.security-panel h2,
.cta-inner h2 {
  font-size: 2.45rem;
}

.rich-text {
  color: color-mix(in srgb, var(--ink), #fff 18%);
  font-size: 1.05rem;
}

.rich-text p {
  margin: 0 0 18px;
}

.note {
  border-left: 5px solid var(--secondary);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 560;
}

.intro-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--paper), #fff 52%));
}

.intro-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  grid-template-areas:
    "kicker media"
    "copy media";
  gap: 18px 52px;
  align-items: center;
}

.intro-kicker {
  position: relative;
  grid-area: kicker;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: auto;
  border-left: 0;
  padding: 0;
}

.intro-kicker::before {
  position: static;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 9px color-mix(in srgb, var(--primary), transparent 88%);
  content: "";
}

.intro-kicker span {
  max-width: none;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 620;
  line-height: 1.45;
}

.intro-copy {
  grid-area: copy;
  max-width: 790px;
}

.intro-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.07;
  font-weight: 660;
}

.intro-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: color-mix(in srgb, var(--ink), #fff 16%);
  font-size: 1.08rem;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.intro-tags span {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.intro-media {
  position: relative;
  grid-area: media;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(30, 42, 50, 0.16);
}

.intro-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transform: scale(1.02);
}

.intro-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(30, 42, 50, 0.12);
}

.intro-media figcaption strong {
  font-weight: 680;
}

.intro-media figcaption span {
  color: var(--muted);
  font-size: 0.94rem;
}

.why-section {
  background: #fff;
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.54fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 30px;
}

.why-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
}

.why-heading > p:not(.eyebrow) {
  margin: 0;
  color: color-mix(in srgb, var(--ink), #fff 16%);
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.pillar-grid article {
  position: relative;
  display: grid;
  gap: 16px;
  align-items: start;
  min-height: 270px;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(30, 42, 50, 0.07);
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 650ms ease forwards;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pillar-grid article:hover {
  border-color: color-mix(in srgb, var(--primary), transparent 45%);
  box-shadow: 0 26px 54px rgba(30, 42, 50, 0.12);
  transform: translateY(-4px);
}

.pillar-grid article:nth-child(2) { animation-delay: 100ms; }
.pillar-grid article:nth-child(3) { animation-delay: 200ms; }
.pillar-grid article:nth-child(4) { animation-delay: 300ms; }

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

.pillar-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary), #fff 86%);
  color: var(--primary-dark);
  font-weight: 750;
}

.pillar-grid h3 {
  font-size: 1.22rem;
}

.pillar-grid p {
  margin: 0;
  color: color-mix(in srgb, var(--ink), #fff 16%);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.process-flow::before {
  position: absolute;
  top: 36px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary), transparent 35%), transparent);
  content: "";
}

.process-flow article {
  position: relative;
  display: grid;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(30, 42, 50, 0.07);
  opacity: 0;
  transform: translateY(14px);
  animation: riseIn 640ms ease forwards;
}

.process-flow article:nth-child(2) { animation-delay: 80ms; }
.process-flow article:nth-child(3) { animation-delay: 160ms; }
.process-flow article:nth-child(4) { animation-delay: 240ms; }
.process-flow article:nth-child(5) { animation-delay: 320ms; }

.process-flow span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.process-flow strong {
  font-weight: 660;
}

.process-flow p {
  margin: 0;
  color: color-mix(in srgb, var(--ink), #fff 16%);
  font-size: 0.9rem;
  line-height: 1.5;
}

.local-seo-section {
  background: #fff;
}

.local-seo-section .section-head {
  align-items: center;
}

.local-seo-section .section-head > p {
  margin: 0;
  color: color-mix(in srgb, var(--ink), #fff 16%);
}

.local-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-seo-links a {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
  border-radius: 999px;
  padding: 10px 13px;
  background: color-mix(in srgb, var(--primary), #fff 93%);
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.text-link,
.feature-card a,
.blog-card a {
  color: var(--primary-dark);
  font-weight: 720;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

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

.feature-card,
.blog-card,
.staff-card {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 86%);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.blog-card:hover,
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(23, 32, 38, 0.12);
}

.feature-card img,
.blog-card img,
.staff-card img,
.moments-grid img {
  background: #edf3f1;
}

.feature-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card div,
.blog-card div {
  padding: 20px;
}

.feature-card h3,
.feature-card h2,
.blog-card h3,
.blog-card h2 {
  font-size: 1.22rem;
}

.feature-card p,
.blog-card p {
  color: color-mix(in srgb, var(--ink), #fff 16%);
}

.security-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(111, 168, 154, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(30, 42, 50, 0.98), rgba(35, 107, 111, 0.9));
  color: #fff;
}

.security-panel {
  align-items: center;
  min-height: 420px;
}

.security-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.security-panel .check-list {
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: var(--accent);
  color: var(--ink);
  content: "✓";
  font-size: 0.82rem;
}

.staff-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.staff-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 16px;
}

.staff-card img {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.staff-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.staff-card p {
  margin: 6px 0 0;
  color: color-mix(in srgb, var(--ink), #fff 16%);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: normal;
}

.gallery-preview {
  background: #fff;
  overflow: hidden;
}

.gallery-rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 14px;
}

.gallery-rail::before,
.gallery-rail::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 150px);
  pointer-events: none;
  content: "";
}

.gallery-rail::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.gallery-rail::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  animation: galleryMarquee 52s linear infinite;
}

.gallery-rail:hover .gallery-track,
.gallery-rail:focus-within .gallery-track {
  animation-play-state: paused;
}

.gallery-slide {
  position: relative;
  flex: 0 0 clamp(280px, 30vw, 430px);
  height: clamp(270px, 32vw, 390px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 22px 48px rgba(30, 42, 50, 0.12);
  text-decoration: none;
  transform: translateZ(0);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-slide span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(30, 42, 50, 0.74);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.35;
}

.gallery-slide:hover img,
.gallery-slide:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.gallery-preview .fallback-grid {
  display: none !important;
}

@keyframes galleryMarquee {
  to {
    transform: translateX(-50%);
  }
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}

.moments-grid figure {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(30, 42, 50, 0.08);
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 650ms ease forwards;
}

.moments-grid a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.moments-grid.preview figure:nth-child(1),
.moments-grid.gallery-page figure:nth-child(6n + 1) {
  grid-column: span 5;
  grid-row: span 3;
}

.moments-grid.preview figure:nth-child(2),
.moments-grid.gallery-page figure:nth-child(6n + 2) {
  grid-column: span 4;
  grid-row: span 4;
}

.moments-grid.preview figure:nth-child(3),
.moments-grid.gallery-page figure:nth-child(6n + 3) {
  grid-column: span 3;
  grid-row: span 3;
}

.moments-grid.preview figure:nth-child(4),
.moments-grid.gallery-page figure:nth-child(6n + 4) {
  grid-column: span 3;
  grid-row: span 2;
}

.moments-grid.gallery-page {
  grid-auto-flow: dense;
}

.moments-grid.gallery-page figure:nth-child(4n + 1) {
  grid-column: span 5;
  grid-row: span 4;
}

.moments-grid.gallery-page figure:nth-child(4n + 2) {
  grid-column: span 4;
  grid-row: span 2;
}

.moments-grid.gallery-page figure:nth-child(4n + 3) {
  grid-column: span 3;
  grid-row: span 2;
}

.moments-grid.gallery-page figure:nth-child(4n + 4) {
  grid-column: span 7;
  grid-row: span 2;
}

.moments-grid figure:nth-child(2) { animation-delay: 100ms; }
.moments-grid figure:nth-child(3) { animation-delay: 180ms; }
.moments-grid figure:nth-child(4) { animation-delay: 260ms; }
.moments-grid figure:nth-child(5) { animation-delay: 340ms; }

.moments-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.moments-grid figure:hover img {
  transform: scale(1.045);
}

.moments-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(30, 42, 50, 0.76);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
}

.blog-card time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 720;
}

.cta-band {
  padding: 72px 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--primary), #fff 10%), var(--secondary));
  color: #fff;
}

.faq-section {
  background:
    linear-gradient(180deg, #fff, color-mix(in srgb, var(--paper), #fff 45%));
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.faq-intro p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 18px 56px 18px 20px;
  font-weight: 560;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary), #fff 86%);
  content: "+";
  color: var(--primary);
  font-size: 1.05rem;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: color-mix(in srgb, var(--primary), transparent 35%);
  box-shadow: 0 16px 34px rgba(30, 42, 50, 0.08);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  animation: faqReveal 220ms ease;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-inner {
  align-items: center;
}

.cta-band .eyebrow {
  color: var(--accent);
}

.page-hero {
  padding: 96px 0 78px;
  background:
    linear-gradient(90deg, rgba(23, 32, 38, 0.82), rgba(23, 32, 38, 0.5)),
    var(--page-hero-image, linear-gradient(135deg, #1e2a32, #236b6f)) center / cover no-repeat;
  color: #fff;
}

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

.page-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.content-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.page-content {
  border-radius: 8px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.07);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.side-panel,
.contact-info {
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.07);
}

.side-panel h2,
.contact-info h2 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.detail-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 32, 38, 0.82), rgba(23, 32, 38, 0.12));
  content: "";
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.detail-copy h1 {
  max-width: 820px;
  font-size: 3.3rem;
}

.detail-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-row button {
  min-height: 40px;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 80%);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.filter-row button.active {
  background: var(--ink);
  color: #fff;
}

.moments-grid figure[hidden] {
  display: none !important;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.07);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 560;
}

.about-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
}

.about-lead h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
}

.about-lead-card {
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.06);
}

.about-lead-card p {
  margin: 0;
  color: var(--muted);
}

.about-lead-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.about-lead-card span {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 68%);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 620;
}

.about-grid,
.mission-grid,
.about-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.about-grid figure,
.mission-grid article {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.07);
}

.about-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-grid figcaption,
.mission-grid article {
  padding: 20px;
}

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

.about-story,
.about-timeline {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

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

.about-story article,
.about-timeline article {
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.06);
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 650ms ease forwards;
}

.about-story article:nth-child(2) {
  animation-delay: 120ms;
}

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

.about-timeline article:nth-child(2) { animation-delay: 90ms; }
.about-timeline article:nth-child(3) { animation-delay: 180ms; }
.about-timeline article:nth-child(4) { animation-delay: 270ms; }

.about-timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 680;
}

.about-timeline strong {
  display: block;
  margin-top: 14px;
  font-size: 1.08rem;
}

.about-story p:not(.eyebrow),
.about-timeline p {
  color: var(--muted);
}

.about-seo-grid article {
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.06);
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 650ms ease forwards;
}

.about-seo-grid article:nth-child(2) { animation-delay: 110ms; }
.about-seo-grid article:nth-child(3) { animation-delay: 220ms; }

.about-seo-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary), #fff 84%);
  color: var(--primary-dark);
  font-weight: 680;
}

.about-seo-grid h3 {
  margin-top: 16px;
}

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

.author-box {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 32, 38, 0.06);
}

.author-box img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.author-box span {
  color: var(--secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.blog-article {
  min-width: 0;
}

.blog-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.share-card {
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 32, 38, 0.06);
}

.share-card h2 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.share-card a {
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 620;
}

.share-card a:hover {
  background: color-mix(in srgb, var(--primary), #fff 90%);
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  border-top: 1px solid color-mix(in srgb, var(--ink), transparent 90%);
  padding-top: 14px;
}

.blog-card-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-author span,
.blog-card-author small {
  display: block;
}

.blog-card-author span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.blog-card-author small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 520;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}

.tag-list span {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 68%);
  border-radius: 999px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--primary), #fff 92%);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.2;
}

.detail-tags {
  margin-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  padding-top: 18px;
}

.global-map iframe,
.reviews-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.global-map {
  position: relative;
  z-index: 1;
  background: #fff;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 78%);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
}

.contact-form button {
  width: fit-content;
}

.contact-info p {
  display: grid;
  gap: 4px;
  margin: 0 0 16px;
}

.contact-info strong {
  color: var(--secondary);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.contact-info a {
  text-decoration: none;
  font-weight: 700;
}

.map-embed {
  overflow: hidden;
  border-radius: 8px;
}

.map-embed iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}

.site-footer {
  padding: 54px 0 24px;
  background: #071820;
  color: #ffffff;
}

.site-footer h2,
.site-footer a,
.site-footer span,
.site-footer strong,
.site-footer small,
.site-footer p {
  color: #ffffff !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(5, minmax(150px, 1fr));
  gap: 28px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: #ffffff !important;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-seo-links {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 22px;
}

.footer-seo-links a {
  position: relative;
  margin: 7px 0;
  padding-left: 16px;
  font-size: 0.94rem;
}

.footer-seo-links a::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.footer-grid p {
  color: #f2fbf8 !important;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.site-footer .brand strong,
.site-footer .brand small {
  color: #ffffff;
  text-shadow: none;
}

.site-footer .brand strong {
  font-size: 1.06rem;
}

.site-footer .brand small {
  color: #f2fbf8 !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: inherit;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  border: 1px solid color-mix(in srgb, var(--primary), #fff 44%);
  border-radius: 999px;
  padding: 0 22px 0 16px;
  background: #fff;
  color: var(--primary-dark);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.16);
  font-weight: 680;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.floating-cta svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: #25d366;
}

.floating-cta span {
  white-space: nowrap;
}

.whatsapp-cta {
  border-color: color-mix(in srgb, #25d366, #fff 48%);
}

.floating-cta:hover {
  transform: translateY(-3px);
  border-color: #25d366;
  box-shadow: 0 24px 52px rgba(23, 32, 38, 0.22);
}

.floating-cta:focus-visible {
  outline: 3px solid color-mix(in srgb, #25d366, #fff 42%);
  outline-offset: 3px;
}

.floating-cta.is-compact {
  padding-right: 16px;
}

.floating-cta.is-compact span {
  display: none;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 86px;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  .brand-mark {
    width: 78px;
    height: 70px;
  }

  .brand strong {
    max-width: 300px;
    font-size: 1.04rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    z-index: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(30, 42, 50, 0.12);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 24px 56px rgba(23, 32, 38, 0.22);
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

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

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .proof-layout,
  .intro-editorial,
  .why-heading {
    grid-template-columns: 1fr;
  }

  .intro-editorial {
    grid-template-areas:
      "kicker"
      "copy"
      "media";
    gap: 22px;
  }

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

  .footer-seo-links {
    border-left: 0;
    padding-left: 0;
  }

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

  .home-proof {
    padding-top: 28px;
  }

  .proof-intro,
  .intro-media {
    order: 0;
  }

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

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

  .process-flow::before {
    display: none;
  }

  .gallery-track {
    animation-duration: 28s;
  }

  .moments-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 110px;
  }

  .moments-grid figure,
  .moments-grid.preview figure:nth-child(n),
  .moments-grid.gallery-page figure:nth-child(n) {
    grid-column: span 3;
    grid-row: span 3;
  }

  .section-head,
  .split,
  .cta-inner,
  .security-panel,
  .content-layout,
  .contact-grid,
  .blog-detail-layout,
  .faq-shell,
  .about-lead {
    grid-template-columns: 1fr;
  }

  .blog-side {
    position: static;
  }

  .faq-intro {
    position: static;
  }

  .section-head {
    align-items: start;
  }

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1160px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand strong {
    display: -webkit-box;
    max-width: 168px;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-mark {
    width: 66px;
    height: 58px;
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .site-header.menu-open::after {
    inset: 64px 0 0;
  }

  .site-nav {
    top: 76px;
    right: 12px;
    left: 12px;
  }

  .brand {
    gap: 8px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.84);
  }

  .hero-slider,
  .hero-slide {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-slide {
    --hero-focus: 64% center;
  }

  .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(23, 32, 38, 0.84), rgba(23, 32, 38, 0.56)),
      linear-gradient(0deg, rgba(23, 32, 38, 0.6), transparent 42%),
      var(--hero-image) var(--hero-focus, 64% center) / cover no-repeat;
  }

  .hero-content {
    display: grid;
    align-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px 0 104px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 2.12rem;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .hero-content p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .slider-dots {
    bottom: 28px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .floating-cta svg {
    width: 24px;
    height: 24px;
  }

  .home-proof {
    padding-top: 30px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .split h2,
  .security-panel h2,
  .cta-inner h2 {
    font-size: 2rem;
  }

  .proof-layout,
  .intro-editorial,
  .proof-grid,
  .card-grid,
  .service-grid,
  .staff-strip,
  .pillar-grid,
  .about-grid,
  .about-story,
  .about-timeline,
  .mission-grid,
  .about-seo-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .home-proof {
    margin-top: 0;
    padding-top: 18px;
  }

  .proof-grid article {
    min-height: auto;
  }

  .intro-section {
    padding: 58px 0;
    background: #fff;
  }

  .intro-editorial {
    gap: 24px;
  }

  .intro-kicker {
    align-items: flex-start;
    gap: 12px;
  }

  .intro-media figcaption {
    position: static;
    border-radius: 0;
  }

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

  .gallery-slide {
    flex-basis: 78vw;
    height: 280px;
  }

  .gallery-track {
    gap: 12px;
    padding-left: 12px;
  }

  .moments-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .moments-grid figure,
  .moments-grid.preview figure:nth-child(n),
  .moments-grid.gallery-page figure:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .moments-grid img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .page-content,
  .side-panel,
  .contact-form,
  .contact-info {
    padding: 22px;
  }

  .button,
  .contact-form button {
    width: 100%;
  }

  .staff-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .staff-card img {
    width: 82px;
  }

  .proof-grid article,
  .pillar-grid article,
  .process-flow article,
  .moments-grid figure,
  .about-story article,
  .about-timeline article,
  .about-seo-grid article {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .feature-card:hover,
  .blog-card:hover,
  .staff-card:hover,
  .pillar-grid article:hover,
  .proof-grid article:hover,
  .moments-grid figure:hover img {
    transform: none;
  }
}

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

/* 2026 Anaokulu: daha canlı, sıcak ve aile dostu görsel dil */
body {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 200, 87, 0.13), transparent 24rem),
    radial-gradient(circle at 94% 42%, rgba(88, 196, 221, 0.12), transparent 26rem),
    var(--paper);
}

.site-header {
  background: rgba(255, 249, 241, 0.96);
  border-bottom-color: rgba(8, 127, 120, 0.15);
}

.brand-mark {
  border: 0;
  border-radius: 24px 16px 24px 16px;
  background: linear-gradient(145deg, var(--primary), #58c4dd);
  box-shadow: 0 10px 24px rgba(8, 127, 120, 0.22);
}

.site-nav a:hover,
.site-nav a.active {
  background: color-mix(in srgb, var(--accent), #fff 72%);
  color: var(--ink);
}

.site-nav .nav-cta,
.button.primary {
  border-color: var(--secondary);
  background: linear-gradient(135deg, var(--secondary), #ff8f70);
  box-shadow: 0 14px 28px rgba(240, 93, 94, 0.26);
}

.button,
.nav-toggle {
  border-radius: 999px;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(36, 52, 71, 0.78), rgba(8, 127, 120, 0.38), rgba(36, 52, 71, 0.18)),
    linear-gradient(0deg, rgba(36, 52, 71, 0.45), transparent 42%),
    var(--hero-image) var(--hero-focus, center) / cover no-repeat;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--accent);
  color: var(--ink);
}

.home-proof {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 200, 87, 0.34), transparent 19rem),
    linear-gradient(180deg, #fffdf8, #ecfbf8);
}

.proof-intro,
.proof-grid article,
.pillar-grid article,
.process-flow article,
.feature-card,
.blog-card,
.staff-card,
.page-content,
.side-panel,
.contact-info,
.contact-form,
.faq-list details,
.about-lead-card,
.about-story article,
.about-timeline article,
.about-seo-grid article {
  border-radius: 22px;
}

.proof-grid article:nth-child(1),
.pillar-grid article:nth-child(1) {
  background: #ecfbf8;
  border-color: rgba(8, 127, 120, 0.22);
}

.proof-grid article:nth-child(2),
.pillar-grid article:nth-child(2) {
  background: #fff5d8;
  border-color: rgba(255, 200, 87, 0.46);
}

.proof-grid article:nth-child(3),
.pillar-grid article:nth-child(3) {
  background: #fff0ee;
  border-color: rgba(240, 93, 94, 0.25);
}

.proof-grid article:nth-child(4),
.pillar-grid article:nth-child(4) {
  background: #f3efff;
  border-color: rgba(167, 139, 250, 0.28);
}

.proof-grid article:nth-child(2) span,
.pillar-grid article:nth-child(2) span {
  background: var(--accent);
  color: var(--ink);
}

.proof-grid article:nth-child(3) span,
.pillar-grid article:nth-child(3) span {
  background: var(--secondary);
  color: #fff;
}

.proof-grid article:nth-child(4) span,
.pillar-grid article:nth-child(4) span {
  background: #a78bfa;
  color: #fff;
}

.local-seo-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(167, 139, 250, 0.16), transparent 22rem),
    #f8f5ff;
}

.intro-section {
  background:
    radial-gradient(circle at 8% 84%, rgba(255, 200, 87, 0.3), transparent 22rem),
    linear-gradient(135deg, #fffdf7, #fff1ef);
}

.why-section,
.faq-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(88, 196, 221, 0.2), transparent 24rem),
    linear-gradient(180deg, #fff, #effbff);
}

.feature-card:nth-child(3n + 1),
.blog-card:nth-child(3n + 1) {
  border-top: 6px solid var(--primary);
}

.feature-card:nth-child(3n + 2),
.blog-card:nth-child(3n + 2) {
  border-top: 6px solid var(--secondary);
}

.feature-card:nth-child(3n),
.blog-card:nth-child(3n) {
  border-top: 6px solid var(--accent);
}

.feature-card img,
.blog-card img,
.gallery-slide img,
.moments-grid img {
  filter: saturate(1.1);
}

.security-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 200, 87, 0.3), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(88, 196, 221, 0.24), transparent 28%),
    linear-gradient(135deg, #075f5b, #087f78 56%, #245d73);
}

.security-panel .check-list {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.gallery-preview {
  background:
    radial-gradient(circle at 10% 20%, rgba(240, 93, 94, 0.14), transparent 22rem),
    #fff8f6;
}

.gallery-slide,
.intro-media,
.moments-grid figure,
.map-embed {
  border-radius: 24px;
}

.cta-band {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.22), transparent 16rem),
    linear-gradient(105deg, var(--primary), #58a9bd 48%, var(--secondary));
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(36, 52, 71, 0.72), rgba(8, 127, 120, 0.36)),
    var(--page-hero-image, linear-gradient(135deg, var(--primary), #58c4dd)) center / cover no-repeat;
}

.filter-row button.active {
  background: var(--secondary);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 200, 87, 0.12), transparent 22rem),
    linear-gradient(145deg, #123747, #063f3c);
}

@media (max-width: 640px) {
  .intro-section {
    background: linear-gradient(180deg, #fffdf8, #fff1ef);
  }

  .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(36, 52, 71, 0.8), rgba(8, 127, 120, 0.42)),
      linear-gradient(0deg, rgba(36, 52, 71, 0.54), transparent 46%),
      var(--hero-image) var(--hero-focus, 64% center) / cover no-repeat;
  }
}

/* Çocuk dostu hareket ve daha neşeli yüzeyler */
h1,
h2,
h3,
.brand strong {
  font-family: "Trebuchet MS", Inter, ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  overflow: hidden;
}

.site-header::before {
  position: absolute;
  top: -32px;
  right: 9%;
  width: 110px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.22);
  content: "";
  pointer-events: none;
}

.site-header::after {
  position: absolute;
  bottom: -34px;
  left: 28%;
  width: 88px;
  height: 62px;
  border-radius: 50%;
  background: rgba(88, 196, 221, 0.16);
  content: "";
  pointer-events: none;
}

.brand img {
  border-radius: 50%;
  filter: drop-shadow(0 8px 12px rgba(36, 52, 71, 0.16));
  transition: transform 300ms ease, filter 300ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 12px 16px rgba(8, 127, 120, 0.22));
  transform: rotate(-3deg) scale(1.04);
}

.site-nav {
  border-color: rgba(255, 200, 87, 0.35);
  background: rgba(255, 255, 255, 0.94);
}

.site-nav a {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-2px);
}

.hero-content {
  z-index: 3;
}

.hero-content h1 {
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  animation: heroTitleIn 800ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-content p:not(.eyebrow) {
  animation: heroTextIn 800ms 140ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-actions {
  animation: heroTextIn 800ms 260ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-content .eyebrow {
  box-shadow: 0 8px 24px rgba(255, 200, 87, 0.24);
  animation: badgeBounce 700ms 80ms cubic-bezier(.2, .8, .2, 1.2) both;
}

.hero-confetti {
  position: absolute;
  inset: 96px 0 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-confetti i {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0.82;
  animation: confettiFloat 6s ease-in-out infinite;
}

.hero-confetti i:nth-child(1) {
  top: 14%;
  left: 5%;
  width: 26px;
  height: 26px;
  background: var(--accent);
}

.hero-confetti i:nth-child(2) {
  top: 24%;
  right: 8%;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--secondary);
  animation-delay: -1.2s;
  transform: rotate(18deg);
}

.hero-confetti i:nth-child(3) {
  bottom: 21%;
  left: 7%;
  width: 15px;
  height: 42px;
  border-radius: 999px;
  background: #58c4dd;
  animation-delay: -2.1s;
  transform: rotate(32deg);
}

.hero-confetti i:nth-child(4) {
  top: 16%;
  right: 28%;
  width: 14px;
  height: 14px;
  background: #a78bfa;
  animation-delay: -3s;
}

.hero-confetti i:nth-child(5) {
  right: 4%;
  bottom: 16%;
  width: 24px;
  height: 24px;
  border: 5px solid var(--accent);
  background: transparent;
  animation-delay: -4.2s;
}

.hero-confetti i:nth-child(6) {
  bottom: 10%;
  left: 42%;
  width: 34px;
  height: 12px;
  border-radius: 999px;
  background: #ff8fab;
  animation-delay: -2.7s;
  transform: rotate(-18deg);
}

.button {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
}

.button::after {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 34%;
  height: 200%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transform: rotate(20deg);
  transition: left 420ms ease;
}

.button:hover::after {
  left: 125%;
}

.section-head h2,
.why-heading h2,
.intro-copy h2 {
  position: relative;
  text-wrap: balance;
}

.section-head h2::after,
.why-heading h2::after {
  display: block;
  width: 74px;
  height: 7px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), #58c4dd);
  content: "";
}

.proof-grid article,
.pillar-grid article,
.process-flow article {
  overflow: hidden;
}

.proof-grid article::after,
.pillar-grid article::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.055;
}

.proof-grid article {
  position: relative;
}

.proof-grid article:hover,
.pillar-grid article:hover {
  transform: translateY(-8px) rotate(-0.7deg);
}

.proof-grid article:nth-child(even):hover,
.pillar-grid article:nth-child(even):hover {
  transform: translateY(-8px) rotate(0.7deg);
}

.feature-card,
.blog-card {
  border-radius: 28px 28px 56px 28px;
}

.feature-card:nth-child(3n + 1) {
  background: linear-gradient(180deg, #fff, #ebfbf8);
}

.feature-card:nth-child(3n + 2) {
  background: linear-gradient(180deg, #fff, #fff1ef);
}

.feature-card:nth-child(3n) {
  background: linear-gradient(180deg, #fff, #fff7dd);
}

.feature-card img,
.blog-card img {
  border-radius: 0 0 48px 0;
  transition: transform 520ms cubic-bezier(.2, .8, .2, 1), filter 520ms ease;
}

.feature-card:hover img,
.blog-card:hover img {
  filter: saturate(1.18);
  transform: scale(1.045);
}

.intro-media {
  border: 7px solid #fff;
  outline: 3px dashed rgba(240, 93, 94, 0.38);
  outline-offset: 7px;
}

.intro-tags span {
  box-shadow: 0 8px 18px rgba(36, 52, 71, 0.06);
  transition: transform 180ms ease, background 180ms ease;
}

.intro-tags span:nth-child(2) {
  background: #fff4d3;
}

.intro-tags span:nth-child(3) {
  background: #fff0ee;
}

.intro-tags span:nth-child(4) {
  background: #f2edff;
}

.intro-tags span:hover {
  transform: translateY(-3px) rotate(-1deg);
}

.process-flow article {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-flow article:hover {
  box-shadow: 0 24px 44px rgba(36, 52, 71, 0.13);
  transform: translateY(-6px);
}

.process-flow article:nth-child(2) span {
  background: var(--secondary);
}

.process-flow article:nth-child(3) span {
  background: #a78bfa;
}

.process-flow article:nth-child(4) span {
  background: #e19a00;
}

.process-flow article:nth-child(5) span {
  background: #267c9a;
}

.faq-list details {
  border-left: 6px solid var(--accent);
}

.faq-list details:nth-child(3n + 2) {
  border-left-color: var(--secondary);
}

.faq-list details:nth-child(3n) {
  border-left-color: #58c4dd;
}

.floating-cta {
  animation: floatingPulse 2.8s ease-in-out infinite;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes badgeBounce {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.88);
  }
}

@keyframes confettiFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes floatingPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(23, 32, 38, 0.16);
  }
  50% {
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.3), 0 0 0 9px rgba(37, 211, 102, 0.08);
  }
}

@media (max-width: 640px) {
  .hero-confetti i:nth-child(4),
  .hero-confetti i:nth-child(6) {
    display: none;
  }

  .hero-confetti {
    top: 64px;
  }

  .feature-card,
  .blog-card {
    border-radius: 24px 24px 42px 24px;
  }
}

/* Oyunbaz sayfa geçişleri ve kaydırma hareketleri */
.hero-slide {
  transition: opacity 900ms cubic-bezier(.2, .7, .2, 1);
}

.hero-slide::before {
  transform: scale(1.07);
  transition: transform 7s cubic-bezier(.2, .7, .2, 1), filter 900ms ease;
}

.hero-slide.active::before {
  filter: saturate(1.08);
  transform: scale(1);
}

.hero-slide .hero-content {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms 180ms ease, transform 700ms 180ms cubic-bezier(.2, .8, .2, 1);
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.reveal-motion .scroll-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.975);
  animation: none !important;
  transition:
    opacity 680ms var(--reveal-delay, 0ms) ease,
    transform 680ms var(--reveal-delay, 0ms) cubic-bezier(.2, .75, .2, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

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

main > .section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

main > .section::before {
  position: absolute;
  top: 34px;
  right: max(18px, calc((100vw - 1240px) / 2));
  z-index: -1;
  width: 90px;
  height: 90px;
  border-radius: 38% 62% 58% 42% / 45% 40% 60% 55%;
  background: color-mix(in srgb, var(--accent), transparent 80%);
  content: "";
  pointer-events: none;
  rotate: 12deg;
  animation: sectionBlob 7s ease-in-out infinite;
}

main > .section:nth-of-type(even)::before {
  right: auto;
  left: max(18px, calc((100vw - 1240px) / 2));
  width: 72px;
  height: 72px;
  background: color-mix(in srgb, var(--secondary), transparent 86%);
  animation-delay: -3.5s;
}

.home-proof::after,
.why-section::after,
.faq-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  background:
    radial-gradient(circle at 12px -2px, transparent 14px, rgba(255, 255, 255, 0.72) 15px, rgba(255, 255, 255, 0.72) 21px, transparent 22px)
    0 0 / 44px 22px repeat-x;
  content: "";
  pointer-events: none;
}

.local-seo-links a {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(36, 52, 71, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.local-seo-links a:nth-child(3n + 2) {
  background: #fff1ef;
  border-color: rgba(240, 93, 94, 0.26);
}

.local-seo-links a:nth-child(3n) {
  background: #fff6d8;
  border-color: rgba(255, 200, 87, 0.45);
}

.local-seo-links a:hover {
  box-shadow: 0 13px 24px rgba(36, 52, 71, 0.11);
  transform: translateY(-4px) rotate(-1deg);
}

.staff-card {
  background:
    radial-gradient(circle at 94% 14%, rgba(255, 200, 87, 0.24), transparent 54px),
    #fff;
}

.staff-card:nth-child(even) {
  background:
    radial-gradient(circle at 94% 14%, rgba(167, 139, 250, 0.18), transparent 54px),
    #fff;
}

.staff-card img {
  border: 4px solid #fff;
  outline: 3px solid color-mix(in srgb, var(--primary), transparent 58%);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.staff-card:hover img {
  transform: rotate(-4deg) scale(1.06);
}

.gallery-slide:nth-child(even) {
  transform: translateY(18px);
}

.gallery-slide:nth-child(3n) {
  transform: translateY(7px) rotate(0.5deg);
}

.faq-list details[open] {
  background: linear-gradient(135deg, #fff, #fffaf0);
  transform: translateX(6px);
}

.faq-list details {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cta-band {
  background-size: 180% 180%;
  animation: ctaColorFlow 9s ease infinite;
}

.site-footer {
  background-size: 160% 160%;
  animation: footerColorFlow 14s ease-in-out infinite;
}

@keyframes sectionBlob {
  0%,
  100% {
    border-radius: 38% 62% 58% 42% / 45% 40% 60% 55%;
    transform: translateY(0) rotate(0);
  }
  50% {
    border-radius: 58% 42% 38% 62% / 55% 62% 38% 45%;
    transform: translateY(-12px) rotate(8deg);
  }
}

@keyframes ctaColorFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes footerColorFlow {
  0%,
  100% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 100% 60%;
  }
}

@media (max-width: 640px) {
  .reveal-motion .scroll-reveal {
    transform: translateY(22px);
    transition-duration: 520ms;
  }

  main > .section::before {
    width: 54px;
    height: 54px;
    opacity: 0.7;
  }

  .gallery-slide:nth-child(even),
  .gallery-slide:nth-child(3n) {
    transform: none;
  }
}
