:root {
  --bg: #f3f4f6;
  --accent: #d97706;
  --text: #374151;
  --radius: 4px;
  --spacing-fluid: clamp(1rem, 5vw, 3rem);
  --nav-height: 80px;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
  background-color: var(--bg);
  color: var(--text);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  line-height: 1.5;
  padding-bottom: env(safe-area-inset-bottom);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-fluid);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand svg {
  height: 28px;
  width: auto;
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  color: var(--text);
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.btn:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.burger .line {
  width: 24px;
  height: 3px;
  background-color: var(--text);
  border-radius: var(--radius);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.burger.is-active .line1 {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-active .line2 {
  opacity: 0;
}

.burger.is-active .line3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--text);
  color: var(--bg);
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav.is-open {
  transform: translateY(0);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 1.5rem var(--spacing-fluid);
  gap: 1.25rem;
}

.mobile-nav-inner a {
  font-size: 1.125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-inner a:last-child {
  border-bottom: none;
}

/* Footer Styles */
.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-fluid);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-brand .tagline {
  color: var(--text);
  opacity: 0.8;
  margin-top: 0.5rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact .contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact .contact-email:hover {
  color: var(--accent);
}

.icon {
  width: 20px;
  height: 20px;
}

/* Feature CSS Handlers for user requests (Hero, Services, Reviews) */
.hero-split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.before-after-container {
  position: relative;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-fluid);
}
.reviews-section {
  background: #ffffff;
  padding: var(--spacing-fluid) 0;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-bottom-nav {
    display: block;
  }
  .btn {
    display: none;
  }
  .hero-split-screen {
    grid-template-columns: 1fr;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */

.bg-accent {
  background-color: #d97706;
}

