:root {
  --orange-50: #fff4e5;
  --orange-200: #ffd1a6;
  --orange-500: #f28c28;
  --orange-600: #de7a1f;
  --green-50: #f1f7ee;
  --green-200: #cfe5c8;
  --green-500: #6aa36f;
  --cream: #fffaf4;
  --ink-900: #1b1b1b;
  --ink-700: #3c3c3c;
  --ink-500: #5a5a5a;
  --white: #ffffff;
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 16px 30px rgba(0, 0, 0, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 20%, #fff8ef 0, transparent 55%),
    radial-gradient(circle at 90% 10%, #f0f7ec 0, transparent 50%), var(--cream);
  color: var(--ink-900);
  line-height: 1.6;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.section {
  padding: 90px 0;
  position: relative;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink-900);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.55;
}

.blob--orange {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffd3a3, transparent 70%);
  top: -120px;
  right: -100px;
}

.blob--green {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #cfe8c9, transparent 70%);
  bottom: 80px;
  left: -120px;
}

.blob--cream {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fff1de, transparent 70%);
  bottom: -120px;
  right: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-image {
  height: 44px;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: var(--shadow-md);
}

.sr-only {
  color: var(--orange-500);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
}

.hero {
  padding-top: 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--orange-600);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-700);
  margin-bottom: 24px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--orange-500);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.1);
}

.btn--ghost {
  border-color: rgba(0, 0, 0, 0.15);
  background: transparent;
}

.trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust div {
  background: var(--white);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  min-width: 140px;
}

.trust strong {
  display: block;
  font-size: 1.1rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-card {
  position: absolute;
  bottom: -28px;
  left: 24px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.hero-card__pill {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: var(--green-200);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
}

.stats {
  padding-top: 40px;
}

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

.stat {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.section-heading {
  max-width: 620px;
  margin-bottom: 40px;
}

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

.card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.card ul {
  margin-top: 18px;
  padding-left: 18px;
  color: var(--ink-700);
}

.card li {
  margin-bottom: 8px;
}

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

.presentation-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.presentation-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
}

.presentation-card li {
  margin-bottom: 8px;
}

.accent {
  background: linear-gradient(120deg, var(--orange-50), var(--green-50));
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.split-media img {
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.pill-list span {
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}

.callout {
  background: var(--white);
  border-left: 4px solid var(--orange-500);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

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

.benefit {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.gallery {
  padding-bottom: 110px;
}

.carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 55vw;
  gap: 3vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 22.5vw 14px;
}

.carousel__track::-webkit-scrollbar {
  height: 8px;
}

.carousel__track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.carousel__slide {
  scroll-snap-align: center;
  background: var(--white);
  padding: 16px;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.carousel__slide img {
  border-radius: 14px;
  height: auto;
  max-height: min(60vh, 520px);
  width: 100%;
  object-fit: contain;
  background: var(--cream);
}

.carousel__slide figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-700);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  font-size: 28px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.carousel__btn[data-carousel-prev] {
  left: 24px;
}

.carousel__btn[data-carousel-next] {
  right: 24px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel__dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.carousel__dots button.is-active {
  width: 24px;
  background: var(--orange-500);
}

.avis-google {
  background: var(--orange-50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.reviews-card,
.reviews-note {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.reviews-card p {
  margin-bottom: 16px;
  color: var(--ink-700);
}

.reviews-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.reviews-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq {
  background: var(--green-50);
}

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

.faq details {
  background: var(--white);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.contact {
  padding-bottom: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-note {
  margin-top: 12px;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  font-weight: 500;
}

.contact-list a {
  width: fit-content;
  position: relative;
  padding-bottom: 2px;
}

.contact-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--orange-500);
  opacity: 0.7;
}

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


.contact-info {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.footer {
  padding: 40px 0 60px;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
}

.footer-note {
  text-align: right;
  color: var(--ink-500);
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cards,
  .presentation-grid,
  .stats-grid,
  .benefits,
  .reviews-grid,
  .contact-grid,
  .footer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    background: var(--white);
    flex-direction: column;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-media img {
    height: 380px;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

  .carousel__btn {
    display: none;
  }

  .btn--call {
    display: inline-flex;
  }

  .carousel__track {
    grid-auto-columns: 88vw;
    padding: 0 6vw 14px;
  }

  .carousel__slide img {
    height: auto;
    max-height: min(48vh, 420px);
  }

  .footer-note {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }
}

html {
  scroll-behavior: smooth;
}
