/* ==========================================
   BETTER AVENUE LAWN & LANDSCAPE
   Global Stylesheet
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
  /* Brand colors */
  --sage:        #7A8C68;
  --sage-dark:   #566249;
  --sage-light:  #B5C4A4;
  --sage-mist:   #EBF0E5;
  --brown:       #8B6B50;
  --brown-light: #C4A882;
  --cream:       #F8F3EB;
  --cream-warm:  #EDE6D6;
  --cream-deep:  #D9CEB8;
  --charcoal:    #2A2A27;
  --charcoal-mid:#4A4A45;
  --stone:       #7A7A74;
  --stone-light: #B8B8B2;
  --white:       #FFFFFF;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 110px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
  line-height: 1.75;
  color: var(--charcoal-mid);
}

.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-2xl);
}

.section--alt {
  background-color: var(--white);
}

.section--dark {
  background-color: var(--charcoal);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--cream);
}

.section--sage {
  background-color: var(--sage-mist);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-header .label {
  display: block;
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.1rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 24px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--sage);
  color: var(--white);
  border: 2px solid var(--sage);
}

.btn--primary:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(86, 98, 73, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}

.btn--outline:hover {
  background-color: var(--sage);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn--brown {
  background-color: var(--brown);
  color: var(--white);
  border: 2px solid var(--brown);
}

.btn--brown:hover {
  background-color: #705545;
  border-color: #705545;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 107, 80, 0.3);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background-color: rgba(248, 243, 235, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.site-header--solid {
  background-color: var(--cream);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.575rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Nav Actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: color var(--transition);
}

.nav-phone:hover {
  color: var(--sage-dark);
}

.nav-phone svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.nav-phone-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
  align-items: center;
  text-align: center;
}

.nav-phone-number {
  font-size: 1.3rem;
  font-weight: 500;
}

.nav-phone-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Phone number + "Call or Text" stacked label ── */
.phone-call-label-wrap {
  display: flex;
  flex-direction: column;
}

.phone-call-label {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1;
  margin-top: 0.1rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 12px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--cream-warm);
  transition: color var(--transition);
}

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

.mobile-menu a:hover {
  color: var(--sage-dark);
}

.mobile-menu .mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--cream-deep);
  font-weight: 600;
  color: var(--sage-dark);
}

.mobile-menu .btn {
  align-self: flex-start;
  margin-top: var(--space-xs);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background-color: var(--charcoal);
  color: var(--cream-warm);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-name {
  color: var(--cream);
  font-size: 1.2rem;
}

.footer-brand .logo-tagline {
  color: var(--stone-light);
}

.footer-brand p {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--stone-light);
  max-width: 280px;
  line-height: 1.7;
}

.footer-brand .footer-logo-mark {
  margin-bottom: var(--space-sm);
}

.footer-section h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: var(--space-sm);
  color: var(--cream);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section ul a {
  font-size: 0.9rem;
  color: var(--stone-light);
  transition: color var(--transition);
}

.footer-section ul a:hover {
  color: var(--cream);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--stone-light);
  margin-bottom: 0.6rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  width: 15px;
  height: 15px;
  color: var(--sage-light);
}

.footer-contact-item a {
  color: var(--stone-light);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: flex-start;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--stone);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-height) + var(--space-lg));
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: kenBurns 24s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  33%  { transform: scale(1.07) translate(-1.5%, 0.5%); }
  66%  { transform: scale(1.12) translate(1%, -1%); }
  100% { transform: scale(1.06) translate(-0.5%, 1%); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 30, 25, 0.80) 0%,
    rgba(30, 30, 25, 0.45) 40%,
    rgba(30, 30, 25, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content .label {
  color: var(--sage-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.hero-content h1 {
  color: var(--white);
  font-weight: 500;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  font-style: italic;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--sage-light);
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-trust-strip {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.45rem;
  max-width: 100%;
  margin-top: var(--space-md);
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-trust-strip:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

.hero-trust-strip strong {
  color: var(--white);
}

.hero-trust-stars {
  color: #FBBC05;
  font-size: 0.82rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.hero-trust-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  background-color: var(--sage);
  padding-block: var(--space-xl);
}

.cta-banner .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-top: 0.5rem;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color var(--transition);
}

.cta-phone:hover {
  color: var(--white);
}

/* ==========================================
   SERVICES GRID
   ========================================== */
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--sage-light);
  box-shadow: 0 12px 40px rgba(122, 140, 104, 0.15);
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-img-wrap {
  overflow: hidden;
}

/* ── Mini BA slider (Seasonal Cleanup service card) ── */
.sc-ba-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.sc-ba-after,
.sc-ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.sc-ba-before {
  clip-path: inset(0 50% 0 0);
}
.sc-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.sc-ba-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.88);
  display: block;
}
.sc-ba-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
  flex-shrink: 0;
  color: var(--sage-dark);
}
.sc-ba-tag {
  position: absolute;
  bottom: 10px;
  padding: 2px 7px;
  background: rgba(0, 0, 0, 0.44);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
  font-family: var(--font-sans);
}
.sc-ba-tag--before { left: 10px; }
.sc-ba-tag--after  { right: 10px; }

.service-card-body {
  padding: var(--space-md);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--sage-dark);
}

.service-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 0.7rem;
}

/* ==========================================
   WHY US / FEATURE CARDS
   ========================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  border-top: 3px solid var(--sage);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(86,98,73,0.13);
}

.feature-num {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 400;
  color: var(--sage-mist);
  line-height: 1;
  position: absolute;
  top: -0.15em;
  right: var(--space-sm);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-num {
  color: #dce8d3;
}

.feature-text {
  position: relative;
  z-index: 1;
}

.feature-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--sage-dark);
}

.feature-text p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ==========================================
   SPLIT SECTION (image + text)
   ========================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
}

.split-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.split-img:hover img {
  transform: scale(1.03);
}

.split-content {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.split-content h2 {
  margin-bottom: var(--space-md);
}

.split-content p {
  margin-bottom: var(--space-md);
  max-width: 480px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial {
  padding: var(--space-lg);
  background: var(--white);
  border-left: 3px solid var(--sage);
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-name a {
  color: inherit;
  text-decoration: none;
}

.testimonial-name a:hover {
  color: var(--sage-dark);
  text-decoration: underline;
}

.testimonial-loc {
  font-size: 0.8rem;
  color: var(--stone);
}

.stars {
  color: var(--brown-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}

/* ── Google rating badge ── */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.google-rating-badge:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.google-rating-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 1px;
}

.google-rating-num {
  font-weight: 700;
  color: var(--charcoal);
}

.google-rating-count {
  color: var(--stone);
  font-size: 0.82rem;
}

.google-wordmark {
  display: flex;
  align-items: center;
  margin-right: 0.1rem;
}

/* ==========================================
   REVIEWS TICKER SECTION
   ========================================== */
.reviews-ticker-section {
  background: #1A2416;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.reviews-ticker-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-ticker-label {
  color: var(--sage-light) !important;
  opacity: 0.75;
}

.reviews-ticker-heading {
  color: #fff !important;
  margin-top: 0.4rem;
}

.reviews-overall-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.reviews-overall-badge:hover {
  opacity: 0.8;
}

.reviews-overall-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 2px;
}

.reviews-overall-num {
  color: #fff;
  font-weight: 700;
}

.reviews-overall-count {
  color: rgba(255, 255, 255, 0.45);
}

/* Two-row wrapper */
.reviews-ticker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  overflow: hidden;
}

/* Each row container — clips overflow & fades edges */
.reviews-ticker {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

/* Scrolling flex row */
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: scrollLeft 60s linear infinite;
  will-change: transform;
}

.reviews-track--reverse {
  animation: scrollRight 75s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Pause on click-hold */
.reviews-ticker-wrapper.is-paused .reviews-track {
  animation-play-state: paused;
}

/* Individual card */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}

.review-stars {
  color: #FBBC05;
  font-size: 0.8rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #2A2A27;
  flex: 1;
}

.review-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: #566249;
  letter-spacing: 0.3px;
  margin-top: 0.1rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4/3;
  background: var(--cream-warm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,30,25,0.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 36px;
  height: 36px;
}

/* ==========================================
   BEFORE / AFTER SLIDER
   ========================================== */
.before-after-wrapper {
  margin-block: var(--space-2xl);
}

.before-after-label {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.before-after-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.ba-handle::after {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--charcoal);
  font-size: 0.55rem;
  letter-spacing: -1px;
  white-space: nowrap;
}

.ba-tag {
  position: absolute;
  bottom: var(--space-sm);
  z-index: 4;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 1px;
  color: var(--white);
}

.ba-tag-before {
  left: var(--space-sm);
  background: rgba(0,0,0,0.5);
}

.ba-tag-after {
  right: var(--space-sm);
  background: var(--sage);
}

/* ── Inline slider (inside service card split-img) ── */
.split-img .inline-slider {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* ── BA Card Grid ──────────────────────────── */
.ba-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .ba-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ba-card-grid { grid-template-columns: 1fr; }
}

.ba-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  text-align: left;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.ba-card:hover img,
.ba-card:focus-visible img {
  transform: scale(1.04);
  opacity: 0.72;
}

.ba-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ba-card:hover .ba-card-overlay,
.ba-card:focus-visible .ba-card-overlay {
  opacity: 1;
}

.ba-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.5);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.ba-card-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
}

.ba-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem var(--space-md) var(--space-sm);
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── BA Comparison Modal ───────────────────── */
.ba-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,0.94);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: var(--space-md);
}

.ba-modal.open {
  opacity: 1;
  visibility: visible;
}

.ba-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ba-modal-close {
  position: absolute;
  top: -3.2rem;
  right: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.ba-modal-close:hover { background: rgba(255,255,255,0.15); }

.ba-modal-title {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-align: center;
  margin: 0;
}

.ba-modal-hint {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  text-align: center;
  margin: 0;
}

.ba-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.ba-modal-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ba-modal-nav-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.ba-modal-counter {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: var(--space-lg);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s var(--ease-out);
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--white);
  opacity: 0.7;
  transition: opacity var(--transition);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  opacity: 0.7;
  transition: opacity var(--transition);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.lightbox-prev { left: var(--space-sm); }
.lightbox-next { right: var(--space-sm); }

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.15); }

.lightbox-counter {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--cream-deep);
}

.contact-info-item:first-of-type {
  padding-top: 0;
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.contact-info-text a {
  transition: color var(--transition);
}

.contact-info-text a:hover {
  color: var(--sage-dark);
}

/* Form */
.form {
  background: var(--white);
  padding: var(--space-xl);
  border: 1px solid var(--cream-deep);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 140, 104, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  background: var(--sage-mist);
  border: 1px solid var(--sage-light);
  padding: var(--space-md);
  border-radius: 12px;
  text-align: center;
  color: var(--sage-dark);
  font-weight: 500;
  margin-top: var(--space-md);
}

/* ==========================================
   MAP PLACEHOLDER
   ========================================== */
.service-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 1px solid var(--cream-deep);
  margin-top: var(--space-lg);
  overflow: hidden;
}

/* ==========================================
   PAGE HERO (interior pages)
   ========================================== */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background-color: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .label {
  color: var(--sage-light);
  display: block;
  margin-bottom: var(--space-sm);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.value-card {
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-top: 2px solid var(--sage);
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.value-card p {
  font-size: 0.875rem;
}

/* ==========================================
   OWNER STORY
   ========================================== */
.owner-story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-sm);
}

.owner-story-heading {
  margin-bottom: var(--space-md);
  max-width: 760px;
}

.owner-story-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
}

.owner-story-copy {
  order: 2;
}

.owner-story-signoff {
  margin-top: var(--space-md);
  text-align: left;
}

.owner-story-signoff p:first-child {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
  font-style: italic;
}

.owner-story-signoff p:last-child {
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 0.25rem;
}

.owner-story-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  order: 1;
}

.owner-story-photo {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}

.owner-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.owner-story-quote {
  background: var(--sage-mist);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--sage);
  border-radius: 0 12px 12px 0;
}

.owner-story-quote p:first-child {
  font-size: 0.86rem;
  color: var(--charcoal-mid);
  line-height: 1.65;
  font-style: italic;
}

.owner-story-quote p:last-child {
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 0.4rem;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.48s; }
.fade-up.delay-5 { transition-delay: 0.60s; }

/* ── Real logo image in header ── */
img.logo-mark {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── Service card image hover zoom ── */
.service-card-img-wrap {
  overflow: hidden;
}
.service-card-img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .service-card-img {
  transform: scale(1.07);
}

/* ── Gallery image hover zoom ── */
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── Split section image hover ── */
.split-img {
  overflow: hidden;
}
.split-img img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img:hover img {
  transform: scale(1.05);
}

/* ── Hero content animate in on load ── */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .label {
  animation: heroSlideUp 0.9s 0.3s both;
}
.hero-content h1 {
  animation: heroSlideUp 0.9s 0.5s both;
}
.hero-content p {
  animation: heroSlideUp 0.9s 0.7s both;
}
.hero-actions {
  animation: heroSlideUp 0.9s 0.9s both;
}

/* ── Stats band count-up pulse ── */
@keyframes statPop {
  0%   { transform: scale(0.85); opacity: 0; }
  70%  { transform: scale(1.06); }
  100% { transform: scale(1);    opacity: 1; }
}
.stat-item.visible .stat-num {
  animation: statPop 0.6s var(--ease-out) both;
}
.stat-item.visible.delay-1 .stat-num { animation-delay: 0.12s; }
.stat-item.visible.delay-2 .stat-num { animation-delay: 0.24s; }
.stat-item.visible.delay-3 .stat-num { animation-delay: 0.36s; }

/* ==========================================
   SERVICE AREA BADGE
   ========================================== */
.service-area {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream-warm);
  border: 1px solid var(--cream-deep);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-mid);
}

.service-area::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================
   STATS BAND
   ========================================== */
.stats-band {
  background: var(--sage-dark);
  padding-block: var(--space-xl);
}

.stats-band .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: block;
  margin-top: 0.4rem;
}

/* ==========================================
   RESPONSIVE — TABLET (768px+)
   ========================================== */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }

  .split-img {
    aspect-ratio: auto;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-num {
    font-size: 7rem;
  }

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

  .cta-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

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

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

  .owner-story-layout {
    grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
    gap: var(--space-xl);
  }

  .owner-story-copy {
    order: 1;
  }

  .owner-story-aside {
    order: 2;
  }

  .owner-story-body {
    font-size: 1.05rem;
    line-height: 1.85;
  }

  .owner-story-signoff {
    text-align: right;
  }

  .owner-story-photo {
    aspect-ratio: 3 / 4;
  }
}

/* ==========================================
   RESPONSIVE — DESKTOP (1024px+)
   ========================================== */
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-num {
    font-size: 8rem;
  }

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

  .hero-content h1 {
    font-size: 3.25rem;
  }
}

/* ==========================================
   FOCUS / ACCESSIBILITY
   ========================================== */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* Visually hidden (for screen readers) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   MOBILE NAV PHONE ROW (below 768px)
   Show phone number + "Call or Text" under the logo
   ========================================== */
@media (max-width: 767px) {
  :root {
    --nav-height: 148px;
  }

  .site-header {
    height: auto;
    padding-block: 0.65rem;
  }

  /* Switch nav-inner to a 2-row grid:
     Row 1 → logo (col 1) | hamburger (col 2)
     Row 2 → phone number (spanning full width) */
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 0.2rem;
    align-items: center;
  }

  .hamburger {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-actions {
    display: flex;
    justify-content: center;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  /* Hide the "Free Estimate" button — keep only the phone link */
  .nav-actions .btn {
    display: none;
  }

  /* Scale phone text down slightly for the narrower header */
  .nav-phone {
    font-size: 1rem;
  }

  .nav-phone-number {
    font-size: 1rem;
  }

  .nav-phone svg {
    width: 18px;
    height: 18px;
  }

  .hero-trust-strip {
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    font-size: 0.76rem;
    gap: 0.38rem;
    padding: 0.52rem 0.7rem;
  }

  .about-intro-support {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .about-intro-support blockquote {
    flex: 0 1 auto !important;
    width: 100%;
  }

  .about-intro-support > div {
    width: 100%;
    justify-content: flex-start !important;
  }
}

/* ==========================================
   PRINT
   ========================================== */
@media print {
  .site-header,
  .cta-banner,
  .site-footer { display: none; }
}

/* ==========================================
   ABOUT INTRO (homepage compact layout)
   ========================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr 2fr;
    column-gap: var(--space-xl);
    row-gap: var(--space-md);
  }
}
