:root {
  --primary: #6b8e23;
  --secondary: #f4c2a1;
  --background: #f5f0e6;
  --accent: #e07a5f;
  --text: #2f2f2f;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf4;
  --border: rgba(47, 47, 47, 0.12);
  --shadow: 0 24px 60px rgba(61, 56, 42, 0.12);
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Manrope", "Segoe UI", sans-serif;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107, 142, 35, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(224, 122, 95, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, var(--background) 55%, #efe6d5 100%);
  min-height: 100vh;
}

img,
video {
  display: block;
  width: 100%;
}

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

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

.page-shell {
  padding: 24px;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.7);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  position: sticky;
  top: 20px;
  z-index: 20;
}

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

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(47, 47, 47, 0.68);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.95rem;
  color: rgba(47, 47, 47, 0.8);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(47, 47, 47, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero,
.section {
  margin-bottom: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.hero-copy,
.hero-card,
.info-card,
.review-summary-card,
.review-embed-card,
.contact-card,
.gallery-item,
.testimonial-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card-surface,
.info-card,
.review-summary-card,
.review-embed-card,
.contact-card,
.gallery-item,
.testimonial-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.hero-copy,
.hero-card-surface {
  padding: 40px;
  border-radius: 36px;
}

.eyebrow,
.card-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  margin-top: 14px;
  line-height: 0.9;
  max-width: 8.2ch;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin-top: 10px;
}

h3 {
  font-size: 1.9rem;
}

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

.hero-text {
  margin-top: 22px;
  max-width: 40ch;
  font-size: 1.02rem;
}

.hero-actions,
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.gallery-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.gallery-filter:hover,
.gallery-filter.is-active {
  transform: translateY(-2px);
}

.button-primary,
.gallery-filter.is-active {
  background: linear-gradient(135deg, var(--primary), #8aa94d);
  color: #fffaf4;
  box-shadow: 0 16px 28px rgba(107, 142, 35, 0.24);
}

.button-secondary,
.gallery-filter {
  background: rgba(244, 194, 161, 0.22);
  border-color: rgba(224, 122, 95, 0.2);
  color: var(--text);
}

.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-highlights article {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(47, 47, 47, 0.08);
}

.hero-highlights strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.hero-card {
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 194, 161, 0.68), transparent 34%),
    linear-gradient(160deg, rgba(107, 142, 35, 0.92), rgba(76, 99, 24, 0.95));
  position: relative;
  min-height: 0;
  align-self: start;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-card-surface {
  min-height: 0;
  color: #fffaf4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.07));
}

.hero-card-surface .card-label {
  color: rgba(255, 250, 244, 0.76);
}

.hero-card-surface h2 {
  font-size: clamp(2rem, 2.7vw, 2.9rem);
  line-height: 0.98;
  max-width: 15ch;
  text-wrap: balance;
}

.hero-card-surface p {
  margin-top: 18px;
  max-width: 36ch;
  font-size: 0.98rem;
}

.pill-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  max-height: 440px;
  overflow: auto;
  padding-right: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
  line-height: 1.3;
  white-space: normal;
  text-wrap: balance;
}

.section {
  padding: 34px;
  border-radius: 36px;
  background: rgba(255, 250, 244, 0.5);
  border: 1px solid rgba(47, 47, 47, 0.08);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 70ch;
}

.section-grid .two-column-grid,
.reviews-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.reviews-layout {
  align-items: start;
}

.info-card,
.review-summary-card,
.review-embed-card,
.contact-card,
.testimonial-card {
  padding: 28px;
  border-radius: 28px;
}

.warm-card,
.soft-card {
  background: linear-gradient(180deg, rgba(244, 194, 161, 0.16), rgba(255, 255, 255, 0.68));
}

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

.timing-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(47, 47, 47, 0.15);
}

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

.testimonial-card {
  display: grid;
  gap: 18px;
  align-content: start;
  grid-template-rows: auto 1fr auto;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-card .tag {
  justify-self: start;
  align-self: start;
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta span {
  color: rgba(47, 47, 47, 0.62);
}

.gallery-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 194, 161, 0.14));
}

.gallery-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(244, 194, 161, 0.6), transparent 34%),
    linear-gradient(135deg, rgba(107, 142, 35, 0.9), rgba(224, 122, 95, 0.8));
}

.gallery-media img,
.gallery-media video {
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff8f0;
  text-align: center;
}

.gallery-content {
  padding: 18px 18px 22px;
  display: grid;
  gap: 8px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(107, 142, 35, 0.11);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.review-score-row {
  display: flex;
  align-items: end;
  gap: 16px;
  margin: 20px 0 12px;
}

.review-score-row strong {
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 0.9;
}

.review-score-row span {
  font-weight: 600;
}

.review-snippets {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.review-snippet {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(47, 47, 47, 0.08);
}

.review-embed-card {
  min-height: 0;
  align-self: start;
}

.embed-shell {
  min-height: 520px;
  overflow: hidden;
  display: grid;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(244, 194, 161, 0.2), rgba(255, 255, 255, 0.7));
}

.embed-shell iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 24px;
}

.embed-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.embed-placeholder-copy {
  max-width: 30ch;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-card p + p,
.text-link {
  margin-top: 12px;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.floating-whatsapp,
.floating-directions {
  position: fixed;
  bottom: 22px;
  z-index: 25;
  min-width: 146px;
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.floating-whatsapp {
  right: 22px;
  background: linear-gradient(135deg, #3d6f25, var(--primary));
  color: #fffaf4;
  box-shadow: 0 20px 40px rgba(61, 111, 37, 0.28);
}

.floating-directions {
  left: 22px;
  background: linear-gradient(135deg, #bb5f34, var(--accent));
  color: #fffaf4;
  box-shadow: 0 20px 40px rgba(176, 83, 46, 0.28);
}

.reveal {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 1024px) {
  .hero,
  .section-grid .two-column-grid,
  .reviews-layout,
  .contact-layout,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .pill-row {
    max-height: 360px;
  }
}

@media (max-width: 820px) {
  .hero,
  .section {
    margin-bottom: 18px;
  }

  .page-shell {
    padding: 16px;
  }

  .site-header {
    position: static;
    border-radius: 22px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 18px;
    text-align: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .brand > span:last-child {
    min-width: 0;
    flex: 0 1 520px;
    text-align: left;
  }

  .brand strong {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .brand small {
    margin-top: 4px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 1.25rem;
    flex: 0 0 auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
  }

  .site-header.menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(47, 47, 47, 0.06);
    text-align: center;
    font-size: 0.95rem;
  }

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

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .section-grid .two-column-grid,
  .reviews-layout,
  .contact-layout,
  .testimonial-grid,
  .gallery-grid,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .pill-row {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .hero-copy,
  .hero-card-surface,
  .section,
  .info-card,
  .review-summary-card,
  .review-embed-card,
  .contact-card,
  .testimonial-card {
    padding: 24px;
  }

  #testimonials,
  #gallery {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  h2 {
    line-height: 1;
  }

  .floating-whatsapp,
  .floating-directions {
    bottom: 16px;
    min-width: 132px;
    min-height: 52px;
    padding: 0 18px;
  }

  .floating-whatsapp {
    right: 16px;
  }

  .floating-directions {
    left: 16px;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 12px;
  }

  .site-header {
    padding: 16px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .brand > span:last-child {
    flex: none;
    text-align: center;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }
}
