:root {
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

h1 {
  font-size: clamp(39px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(31px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3,
h4 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
}

p,
li,
a,
button,
input,
textarea {
  font-size: 16px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(109, 167, 140, 0.22);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}

.desktop-nav,
.desktop-phone {
  display: none !important;
}

.mobile-menu-button {
  display: inline-flex !important;
}

@media (min-width: 768px) {
  .desktop-nav,
  .desktop-phone {
    display: flex !important;
  }

  .mobile-menu-button,
  .mobile-menu-panel,
  .mobile-sticky-call {
    display: none !important;
  }
}

.mobile-menu-panel {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 60;
  background: #ffffff;
  border-top: 1px solid rgba(29, 78, 56, 0.18);
  box-shadow: 0 24px 60px rgba(11, 32, 24, 0.18);
}

.mobile-menu-panel.is-open {
  display: block;
}

.hero-section {
  min-height: 780px;
  background-image: linear-gradient(180deg, rgba(7, 22, 16, 0.74), rgba(7, 22, 16, 0.66)), url('../images/hero-kitchen.jpg');
  background-position: center;
  background-size: cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-section h1,
.hero-section p {
  color: #ffffff;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(5, 15, 11, 0.26);
}

.light-glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 167, 140, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(29, 78, 56, 0.1);
}

.orb {
  position: absolute;
  width: 260px;
  height: 118px;
  border-radius: 999px;
  background: rgba(109, 167, 140, 0.26);
  filter: blur(2px);
  transform: rotate(-18deg);
}

.orb.one {
  top: 16%;
  left: -90px;
}

.orb.two {
  right: -70px;
  bottom: 14%;
  background: rgba(245, 184, 75, 0.2);
}

.stars {
  color: #F5B84B;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.review-icon-row img {
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  padding: 6px 8px;
}

.cta-button,
.header-phone,
.mobile-phone-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  background: #1D4E38;
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #1D4E38;
  border-radius: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.46);
  animation: pulseGlow 2.2s infinite;
}

.cta-button:hover,
.header-phone:hover,
.mobile-phone-link:hover {
  background: #123928;
  border-color: #123928;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hero-section .cta-button {
  background: #ffffff;
  border-color: #ffffff;
  color: #0B2018 !important;
}

.hero-section .cta-button:hover {
  background: #F3F8F5;
  color: #0B2018 !important;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42); }
  70% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109, 167, 140, 0.18);
  color: #123928;
  border-left: 4px solid #6DA78C;
  padding: 7px 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.heading-rule {
  width: 72px;
  height: 4px;
  background: #6DA78C;
  margin-top: 18px;
}

.dark-section {
  background: radial-gradient(circle at top left, rgba(109, 167, 140, 0.22), transparent 34%), #0B2018;
  color: #F9FAFB;
}

.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section li {
  color: #ffffff;
}

.dark-section .section-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.card-flat {
  background: #ffffff;
  color: #374151;
  border: 1px solid rgba(29, 78, 56, 0.14);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(29, 78, 56, 0.08);
}

.card-flat h3,
.card-flat h4,
.card-flat p,
.card-flat li {
  color: #111827;
}

.card-flat h3::after,
.card-flat h4::after,
.light-glass h3::after,
.light-glass h4::after {
  content: '';
  display: block;
  width: 46px;
  height: 3px;
  background: #6DA78C;
  margin-top: 12px;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #E5F0EA;
  color: #1D4E38;
  border-left: 4px solid #6DA78C;
  flex: 0 0 auto;
}

.icon-box svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}

.split-70-30 {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .split-70-30 {
    grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  }
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.issue-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(29, 78, 56, 0.11);
}

.issue-list li::before {
  content: '';
  width: 9px;
  height: 9px;
  margin-top: 8px;
  background: #6DA78C;
  flex: 0 0 auto;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 10px;
}

@media (min-width: 900px) {
  .review-slide {
    flex-basis: 33.333333%;
  }
}

.review-card {
  min-height: 300px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(29, 78, 56, 0.22);
  background: #ffffff;
  color: #123928;
  font-size: 22px;
  font-weight: 900;
}

.faq-item summary {
  cursor: pointer;
  color: #111827;
  font-weight: 800;
  font-size: 18px;
}

.mobile-sticky-call {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: #0B2018;
  color: #ffffff !important;
  text-align: center;
  padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(110%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-call.is-visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  body.has-sticky-call {
    padding-bottom: 78px;
  }
}

@media (min-width: 768px) {
  body.has-sticky-call {
    padding-bottom: 0;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.footer-area {
  background: #081A13;
  color: #ffffff;
  font-size: 14px;
}

.footer-area *:not(.logo-text) {
  font-size: 14px;
}

.footer-area p,
.footer-area a,
.footer-area li {
  color: #ffffff;
  font-size: 14px;
}

.footer-area h3,
.footer-area h4 {
  color: #ffffff;
}

.footer-area .logo-text {
  color: #ffffff;
}

.footer-area a:hover {
  color: #D8F1E4;
}

.no-radius,
.card-flat,
.light-glass,
.glass-panel,
button,
.cta-button,
.header-phone,
.mobile-phone-link,
input,
textarea {
  border-radius: 0;
}
