:root {
  --bg-main: #f2f7f2;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  --surface: #ffffff;
  --text-main: #1f3426;
  --text-muted: #4e6a57;
  --accent: #50c070;
  --accent-strong: #20b0a0;
  padding: 7px 10px;
  --glow: rgba(80, 192, 112, 0.22);
  font-weight: 700;
  font-size: 0.92rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 100% 0%, #d8efd8 0, transparent 30%),
    radial-gradient(circle at 0% 90%, #d6f1ea 0, transparent 34%),
    var(--bg-main);
}

body > main {
  flex: 1 0 auto;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

p {
  margin: 0 0 14px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 252, 248, 0.9);
  backdrop-filter: blur(9px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand-logo {
  width: 48px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 12px;
}

.nav a {
  text-decoration: none;
  color: var(--text-main);
  padding: 8px 11px;
  border-radius: 10px;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  background: #e9f5ea;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-main);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
}

.hero {
  padding: 84px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
}

.lead {
  color: var(--text-muted);
  max-width: 56ch;
}

.status-pill {
  display: inline-block;
  margin-top: 10px;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  border-radius: 12px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--accent), var(--accent-strong));
}

.btn-outline {
  color: var(--accent-strong);
  border-color: var(--accent);
  background: transparent;
}

.hero-card,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.service-card {
  text-align: left;
}

.service-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
  margin-bottom: 10px;
}

.service-meta {
  margin-bottom: 6px;
  color: var(--text-muted);
}

.hero-media {
  width: min(320px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

.section {
  padding: 44px 0 70px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(248, 252, 248, 0), rgba(248, 252, 248, 0.82));
}

.cards {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-contact {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  justify-items: center;
  align-items: start;
}

.gallery-card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin: 0 auto 12px;
  display: block;
}

.gallery-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin: 0 auto 12px;
  display: block;
  background: #000;
}

.gallery-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-chips span {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text-main);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.logo-gallery {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-card img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.brand-mark-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.icon-list {
  margin: 0;
  padding-left: 18px;
}

.feedback-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 10px auto;
  background: #fff;
}

.feedback-error {
  border-color: #f0b7b7;
  background: #fff4f4;
}

.feedback-success {
  border-color: #bfe8ca;
  background: #f3fff6;
}

.blog-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.blog-list-card,
.blog-content-card,
.blog-comments-card,
.blog-form-card {
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(80, 192, 112, 0.1), transparent 42%),
    #fff;
}

.blog-content-card,
.blog-form-card {
  border-color: #cde7d5;
  box-shadow: 0 14px 32px rgba(22, 50, 35, 0.09);
}

.blog-sidebar {
  align-self: start;
  position: sticky;
  top: 90px;
}

.blog-post-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.blog-post-link {
  display: block;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid #d2e4d8;
  border-radius: 14px;
  padding: 11px 13px;
  background: linear-gradient(180deg, #ffffff, #f5fbf7);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-post-link:hover,
.blog-post-link.active {
  border-color: #91d1a5;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 52, 38, 0.11);
}

.blog-content {
  min-height: 100%;
}

.blog-video {
  width: 100%;
  max-height: 340px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #000;
  margin-bottom: 14px;
}

.media-link {
  display: block;
}

.promo-featured-image {
  width: 100%;
  max-height: 340px;
  border-radius: 14px;
  border: 1px solid var(--line);
  object-fit: cover;
  margin-bottom: 14px;
  display: block;
}

.blog-media-contain {
  height: 340px;
  object-fit: contain;
  background: #f3f7f4;
}

.blog-article-body {
  color: var(--text-main);
  line-height: 1.72;
  font-size: 1.04rem;
}

.comment-item {
  border: 1px solid #d7e8dd;
  border-radius: 16px;
  padding: 14px 15px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fcf9);
  box-shadow: 0 8px 20px rgba(31, 52, 38, 0.05);
}

.blog-comment-form label {
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.blog-comment-form input,
.blog-comment-form textarea {
  width: 100%;
  border: 1px solid #c8dfcf;
  border-radius: 12px;
  padding: 11px 12px;
  background: #fbfffc;
  color: var(--text-main);
  font: inherit;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-comment-form input:focus,
.blog-comment-form textarea:focus {
  outline: none;
  border-color: #6bc188;
  box-shadow: 0 0 0 3px rgba(80, 192, 112, 0.2);
}

.reviews-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.12fr 0.88fr;
}

.reviews-list-card,
.reviews-form-card {
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(80, 192, 112, 0.1), transparent 42%),
    #fff;
}

.reviews-form-card {
  border-color: #cde7d5;
  box-shadow: 0 14px 32px rgba(22, 50, 35, 0.09);
}

.reviews-form-card .contact-form label {
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.reviews-form-card .contact-form input,
.reviews-form-card .contact-form textarea {
  width: 100%;
  border: 1px solid #c8dfcf;
  border-radius: 12px;
  padding: 11px 12px;
  background: #fbfffc;
  color: var(--text-main);
  font: inherit;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reviews-form-card .contact-form input:focus,
.reviews-form-card .contact-form textarea:focus {
  outline: none;
  border-color: #6bc188;
  box-shadow: 0 0 0 3px rgba(80, 192, 112, 0.2);
}

.review-item {
  border: 1px solid #d7e8dd;
  border-radius: 16px;
  padding: 14px 15px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fcf9);
  box-shadow: 0 8px 20px rgba(31, 52, 38, 0.05);
}

.review-stars {
  margin-bottom: 6px;
  color: #f2a64a;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 8px rgba(242, 166, 74, 0.28);
}

.rating-block {
  margin-bottom: 14px;
}

.rating-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.rating-stars {
  border: 0;
  margin: 0;
  padding: 8px 10px;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 8px;
  border-radius: 14px;
  background: #f3faf5;
  min-width: 280px;
}

.rating-stars input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rating-stars label {
  font-size: 2rem;
  line-height: 1;
  color: #a9bbb0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid #d5e5da;
  background: #fff;
  transition: transform 0.16s ease, color 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
  color: #fff;
  border-color: #f1b357;
  background: linear-gradient(180deg, #f8c365, #f2a64a);
  box-shadow: 0 6px 14px rgba(242, 166, 74, 0.3);
}

.rating-stars label:active {
  transform: scale(0.92);
}

.rating-help {
  margin: 8px 2px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.schedule-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.schedule-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.footer-wrap {
  min-height: 74px;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-social-wrap {
  display: grid;
  gap: 4px;
  justify-items: end;
  padding-right: 116px;
}

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #b7d8c5;
  background: linear-gradient(180deg, #ffffff, #edf8f2);
  color: var(--accent-strong);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: #7dc79b;
  box-shadow: 0 8px 16px rgba(31, 52, 38, 0.12);
}

.footer-credit {
  margin: 0;
  font-size: 0.7rem;
  color: #6d8e7b;
}

.footer-credit-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(109, 142, 123, 0.5);
}

.footer-credit-link:hover {
  color: var(--accent-strong);
  border-bottom-color: var(--accent-strong);
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  text-decoration: none;
  background: #3eb265;
  color: #fff;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.in-view {
  animation: revealUp 0.7s ease forwards;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .cards,
  .grid-contact,
  .logo-gallery,
  .brand-mark-wrap {
    grid-template-columns: 1fr;
  }

  .blog-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    right: 4%;
    top: 70px;
    width: min(260px, 92%);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-wrap {
    justify-items: start;
    padding-right: 0;
  }
}
