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

:root {
  --brown:       #3C2008;
  --brown-mid:   #5A3310;
  --brown-light: #8B5B2A;
  --cream:       #F2E4CB;
  --cream-dark:  #E2D0AC;
  --cream-light: #FAF1DD;
  --text:        #1E0F02;
  --text-muted:  #7A5535;
  --white:       #FDFAF4;
  --accent:      #C87D25;
  --accent-deep: #A8651A;
  --radius:      8px;
  --shadow:      0 2px 16px rgba(60,32,8,.10);
  --shadow-lg:   0 6px 32px rgba(60,32,8,.16);
  --transition:  .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream-light);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Alfa Slab One', serif;
  line-height: 1.2;
  color: var(--brown);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-title.left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.btn-primary:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-secondary:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
}

.btn-full { width: 100%; }
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Oversized hero CTA — the homepage focal point */
.btn-hero-xl {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  padding: 20px 44px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(200,125,37,.45);
  animation: hero-xl-pulse 2.4s ease-in-out infinite;
}
.btn-hero-xl svg { width: 24px !important; height: 24px !important; }
.btn-hero-xl:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(200,125,37,.55);
}
@keyframes hero-xl-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(200,125,37,.45); }
  50% { box-shadow: 0 10px 38px rgba(200,125,37,.65); }
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1;
  display: none;
}
@media (min-width: 480px) { .nav-logo-text { display: block; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  padding: 6px 10px;
  color: var(--brown-mid);
  font-weight: 700;
  font-size: .92rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--brown); background: var(--cream-dark); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 769px) and (max-width: 980px) {
  .nav-phone-text { display: none; }
}

.nav-cta {
  padding: 8px 16px;
  background: var(--brown);
  color: var(--cream) !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .92rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brown-mid); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--cream-dark);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }

  .nav-link, .nav-cta {
    padding: 12px 14px;
    font-size: 1rem;
    text-align: left;
  }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ============ HERO ============ */
.hero {
  background: var(--cream);
  padding: 64px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(60,32,8,.018) 40px,
      rgba(60,32,8,.018) 41px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: min(220px, 56vw);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(60,32,8,.18));
}

.hero-ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-light);
  border: 2px solid var(--cream-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  color: var(--brown);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-rating:hover {
  border-color: var(--brown-light);
  box-shadow: var(--shadow);
}
.hero-rating-stars {
  color: #C87D25;
  font-size: .92rem;
  letter-spacing: 1px;
}
.hero-rating-source {
  color: var(--text-muted);
  font-weight: 400;
}

.hero-eyebrow {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(.9rem, 2vw, 1.05rem);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: -8px;
}

.hero-headline {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--brown);
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.hero-location {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--brown);
  color: var(--cream);
  padding: 16px 20px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; opacity: .85; }

/* ============ SERVICES ============ */
.services { background: var(--cream-light); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px)  {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
  }
}

.service-card {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border-color: var(--brown);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown);
  color: var(--cream);
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-icon {
  color: var(--brown);
  line-height: 1;
}

.service-title {
  font-family: 'Arvo', serif;
  font-size: 1.2rem;
  color: var(--brown);
}

.service-desc {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65;
}

.pricing-note {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-left: 5px solid var(--brown);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pricing-note p { color: var(--text-muted); flex: 1; min-width: 240px; }
.pricing-note strong { color: var(--brown); }

/* ============ PLANS ============ */
.plans { background: var(--brown); }
.plans-title { color: var(--cream); }
.plans-sub { color: rgba(245,237,214,.65); }

.plans-hp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 700px) {
  .plans-hp-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
}
.plans-hp-grid--2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 700px) {
  .plans-hp-grid--2 { grid-template-columns: 1fr 1fr; }
}

.plan-hp {
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(245,237,214,.15);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.plan-hp:hover { border-color: rgba(245,237,214,.3); transform: translateY(-3px); }

.plan-hp--featured {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  transform: scale(1.04);
}
.plan-hp--featured:hover { transform: scale(1.04) translateY(-3px); }

.plan-hp--dim { opacity: .75; }
.plan-hp--dim:hover { opacity: 1; }

.plan-hp-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-light);
  color: var(--cream);
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: .72rem;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-hp-top { display: flex; flex-direction: column; gap: 6px; }

.plan-hp-name {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.6rem;
  color: rgba(245,237,214,.92);
}
.plan-hp--featured .plan-hp-name { color: var(--brown); }

.plan-hp-freq { color: rgba(245,237,214,.55); font-size: .88rem; }
.plan-hp--featured .plan-hp-freq { color: var(--text-muted); }

.plan-hp-save {
  display: inline-block;
  background: rgba(140,220,155,.15);
  color: #9de0ab;
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 12px;
  border-radius: 6px;
  margin-top: 4px;
}
.plan-hp--featured .plan-hp-save { background: rgba(46,125,58,.1); color: #2e7d3a; }

.plan-hp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-hp-yes,
.plan-hp-no {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
}
.plan-hp-yes { color: rgba(245,237,214,.85); }
.plan-hp-no  { color: rgba(245,237,214,.28); }
.plan-hp--featured .plan-hp-yes { color: var(--brown); }
.plan-hp--featured .plan-hp-no  { color: var(--text-muted); opacity: .45; }

.plan-hp-yes::before {
  content: '';
  display: block;
  width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239de0ab' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
}
.plan-hp--featured .plan-hp-yes::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232e7d3a' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}
.plan-hp-no::before {
  content: '';
  display: block;
  width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(245%2C237%2C214%2C.25)' d='M19 6.4L17.6 5 12 10.6 6.4 5 5 6.4 10.6 12 5 17.6 6.4 19 12 13.4 17.6 19 19 17.6 13.4 12z'/%3E%3C/svg%3E");
  background-size: contain;
}

.btn-outline-cream {
  background: transparent;
  color: rgba(245,237,214,.85);
  border: 2px solid rgba(245,237,214,.3);
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.btn-outline-cream:hover {
  border-color: rgba(245,237,214,.7);
  background: rgba(245,237,214,.08);
  color: var(--cream);
}

.plan-hp-cta { width: 100%; text-align: center; }

.plans-note {
  text-align: center;
  color: rgba(245,237,214,.45);
  font-size: .9rem;
  margin-top: 8px;
}
.plans-note a { color: rgba(245,237,214,.7); text-decoration: underline; }
.plans-note a:hover { color: var(--cream); }

/* city list variant for 3 items */
.city-list--3 { grid-template-columns: 1fr; }
@media (min-width: 400px) { .city-list--3 { grid-template-columns: repeat(3, 1fr); } }

/* ============ ABOUT ============ */
.about { background: var(--cream); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 260px 1fr;
    gap: 60px;
  }
}

.about-image { text-align: center; }
.about-logo {
  width: min(200px, 60vw);
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(60,32,8,.15));
}

.about-content { display: flex; flex-direction: column; gap: 16px; }
.about-content p { color: var(--text-muted); }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brown);
}
.about-list svg { color: var(--brown); flex-shrink: 0; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream-light); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }

.review-card {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-stars {
  color: #C87D25;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-muted);
  font-size: .95rem;
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  font-family: 'Alfa Slab One', serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; color: var(--brown); font-size: .95rem; }
.review-author span   { color: var(--text-muted); font-size: .85rem; }

.reviews-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.reviews-cta p { color: var(--text-muted); font-size: .95rem; }
.reviews-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============ CONTACT ============ */
.contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-inner { grid-template-columns: 300px 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info h3 {
  font-family: 'Arvo', serif;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 4px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--cream-light);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}
.contact-method:hover {
  border-color: var(--brown);
  box-shadow: var(--shadow);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method strong { display: block; font-size: .9rem; color: var(--text-muted); }
.contact-method span   { display: block; font-weight: 700; color: var(--brown); font-size: 1rem; }

.contact-note {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-note strong { color: var(--brown); }

/* ============ FORM ============ */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--cream-light);
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  padding: 32px 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%235A3310'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(60,32,8,.1);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #d4edda;
  color: #1a5c2a;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .95rem;
}
.form-success svg { color: #1a5c2a; flex-shrink: 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 56px 20px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  width: 80px;
  height: auto;
  border-radius: 10px;
  opacity: .9;
}
.footer-brand p { color: rgba(245,237,214,.7); font-size: .92rem; line-height: 1.65; }

.footer-links h4,
.footer-contact h4 {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  color: rgba(245,237,214,.7);
  font-size: .92rem;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--cream); }

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245,237,214,.7);
  transition: color var(--transition);
}
.footer-facebook:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245,237,214,.15);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(245,237,214,.45);
  font-size: .82rem;
}

.container-narrow {
  max-width: 760px;
}

/* ============ GALLERY ============ */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--cream-dark);
  border-radius: 12px;
  background:
    repeating-linear-gradient(
      45deg,
      var(--cream-light),
      var(--cream-light) 14px,
      var(--cream) 14px,
      var(--cream) 28px
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--brown-light);
}
.gallery-label {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gallery-stamp {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.05rem;
  color: var(--brown);
  border: 2px solid var(--brown);
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--cream-light);
}

.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  font-style: italic;
}

/* ============ WRANGLER GUARANTEE ============ */
.guarantee { background: var(--brown); }

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(245,237,214,0.2);
  border-radius: 16px;
  padding: 48px 40px;
}

.guarantee-icon {
  flex-shrink: 0;
  color: var(--cream);
  opacity: 0.9;
}

.guarantee-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.65);
  margin-bottom: 6px;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 14px;
}

.guarantee-body {
  color: rgba(245,237,214,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.guarantee-body em {
  color: var(--cream);
  font-style: italic;
}

@media (max-width: 600px) {
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
}

/* ============ FAQ ============ */
.faq { background: var(--cream-light); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  padding: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--brown-light);
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-family: 'Arvo', serif;
  font-weight: 700;
  color: var(--brown);
  font-size: 1.02rem;
  position: relative;
  border-radius: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--brown);
  border-bottom: 2.5px solid var(--brown);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .98rem;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer a { color: var(--brown); text-decoration: underline; }
.faq-answer strong { color: var(--brown); }

/* ============ SERVICE AREA ============ */
.service-area { background: var(--cream); }

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 800px) {
  .service-area-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.service-area-map {
  border: 3px solid var(--brown);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  min-height: 380px;
}
.service-area-map iframe {
  display: block;
  filter: sepia(.15) saturate(.9);
}

.service-area-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-area-info h3 {
  font-family: 'Arvo', serif;
  font-size: 1.15rem;
  color: var(--brown);
}
.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 0;
}
.city-list li {
  font-family: 'Arvo', serif;
  color: var(--brown);
  font-size: 1rem;
  padding: 8px 12px;
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
}
.service-area-note {
  color: var(--text-muted);
  font-size: .92rem;
  margin-top: 8px;
}
.service-area-note a { color: var(--brown); font-weight: 700; }

/* ============ STICKY QUOTE BUTTON ============ */
.sticky-quote-btn {
  position: fixed;
  z-index: 90;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown);
  color: var(--cream) !important;
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(60,32,8,.32);
  opacity: 0;
  transform: translateY(20px) scale(.95);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.sticky-quote-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-quote-btn:hover {
  background: var(--brown-mid);
  transform: translateY(-2px) scale(1);
}
@media (max-width: 600px) {
  .sticky-quote-btn {
    bottom: 14px;
    right: 14px;
    left: 14px;
    justify-content: center;
    padding: 13px 22px;
  }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .sticky-quote-btn {
    transition: none !important;
    transform: none !important;
  }
  .reveal { opacity: 1 !important; }
}

/* ============ UTILITIES ============ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============ BLOG TEASER ============ */
.blog-teaser { background: var(--cream-light, #FAF1DD); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
}

.blog-card {
  display: block;
  background: #fff;
  border: 2px solid var(--cream-dark, #E2D0AC);
  border-radius: 10px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--brown-light, #8B5B2A);
  box-shadow: 0 8px 24px rgba(60, 32, 8, .12);
}

.blog-card-eyebrow {
  display: inline-block;
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown, #3C2008);
  background: var(--cream, #F2E4CB);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.blog-card-title {
  font-family: 'Alfa Slab One', serif;
  color: var(--brown, #3C2008);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-card-desc {
  font-family: 'Lato', sans-serif;
  color: var(--text, #1E0F02);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-cta {
  display: inline-block;
  font-family: 'Arvo', serif;
  font-weight: 700;
  color: var(--brown, #3C2008);
  font-size: 1rem;
}
.blog-card:hover .blog-card-cta {
  color: var(--brown-light, #8B5B2A);
}
