:root {
  --font-heading: "Aptos Display", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a, button {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

p, li {
  font-size: 16px;
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.035em;
}

h3,
h4 {
  font-size: 22px;
}

.organic-card h3::after,
.matte-card h3::after,
footer h4::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #6DA78C;
  margin-top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(248, 251, 249, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9, 51, 32, .12);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: #093320;
  color: #fff;
  flex: 0 0 auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #093320;
  letter-spacing: -.035em;
}

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

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

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

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

.mobile-panel {
  position: fixed;
  inset: 74px 0 auto 0;
  background: #f8fbf9;
  border-bottom: 1px solid rgba(9, 51, 32, .14);
  box-shadow: 0 24px 60px rgba(9, 51, 32, .16);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  z-index: 45;
}

.mobile-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-section {
  min-height: 100svh;
  padding-top: 94px;
  background-image: linear-gradient(180deg, rgba(5, 31, 20, .84), rgba(5, 31, 20, .78)), url('../images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 14% auto auto -16%;
  width: 42vw;
  height: 42vw;
  min-width: 260px;
  min-height: 260px;
  border-radius: 48% 52% 64% 36% / 40% 38% 62% 60%;
  background: rgba(109, 167, 140, .22);
  filter: blur(2px);
  z-index: -1;
  animation: organicDrift 9s ease-in-out infinite alternate;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: 6%;
  width: 32vw;
  height: 32vw;
  min-width: 220px;
  min-height: 220px;
  border-radius: 65% 35% 44% 56% / 46% 58% 42% 54%;
  background: rgba(201, 162, 74, .16);
  z-index: -1;
  animation: organicDrift 11s ease-in-out infinite alternate-reverse;
}

.hero-title {
  color: #fff !important;
  font-size: clamp(39px, 8vw, 76px);
  line-height: .98;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(28px, 10vw, 39px);
  }
}

.section-title {
  color: #111827 !important;
  font-size: clamp(31px, 5vw, 54px);
  line-height: 1.04;
}

@media (max-width: 767px) {
  .section-title {
    font-size: clamp(22px, 8vw, 31px);
  }
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(109, 167, 140, .18);
  color: #093320;
  border-left: 4px solid #6DA78C;
  padding: .45rem .75rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.title-rule {
  display: block;
  width: 78px;
  height: 4px;
  background: #6DA78C;
  margin-top: 18px;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 54px;
  padding: .9rem 1.35rem;
  background: #093320;
  color: #fff !important;
  border: 1px solid #093320;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255,255,255,.72);
  opacity: .75;
  animation: pulseGlow 1.8s ease-out infinite;
  pointer-events: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #051f14;
  border-color: #051f14;
}

.cta-light {
  background: #fff;
  color: #093320 !important;
  border-color: #fff;
}

.cta-light:hover {
  background: #eaf4ef;
  color: #093320 !important;
}

.hero-stars {
  color: #C9A24A;
  font-size: 24px;
  letter-spacing: .2em;
}

.review-icon-row img {
  width: auto;
  height: 48px;
  max-width: 92px;
  object-fit: contain;
  background: rgba(255,255,255,.94);
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.45);
}

.glass-panel {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
}

.organic-card {
  background: #fff;
  border: 1px solid rgba(9, 51, 32, .12);
  box-shadow: 0 24px 70px rgba(9, 51, 32, .08);
}

.matte-card {
  background: #f8fbf9;
  border: 1px solid rgba(9, 51, 32, .12);
}

.dark-band {
  background: radial-gradient(circle at 10% 10%, rgba(109,167,140,.24), transparent 32%), #093320;
  color: #f8fbf9;
}

.dark-band h2,
.dark-band h3,
.dark-band h4 {
  color: #fff !important;
}

.dark-band .mini-badge {
  color: #fff;
  border-left-color: #fff;
  background: rgba(255, 255, 255, .14);
}

.dark-band .logo-text {
  color: #fff;
}

.dark-band p,
.dark-band li {
  color: #e8f2ed;
}

.image-shell {
  position: relative;
  overflow: hidden;
  background: #dfece5;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109,167,140,.24), transparent 44%);
  pointer-events: none;
}

.info-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .info-split {
    grid-template-columns: 70% 30%;
  }

  .info-split.reverse {
    grid-template-columns: 30% 70%;
  }
}

.service-icon {
  width: 54px;
  height: 54px;
  color: #093320;
  background: rgba(109,167,140,.2);
  padding: 12px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  background: #fff;
  color: #1f2937;
  border: 1px solid rgba(9, 51, 32, .12);
  box-shadow: 0 18px 50px rgba(9, 51, 32, .07);
  min-height: 100%;
}

@media (min-width: 768px) {
  .reviews-track {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
}

.sticky-call-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex !important;
  justify-content: center;
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(5, 31, 20, .94);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}

.sticky-call-mobile.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .sticky-call-mobile {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes pulseGlow {
  0% { transform: scale(.98); opacity: .72; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

@keyframes organicDrift {
  from { transform: translate3d(0,0,0) rotate(0deg); }
  to { transform: translate3d(14px, -10px, 0) rotate(6deg); }
}

.footer-text,
.footer-text p,
.footer-text a,
.footer-text li {
  font-size: 14px;
}

.pb-sticky-safe {
  padding-bottom: 92px;
}

@media (min-width: 768px) {
  .pb-sticky-safe {
    padding-bottom: 0;
  }
}
