:root {
  --cream: #fff8dc;
  --white: #fffdf8;
  --leaf: #1e7a39;
  --leaf-dark: #125425;
  --mango: #f0a326;
  --berry: #8a1c2a;
  --text: #1d2218;
  --muted: #55614d;
  --line: rgba(29, 34, 24, 0.12);
  --shadow: 0 24px 70px rgba(30, 63, 27, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 163, 38, 0.28), transparent 25%),
    radial-gradient(circle at top right, rgba(30, 122, 57, 0.18), transparent 28%),
    linear-gradient(180deg, #fff7d2 0%, #fffdf6 36%, #f4fff4 100%);
}

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

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

.site-header,
.hero,
.section,
.site-footer,
.social-proof {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.72);
}

.eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf-dark);
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 700;
}

.brand-subtitle {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav,
.header-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
}

.primary-button,
.ghost-button,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  box-shadow: 0 18px 40px rgba(30, 122, 57, 0.26);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.primary-button:hover,
.ghost-button:hover,
.floating-whatsapp:hover,
.offer-card:hover,
.feature-grid article:hover,
.steps article:hover,
.contact-card:hover,
.hero-mini-card:hover,
.hero-image-frame:hover {
  transform: translateY(-2px);
}

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

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 5.1rem);
  max-width: 12ch;
}

.hero-text,
.offer-card p,
.feature-grid p,
.steps p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  margin-top: 1.4rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.45rem 0 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "\2022";
  color: var(--mango);
  font-size: 1.3rem;
  margin-right: 0.55rem;
}

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

.hero-image-frame,
.hero-mini-card,
.offer-card,
.feature-grid article,
.steps article,
.lead-form,
.contact-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-image-frame {
  padding: 1rem;
}

.hero-image-frame img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.hero-mini-card {
  padding: 1.3rem;
}

.card-label {
  margin: 0 0 0.9rem;
  color: var(--leaf-dark);
  font-weight: 700;
}

.request-list {
  display: grid;
  gap: 1rem;
}

.request-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.request-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.request-list span {
  display: block;
  color: var(--berry);
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.social-proof div {
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.social-proof strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.22rem;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 241, 193, 0.7), rgba(246, 255, 240, 0.86));
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  max-width: 16ch;
}

.offer-grid,
.feature-grid,
.steps,
.contact-section,
.contact-cards,
.pricing-shell,
.pricing-grid,
.pricing-row {
  display: grid;
  gap: 1rem;
}

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

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

.pricing-shell {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 1.5rem;
}

.pricing-copy {
  position: sticky;
  top: 1rem;
}

.pricing-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.pricing-feature {
  margin: 1.25rem 0 1rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.pricing-feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.pricing-note {
  margin: 0;
  font-weight: 700;
  color: var(--leaf-dark);
}

.pricing-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

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

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

.pricing-row-single {
  grid-template-columns: minmax(0, 1fr);
}

.pricing-row-single .pricing-card {
  max-width: 420px;
}

.pricing-card {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.price-list {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.price-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list dt {
  color: var(--muted);
}

.price-list dd {
  margin: 0;
  font-weight: 700;
  color: var(--berry);
  text-align: right;
}

.offer-card,
.feature-grid article,
.steps article {
  padding: 1.4rem;
}

.menu-item-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: start;
}

.menu-item-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.menu-item-gallery-single {
  grid-template-columns: 1fr;
}

.menu-item-gallery-single img {
  height: 220px;
}

.offer-card h3,
.feature-grid h3,
.steps h3 {
  margin-top: 0;
}

.steps span {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  color: var(--berry);
}

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

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}

.contact-card {
  padding: 1rem 1.1rem;
}

.contact-card span {
  display: block;
  color: var(--leaf-dark);
  margin-bottom: 0.3rem;
}

.lead-form {
  padding: 1.55rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(29, 34, 24, 0.12);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(30, 122, 57, 0.23);
  border-color: var(--leaf);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note,
.form-status {
  margin-bottom: 0;
  color: var(--muted);
}

.form-status {
  min-height: 1.4rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 4rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
}

.thank-you-shell {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-card {
  width: 100%;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .site-header {
    position: static;
  }

  .site-header,
  .hero,
  .social-proof,
  .offer-grid,
  .feature-grid,
  .steps,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .footer-links {
    flex-wrap: wrap;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .pricing-shell,
  .pricing-grid,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    position: static;
  }

  .hero {
    padding-top: 2rem;
  }

  .brand-lockup {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .site-footer,
  .social-proof {
    width: min(100% - 1rem, 1140px);
  }

  .hero h1 {
    max-width: none;
  }

  .section,
  .site-footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .offer-card,
  .feature-grid article,
  .steps article,
  .pricing-card,
  .lead-form,
  .contact-card {
    padding: 1.1rem;
  }

  .menu-item-gallery img,
  .menu-item-gallery-single img,
  .pricing-feature img {
    height: 210px;
  }

  .floating-whatsapp {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
