/* ═══════════════════════════════════════════════════════
   Longwood Flooring Company — Shared Styles
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brown-deep: #3D2B1F;
  --brown-warm: #5C3D2E;
  --brown-mid: #8B6914;
  --green-forest: #2D5016;
  --green-soft: #3A6B1E;
  --gold: #C4973B;
  --gold-light: #D4AA4F;
  --cream: #FAF6F0;
  --cream-dark: #F0E8DA;
  --charcoal: #1A1A1A;
  --warm-gray: #6B5E52;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(61,43,31,0.08);
  --shadow-md: 0 8px 32px rgba(61,43,31,0.12);
  --shadow-lg: 0 16px 64px rgba(61,43,31,0.16);
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ─── WOOD GRAIN TEXTURE OVERLAY ─── */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,80,22,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(45,80,22,0); }
}
@keyframes plankSlide {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes shimmer-bar {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.anim-fade-up { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }
.anim-delay-7 { animation-delay: 0.7s; }
.anim-delay-8 { animation-delay: 0.8s; }

@media (max-width: 767px) {
  .anim-fade-up,
  .top-bar,
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .btn-call,
  .hero-form-card::before,
  .contact-form-card::before,
  .plank {
    animation: none;
  }

  .grain-overlay {
    display: none;
  }
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}
.top-bar span { color: var(--gold-light); font-weight: 600; }

/* ─── HEADER ─── */
header {
  background: var(--white);
  border-bottom: 1px solid rgba(61,43,31,0.08);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown-deep);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
}
.logo-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
  font-weight: 500;
}

/* ─── MAIN NAV ─── */
.main-nav {
  display: none;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brown-deep);
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green-forest);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-forest);
  border-radius: 1px;
}
@media (min-width: 960px) {
  .main-nav { display: flex; }
}

/* ─── MOBILE NAV ─── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown-deep);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--green-forest); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--brown-deep);
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-phone {
  margin-top: auto;
  text-align: center;
  padding: 20px 0;
}
.mobile-nav-phone a {
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-forest);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--brown-deep);
  text-decoration: none;
  display: none;
}
@media (min-width: 768px) {
  .header-phone { display: block; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--green-forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,80,22,0.3);
}
.btn-primary:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,80,22,0.35);
}
.btn-call {
  background: var(--green-forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,80,22,0.3);
  animation: pulse 2.5s infinite;
  font-size: 1.1rem;
  padding: 18px 36px;
}
.btn-call:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,80,22,0.4);
}
.btn-call svg { width: 22px; height: 22px; }
.btn-outline {
  background: transparent;
  color: var(--brown-deep);
  border: 2px solid var(--brown-deep);
}
.btn-outline:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-forest);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
  padding: 18px 36px;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.floating-call {
  display: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,151,59,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,151,59,0.35);
}

/* ─── SECTION STYLES ─── */
section { padding: 80px 0; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-forest);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-forest);
}
.section-title {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--brown-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  background: var(--cream-dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(61,43,31,0.06);
}
.breadcrumbs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 0.82rem;
  color: var(--warm-gray);
}
.breadcrumbs-inner a {
  text-decoration: none;
  color: var(--green-forest);
  transition: color 0.2s;
}
.breadcrumbs-inner a:hover { color: var(--green-soft); }
.breadcrumbs-inner .sep { margin: 0 8px; color: var(--warm-gray); opacity: 0.4; }

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  background: linear-gradient(165deg, rgba(61,43,31,0.82) 0%, rgba(42,29,20,0.85) 55%, rgba(30,21,14,0.9) 100%),
              url('background-hero.jpg') center/cover no-repeat;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.hero-content { color: var(--cream); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,151,59,0.15);
  border: 1px solid rgba(196,151,59,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(250,246,240,0.75);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250,246,240,0.6);
  font-size: 0.88rem;
  font-weight: 400;
}
.trust-item svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── HERO FORM ─── */
.hero-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-forest), var(--gold), var(--green-forest), var(--gold), var(--green-forest));
  background-size: 200% 100%;
  animation: shimmer-bar 6s ease-in-out infinite;
}
.form-header { text-align: center; margin-bottom: 24px; }
.form-header h2 {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  color: var(--brown-deep);
  margin-bottom: 6px;
}
.form-header p { color: var(--warm-gray); font-size: 0.9rem; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-warm);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: all 0.25s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45,80,22,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #766A5E; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 12px;
}
.form-note svg {
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
}

/* ─── PLANKS DIVIDER ─── */
.planks-divider {
  padding: 0;
  display: flex;
  gap: 4px;
  overflow: hidden;
  height: 8px;
}
.plank {
  flex: 1;
  height: 100%;
  border-radius: 2px;
  transform-origin: left center;
  animation: plankSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0.9;
}
.plank:nth-child(1) { background: #C4973B; animation-delay: 0.1s; }
.plank:nth-child(2) { background: #8B6914; animation-delay: 0.15s; }
.plank:nth-child(3) { background: #A67B3D; animation-delay: 0.2s; }
.plank:nth-child(4) { background: #D4AA4F; animation-delay: 0.25s; }
.plank:nth-child(5) { background: #7A5C2E; animation-delay: 0.3s; }
.plank:nth-child(6) { background: #BF8F3A; animation-delay: 0.35s; }
.plank:nth-child(7) { background: #9E7832; animation-delay: 0.4s; }
.plank:nth-child(8) { background: #C4973B; animation-delay: 0.45s; }

/* ─── WHY CARDS ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  border: 1px solid rgba(61,43,31,0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(45,80,22,0.08), rgba(45,80,22,0.03));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-forest);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.step {
  position: relative;
  text-align: center;
  padding: 40px 24px 32px;
}
.step-number {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(61,43,31,0.58);
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.step h3 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--brown-deep);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 55px; right: -20px;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,43,31,0.05);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 18px; height: 18px;
  color: var(--gold);
  fill: var(--gold);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-deep), var(--brown-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown-deep);
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(165deg, var(--green-forest) 0%, #1E3A0E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,151,59,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(196,151,59,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .section-inner { position: relative; z-index: 2; }
.cta-section .section-label { color: var(--gold-light); }
.cta-section .section-label::before { background: var(--gold-light); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-desc {
  color: rgba(250,246,240,0.7);
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ─── GUARANTEE BADGE ─── */
.guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(196,151,59,0.08);
  border: 1px solid rgba(196,151,59,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 48px;
}
.guarantee-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.guarantee-icon svg { width: 28px; height: 28px; }
.guarantee h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--brown-deep);
  margin-bottom: 2px;
}
.guarantee p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ─── SPECIALIST BANNER ─── */
.specialist {
  background: var(--brown-deep);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.specialist::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(196,151,59,0.04) 60px, rgba(196,151,59,0.04) 61px);
  pointer-events: none;
}
.specialist-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.specialist h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.specialist h3 em { color: var(--gold-light); font-style: italic; }
.specialist p {
  color: rgba(250,246,240,0.6);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FAQ SECTION ─── */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-deep);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-forest); }
.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ─── FOOTER ─── */
footer {
  background: var(--brown-deep);
  color: rgba(250,246,240,0.78);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-brand .footer-logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-brand .footer-tagline {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(250,246,240,0.78);
}
.footer-heading {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none;
  font-size: 0.88rem;
  color: rgba(250,246,240,0.78);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.footer-contact-item a {
  text-decoration: none;
  color: rgba(250,246,240,0.78);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-copy { font-size: 0.78rem; }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal a {
  color: rgba(250,246,240,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold-light); }
.footer-legal-sep {
  color: rgba(250,246,240,0.2);
  font-size: 0.82rem;
}

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  position: relative;
  background: linear-gradient(165deg, rgba(61,43,31,0.88) 0%, rgba(42,29,20,0.9) 55%, rgba(30,21,14,0.93) 100%),
              url('background-hero.jpg') center/cover no-repeat;
  padding: 60px 0 70px;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 767px) {
  .hero {
    background-image:
      linear-gradient(165deg, rgba(61,43,31,0.82) 0%, rgba(42,29,20,0.85) 55%, rgba(30,21,14,0.9) 100%),
      url('background-hero-mobile.jpg');
  }

  .page-hero {
    background-image:
      linear-gradient(165deg, rgba(61,43,31,0.88) 0%, rgba(42,29,20,0.9) 55%, rgba(30,21,14,0.93) 100%),
      url('background-hero-mobile.jpg');
  }
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(250,246,240,0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CONTENT SECTIONS ─── */
.content-section { background: var(--cream); }
.content-section.alt { background: var(--white); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .content-grid { grid-template-columns: 1fr 1fr; }
  .content-grid.reverse { direction: rtl; }
  .content-grid.reverse > * { direction: ltr; }
}
.content-text h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.content-text p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-text ul {
  list-style: none;
  margin: 16px 0 24px;
}
.content-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-forest);
  font-weight: 700;
}
.content-image {
  background: linear-gradient(135deg, rgba(61,43,31,0.06), rgba(196,151,59,0.06));
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 1px solid rgba(61,43,31,0.06);
}
.content-image.content-photo {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
  box-shadow: var(--shadow-sm);
}
.content-image.content-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.content-image-icon {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, rgba(45,80,22,0.1), rgba(45,80,22,0.03));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-forest);
}
.content-image-icon svg { width: 60px; height: 60px; }

/* ─── AREA CARDS ─── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,43,31,0.06);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.area-card h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.area-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.area-card .area-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-forest);
  text-decoration: none;
  transition: color 0.2s;
}
.area-card .area-link:hover { color: var(--green-soft); }

/* ─── CITY SEO PAGES ─── */
.city-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}
@media (min-width: 768px) { .city-proof-grid { grid-template-columns: repeat(3, 1fr); } }
.city-proof-card {
  background: var(--white);
  border: 1px solid rgba(61,43,31,0.06);
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.city-proof-card h3 {
  font-family: Georgia, serif;
  font-size: 1.12rem;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.city-proof-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
.city-service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 768px) { .city-service-list { grid-template-columns: repeat(2, 1fr); } }
.city-service-item {
  background: rgba(250,246,240,0.7);
  border: 1px solid rgba(61,43,31,0.06);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--warm-gray);
  font-size: 0.94rem;
  line-height: 1.55;
}
.city-service-item strong {
  display: block;
  color: var(--brown-deep);
  margin-bottom: 4px;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,43,31,0.06);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(45,80,22,0.08), rgba(45,80,22,0.03));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-forest);
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--brown-deep);
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.contact-info-text a {
  color: var(--green-forest);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-text a:hover { color: var(--green-soft); }
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,43,31,0.06);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-forest), var(--gold), var(--green-forest), var(--gold), var(--green-forest));
  background-size: 200% 100%;
  animation: shimmer-bar 6s ease-in-out infinite;
}

/* ─── STAT CARDS ─── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .stats-strip { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,43,31,0.06);
}
.stat-number {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--green-forest);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GOOGLE PLACES DROPDOWN ─── */
.pac-container {
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 8px 30px rgba(61,43,31,0.12);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 4px;
  background: var(--white);
  z-index: 10000;
}
.pac-item {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--brown-deep);
  border-top: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: background 0.15s ease;
  line-height: 1.4;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover, .pac-item.pac-item-selected { background: var(--cream); }
.pac-item-query { font-weight: 600; color: var(--brown-deep); font-size: 0.9rem; }
.pac-matched { color: var(--green-forest); }
.pac-icon, .pac-item .pac-icon-marker { display: none; }
.pac-logo::after { margin: 6px 10px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
  .hero { padding: 24px 0 60px; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 12px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 20px; }
  .hero-ctas { display: none; }
  .trust-strip { display: none; }
  .hero-inner { gap: 24px; }
  .hero-form-card { padding: 24px 18px; }
  .hero-form-card .form-group { margin-bottom: 12px; }
  .hero-badge { margin-bottom: 16px; padding: 6px 12px; font-size: 0.72rem; }
  section { padding: 60px 0; }
  .header-cta .btn-primary {
    display: none;
  }
  .header-cta { gap: 0; }
  .floating-call {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-forest), var(--green-soft));
    color: var(--white);
    box-shadow: 0 10px 28px rgba(45,80,22,0.35);
    text-decoration: none;
  }
  .floating-call svg {
    width: 24px;
    height: 24px;
  }
  .page-hero { padding: 40px 0 50px; }
  .footer-grid { text-align: center; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}
