:root {
  color-scheme: light;
  --bg: #f8f8f8;
  --bg-soft: #e8f0f8;
  --surface: rgba(248, 248, 248, 0.8);
  --surface-strong: rgba(248, 248, 248, 0.95);
  --line: rgba(0, 72, 240, 0.14);
  --text: #0b1530;
  --muted: #536786;
  --primary: #0048f0;
  --primary-strong: #000878;
  --primary-deep: #000020;
  --accent: #00c0f8;
  --accent-soft: #68d8f8;
  --glow: rgba(0, 192, 248, 0.26);
  --shadow: 0 30px 90px rgba(0, 8, 120, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1140px, calc(100vw - 2.25rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(104, 216, 248, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 192, 248, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f8f8 0%, #eef6ff 42%, #f8f8f8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: drift 18s ease-in-out infinite;
}

body::before {
  top: 8rem;
  left: 4vw;
  width: 15rem;
  height: 15rem;
  background: rgba(0, 192, 248, 0.12);
}

body::after {
  right: 6vw;
  top: 28rem;
  width: 11rem;
  height: 11rem;
  background: rgba(104, 216, 248, 0.14);
  animation-duration: 22s;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 192, 248, 0.14), rgba(0, 72, 240, 0.9));
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin-bottom: 1rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px);
  background: rgba(248, 248, 248, 0.84);
  border-bottom: 1px solid rgba(0, 72, 240, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

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

.brand-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.4rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 5rem;
  border-radius: 999px;
  filter: drop-shadow(0 2px 8px rgba(0, 8, 120, 0.15));
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: #506684;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--solid {
  color: #f8f8f8;
  background: linear-gradient(135deg, var(--primary-strong) 0%, var(--primary) 72%, var(--accent) 135%);
  box-shadow: 0 18px 34px rgba(0, 8, 120, 0.26);
}

.button--ghost {
  color: var(--primary);
  border-color: rgba(0, 72, 240, 0.16);
  background: rgba(248, 248, 248, 0.74);
}

.button-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.button-note--light {
  color: rgba(232, 240, 248, 0.84);
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(104, 216, 248, 0.18), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(0, 192, 248, 0.14), transparent 22%),
    linear-gradient(135deg, #000020 0%, #000878 48%, #000020 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3.3rem, 6vw, 6rem);
  margin-bottom: 1.25rem;
  color: #f8f8f8;
}

.hero-lead {
  max-width: 38rem;
  color: rgba(232, 240, 248, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 0.8rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
}

.stat-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52));
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  color: var(--primary);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.7);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 192, 248, 0.12), rgba(0, 72, 240, 0.12)),
    linear-gradient(135deg, rgba(104, 216, 248, 0.08), rgba(248, 248, 248, 0));
  pointer-events: none;
}

.photo-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(1.03);
}

.photo-card--hero {
  width: min(34rem, 100%);
}

.photo-card--hero img {
  aspect-ratio: 0.88 / 1;
}

.photo-card--tall {
  width: min(17rem, 62%);
  margin-right: 12%;
  animation: breathe 10s ease-in-out infinite;
}

.photo-card--tall img {
  aspect-ratio: 0.84 / 1;
}

.floating-note {
  position: absolute;
  left: 0;
  top: 3.2rem;
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(104, 216, 248, 0.22);
  border-radius: var(--radius-md);
  background: rgba(248, 248, 248, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.note-badge {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 192, 248, 0.14);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefits-layout,
.gallery-layout,
.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.benefit-list,
.service-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.service-card,
.testimonial-card,
.contact-card,
.quote-panel,
.cta-panel,
.step-card,
.trust-card,
.faq-item,
.section-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.6));
  box-shadow: var(--shadow);
}

.benefits {
  background:
    linear-gradient(180deg, rgba(104, 216, 248, 0.08), rgba(248, 248, 248, 0.5));
}

.services {
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.94), rgba(232, 240, 248, 0.44));
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: var(--primary-deep);
  font-weight: 800;
}

.benefit-card h3,
.service-card h3,
.contact-card h3,
.step-card h3,
.trust-card h3,
.faq-item h3,
.section-cta h3 {
  margin-bottom: 0.45rem;
  font-size: 1.7rem;
}

.benefit-card p,
.service-card p,
.testimonial-card p,
.contact-card p,
.about-copy p,
 .quote-panel p,
 .cta-panel p,
.step-card p,
.trust-card p,
.faq-item p,
.section-cta p {
  color: var(--muted);
}

.contact-card a:not(.button) {
  display: inline-block;
  line-height: 1.6;
}

.benefits-media {
  display: grid;
  gap: 1rem;
}

.photo-card--wide img {
  aspect-ratio: 1.1 / 1;
}

.quote-panel {
  padding: 1.35rem;
}

.quote-panel p {
  font-size: 1.05rem;
}

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

.service-card,
.testimonial-card,
.contact-card {
  padding: 1.45rem;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 192, 248, 0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(104, 216, 248, 0.16), rgba(0, 192, 248, 0.24));
  color: var(--primary);
  font-weight: 800;
}

.service-card--rich {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.service-card-head .service-kicker {
  margin-bottom: 0;
}

.service-intro {
  font-size: 1rem;
}

.service-detail {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 72, 240, 0.08);
}

.service-detail strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-deep);
  font-size: 0.92rem;
}

.service-button {
  width: 100%;
  margin-top: auto;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(104, 216, 248, 0.18);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.section-cta {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border-color: rgba(104, 216, 248, 0.2);
  background:
    radial-gradient(circle at top right, rgba(0, 192, 248, 0.26), rgba(248, 248, 248, 0) 34%),
    linear-gradient(145deg, #000878 0%, #0048f0 62%, #000020 100%);
}

.section-cta h3 {
  margin-bottom: 0.7rem;
}

.section-cta h3,
.section-cta p {
  color: #f8f8f8;
}

.section-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-cta .button--solid,
.contact-card--primary .button--solid {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: var(--primary-deep);
  box-shadow: 0 18px 32px rgba(0, 192, 248, 0.2);
}

.section-cta .button-note,
.contact-card--primary .button-note {
  color: rgba(232, 240, 248, 0.84);
}

.gallery-copy {
  max-width: 34rem;
}

.gallery-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  margin-bottom: 1rem;
}

.gallery-copy p {
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.gallery {
  background:
    radial-gradient(circle at 12% 24%, rgba(0, 192, 248, 0.18), transparent 18%),
    radial-gradient(circle at 86% 34%, rgba(104, 216, 248, 0.14), transparent 20%),
    linear-gradient(135deg, #000020 0%, #000878 44%, #000020 100%);
}

.gallery .eyebrow,
.gallery-copy h2,
.gallery-copy p {
  color: #f8f8f8;
}

.gallery .eyebrow {
  color: var(--accent-soft);
}

.gallery .button--ghost {
  color: #f8f8f8;
  border-color: rgba(104, 216, 248, 0.26);
  background: rgba(248, 248, 248, 0.08);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.gallery-mosaic .photo-card:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.gallery-mosaic .photo-card:first-child img {
  aspect-ratio: unset;
  flex: 1;
  min-height: 0;
  object-fit: cover;
}

.gallery-mosaic .photo-card:nth-child(2) img,
.gallery-mosaic .photo-card:nth-child(3) img {
  aspect-ratio: 1 / 1;
}

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

.testimonials {
  background:
    linear-gradient(180deg, rgba(232, 240, 248, 0.44), rgba(248, 248, 248, 0.96));
}

.testimonial-card {
  min-height: 15rem;
  border-top: 3px solid rgba(0, 192, 248, 0.3);
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--primary-deep);
  font-size: 0.95rem;
}

.about-photo img {
  aspect-ratio: 1 / 1;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 42%);
  gap: 1rem;
  align-items: end;
}

.about-photo--main img {
  aspect-ratio: 0.96 / 1;
}

.about-photo--accent {
  align-self: end;
  margin-bottom: 1.6rem;
}

.about-photo--accent img {
  aspect-ratio: 0.82 / 1;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 1rem;
}

.about {
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.96), rgba(232, 240, 248, 0.42));
}

.about-copy p + p {
  margin-top: 1rem;
}

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

.trust-card {
  padding: 1.25rem;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.about-pillars span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(0, 72, 240, 0.12);
  border-radius: 999px;
  background: rgba(248, 248, 248, 0.9);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.faq {
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.98), rgba(232, 240, 248, 0.56));
}

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

.faq-item {
  padding: 1.4rem;
}

.cta {
  padding-top: 1rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(0, 192, 248, 0.26), rgba(248, 248, 248, 0) 34%),
    linear-gradient(145deg, #000878 0%, #0048f0 62%, #000020 100%);
}

.cta-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 0.8rem;
}

.cta-panel h2,
.cta-panel p,
.cta .eyebrow {
  color: #f8f8f8;
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.9rem;
}

.cta .button--solid {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: var(--primary-deep);
  box-shadow: 0 18px 32px rgba(0, 192, 248, 0.2);
}

.cta .button--ghost {
  color: #f8f8f8;
  border-color: rgba(248, 248, 248, 0.22);
  background: rgba(248, 248, 248, 0.08);
}

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

.contact {
  background:
    linear-gradient(180deg, rgba(232, 240, 248, 0.5), rgba(248, 248, 248, 0.98));
}

.contact-card a:not(.button) {
  font-weight: 700;
}

.contact-card .button {
  color: #f8f8f8;
  line-height: 1.2;
}

.contact-card--primary .button--solid {
  color: var(--primary-deep);
}

.contact-card .button-note {
  margin-top: 1rem;
}

.contact-card--primary {
  background:
    radial-gradient(circle at top right, rgba(0, 192, 248, 0.22), rgba(248, 248, 248, 0) 36%),
    linear-gradient(150deg, #000878 0%, #0048f0 64%, #000020 100%);
}

.contact-card--primary h3,
.contact-card--primary p {
  color: #f8f8f8;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-stack a + a {
  color: var(--primary);
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.hours-list li + li {
  border-top: 1px solid rgba(0, 72, 240, 0.08);
}

.site-footer {
  padding: 1.6rem 0 2rem;
  background: linear-gradient(180deg, #000878 0%, #000020 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(232, 240, 248, 0.8);
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 700;
  transition: opacity 180ms ease;
}

.ig-link:hover {
  opacity: 0.75;
}

.ig-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  flex-shrink: 0;
}

.map-embed {
  margin: 0.85rem 0 0.6rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 130px;
}

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

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  transition: opacity 180ms ease;
}

.map-link:hover {
  opacity: 0.75;
}

.map-pin-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-ig-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  font-weight: 700;
}

.hero .eyebrow,
.hero .eyebrow::before {
  color: var(--accent-soft);
}

.hero .eyebrow::before,
.gallery .eyebrow::before,
.cta .eyebrow::before {
  background: linear-gradient(90deg, rgba(104, 216, 248, 0.18), rgba(0, 192, 248, 0.95));
}

.hero .button--ghost {
  color: #f8f8f8;
  border-color: rgba(248, 248, 248, 0.22);
  background: rgba(248, 248, 248, 0.08);
}

.hero .stat-card {
  background: linear-gradient(180deg, rgba(248, 248, 248, 0.1), rgba(248, 248, 248, 0.05));
  border-color: rgba(104, 216, 248, 0.2);
  backdrop-filter: blur(18px);
}

.hero .stat-card strong {
  color: var(--accent-soft);
}

.hero .stat-card span {
  color: rgba(232, 240, 248, 0.78);
}

.how-it-works {
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.98), rgba(232, 240, 248, 0.5));
}

.steps-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.step-card {
  padding: 1.5rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--primary-deep);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(0, 192, 248, 0.18);
}

.reveal {
  animation: fadeUp 700ms ease both;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.6rem, 1.4rem, 0);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-0.45rem) scale(1.01);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .benefits-layout,
  .gallery-layout,
  .about-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .gallery-copy h2,
  .about-copy h2,
  .cta-panel h2 {
    max-width: none;
  }

  .hero-visual {
    justify-items: stretch;
  }

  .photo-card--hero,
  .photo-card--tall {
    width: 100%;
    margin-right: 0;
  }

  .floating-note {
    position: static;
    max-width: none;
    order: -1;
  }

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

  .cta-actions {
    justify-content: start;
  }

  .about-media,
  .section-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.3rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    width: 100%;
  }

  .brand-badge {
    padding: 0.15rem 0.3rem;
  }

  .brand-logo {
    height: 4rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions,
  .stat-grid,
  .service-grid,
  .testimonial-grid,
  .contact-grid,
  .gallery-mosaic,
  .steps-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic .photo-card:first-child {
    grid-row: auto;
  }

  .section-cta-actions {
    width: 100%;
  }

  .section-cta-actions .button,
  .contact-card .button {
    width: 100%;
  }

  .about-media {
    grid-template-columns: 1fr;
  }

  .about-photo--accent {
    margin-bottom: 0;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .contact-card,
  .cta-panel,
  .step-card,
  .trust-card,
  .faq-item,
  .section-cta {
    padding: 1.2rem;
  }

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