:root {
  --green-900: #24372a;
  --green-700: #506d55;
  --green-500: #7f9b74;
  --sage: #dfe8dc;
  --sand: #f3eadc;
  --warm: #fbf8f1;
  --white: #ffffff;
  --ink: #202421;
  --muted: #66706a;
  --gold: #c2a768;
  --line: rgba(36, 55, 42, 0.12);
  --shadow: 0 22px 55px rgba(36, 55, 42, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.86);
  box-shadow: 0 14px 34px rgba(36, 55, 42, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green-900);
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--green-900);
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav a {
  opacity: 0.78;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  color: var(--green-700);
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 14px 28px rgba(36, 55, 42, 0.24);
}

.btn-secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.header-cta:hover,
.btn:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 44px rgba(36, 55, 42, 0.14);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: 42px;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 86px);
  margin: -10px auto 0;
  padding: 90px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7.4vw, 6.55rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.6vw, 4.15rem);
}

h3 {
  color: var(--green-900);
  line-height: 1.2;
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 710px;
}

.quick-facts div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

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

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(36, 55, 42, 0.04), rgba(36, 55, 42, 0.28));
}

.hero-media img,
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: center top;
}

.media-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 260px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  color: var(--white);
  background: rgba(36, 55, 42, 0.58);
  backdrop-filter: blur(18px);
}

.media-note span,
.media-note strong {
  display: block;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.mothers-day {
  position: relative;
}

.mothers-day::before {
  position: absolute;
  inset: 32px -24px auto;
  height: 72%;
  content: "";
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(223, 232, 220, 0.78), rgba(243, 234, 220, 0.7));
  z-index: -1;
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 420px);
  align-items: center;
  gap: 42px;
}

.promo-copy {
  max-width: 620px;
}

.promo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.promo-feature {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.promo-feature img {
  width: 100%;
  border-radius: 24px;
}

.promo-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 4px 4px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.promo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(36, 55, 42, 0.08);
  scroll-snap-align: start;
}

.trust-grid,
.service-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.trust-card,
.service-card,
.step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(36, 55, 42, 0.08);
}

.trust-card {
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius);
}

.icon-dot,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--sage);
  font-weight: 800;
}

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

.section-heading p:not(.eyebrow),
.why-copy p,
.instagram-panel p,
.location-copy p,
.final-cta p,
.trust-card p,
.service-card p,
.step p {
  color: var(--muted);
}

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

.service-card {
  grid-column: span 2;
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-card-wide {
  grid-column: span 4;
  min-height: 250px;
}

.service-card::before {
  position: absolute;
  inset: auto -42px -64px auto;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: rgba(194, 167, 104, 0.14);
}

.service-card div {
  position: relative;
  padding: 28px;
}

.service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 28px 0 0 28px;
  border: 1px solid rgba(194, 167, 104, 0.32);
  border-radius: 20px;
  color: var(--green-900);
  background: linear-gradient(135deg, rgba(223, 232, 220, 0.9), rgba(255, 255, 255, 0.86));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-700);
  font-weight: 800;
}

.why,
.location {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1fr;
  align-items: center;
  gap: 52px;
}

.why-media {
  height: 620px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.why-media.real-place {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--sage), var(--sand));
}

.why-media.real-place img {
  height: auto;
  max-height: 100%;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 18px 38px rgba(36, 55, 42, 0.12);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--green-900);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

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

.step {
  min-height: 255px;
  padding: 30px;
  border-radius: var(--radius);
}

.instagram {
  width: 100%;
  max-width: none;
  padding-inline: 16px;
  background:
    linear-gradient(135deg, rgba(36, 55, 42, 0.78), rgba(80, 109, 85, 0.62)),
    url("image2.png") center 42% / cover;
}

.instagram-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 100%);
  min-height: 320px;
  margin: 0 auto;
  color: var(--white);
}

.instagram-panel h2,
.instagram-panel p {
  color: var(--white);
}

.instagram-panel .eyebrow {
  color: var(--sand);
}

.location {
  align-items: stretch;
}

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

.location-info {
  margin: 28px 0;
}

.map-wrap {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.final-cta {
  padding: 90px 16px;
  background: var(--green-900);
}

.final-cta-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 92px;
  color: var(--muted);
}

.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--green-700);
  font-weight: 800;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: #1f9d58;
  box-shadow: 0 18px 36px rgba(31, 157, 88, 0.34);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

  .reveal,
  .header-cta,
  .btn,
  .floating-whatsapp {
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--green-900);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 10px;
    background: var(--white);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251, 248, 241, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 12px;
  }

  .hero,
  .why,
  .location,
  .promo-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-media,
  .why-media {
    min-height: 0;
    height: 460px;
  }

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

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

  .service-card,
  .service-card-wide {
    grid-column: auto;
  }

  .service-card-wide {
    display: block;
  }

  .promo-feature {
    width: min(460px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
  }

  .brand span {
    display: none;
  }

  .hero,
  .section-pad {
    width: calc(100% - 28px);
  }

  .hero {
    gap: 26px;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .promo-actions,
  .instagram-panel,
  .site-footer,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .quick-facts,
  .trust-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .why-media {
    height: 390px;
    border-radius: 28px;
  }

  .media-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .section-pad {
    padding: 58px 0;
  }

  .trust-card,
  .step,
  .service-card div {
    padding: 22px;
  }

  .service-card {
    min-height: 245px;
  }

  .service-mark {
    width: 58px;
    height: 58px;
    margin: 22px 0 0 22px;
    border-radius: 18px;
  }

  .mothers-day::before {
    inset: 22px -10px auto;
    height: 78%;
    border-radius: 30px;
  }

  .promo-layout {
    gap: 26px;
  }

  .promo-gallery {
    grid-auto-columns: 72%;
    gap: 12px;
    margin-inline: -2px;
  }

  .promo-gallery img {
    border-radius: 18px;
  }

  .instagram {
    padding-inline: 14px;
  }

  .instagram-panel {
    display: flex;
    min-height: 380px;
    justify-content: center;
  }

  .map-wrap {
    min-height: 390px;
    border-radius: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 104px;
  }

  .footer-links {
    display: flex;
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 58px;
  }
}
