/* ========================
   BRUSHLINE — THEME CSS
   ======================== */

:root {
  --green-deep: #1B3A2D;
  --green-mid: #2D5240;
  --green-light: #3E6B54;
  --cream: #F5F2ED;
  --cream-dark: #EDE9E1;
  --amber: #C4963E;
  --amber-light: #D4AD5A;
  --text-dark: #1A1A18;
  --text-mid: #4A4A46;
  --text-light: #7A7A72;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========================
   TYPOGRAPHY
   ======================== */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}

/* ========================
   HERO
   ======================== */

.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-texture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.brush-stroke {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(80px);
}

.brush-stroke-1 {
  width: 600px;
  height: 600px;
  background: var(--amber);
  top: -100px;
  right: -100px;
}

.brush-stroke-2 {
  width: 400px;
  height: 400px;
  background: var(--cream);
  bottom: 80px;
  left: 200px;
}

.brush-stroke-3 {
  width: 300px;
  height: 300px;
  background: var(--green-mid);
  top: 50%;
  left: 40%;
}

.hero-inner {
  padding: 6rem 5rem 6rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245, 242, 237, 0.7);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-pillars {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  background: var(--amber);
  color: var(--green-deep);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.hero-cta:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.pillar-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 242, 237, 0.9);
}

.pillar-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 242, 237, 0.2);
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.paint-card {
  background: rgba(245, 242, 237, 0.06);
  border: 1px solid rgba(245, 242, 237, 0.12);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

.paint-swatch {
  width: 100%;
  height: 28px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.paint-swatch:hover {
  transform: translateX(8px);
}

.swatch-1 { background: var(--cream); }
.swatch-2 { background: #3E6B54; }
.swatch-3 { background: #C4963E; }
.swatch-4 {
  background: linear-gradient(90deg, #1B3A2D 0%, #2D5240 50%, #3E6B54 100%);
}

/* ========================
   SERVICES
   ======================== */

.services {
  padding: 8rem 7rem;
  background: var(--cream);
}

.services-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 58, 45, 0.08);
}

.service-icon {
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.service-card-link {
  color: inherit;
  text-decoration: none;
}

.service-card-link:hover {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card-cta {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
}

.service-card-cta a {
  color: var(--green-mid);
  text-decoration: none;
}

.service-card-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================
   PROCESS
   ======================== */

.process {
  padding: 8rem 7rem;
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.process-left {
  position: sticky;
  top: 6rem;
}

.process-body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.process-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  border: 1px solid rgba(27, 58, 45, 0.15);
  border-radius: 12px;
  background: var(--white);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(27, 58, 45, 0.1);
  transition: background 0.2s ease;
}

.step:last-child {
  border-bottom: none;
}

.step:hover {
  background: rgba(255,255,255,0.5);
  margin: 0 -1rem;
  padding: 2rem 1rem;
  border-radius: 8px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(27, 58, 45, 0.15);
  line-height: 1;
  align-self: start;
}

.step-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ========================
   MANIFESTO
   ======================== */

.manifesto {
  padding: 8rem 7rem;
  background: var(--green-deep);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 3rem;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  position: relative;
}

.manifesto-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.manifesto-title {
  font-size: 0.8rem;
  color: rgba(245, 242, 237, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================
   CLOSING
   ======================== */

.closing {
  padding: 8rem 7rem;
  background: var(--cream);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

/* ========================
   FOOTER
   ======================== */

.footer {
  padding: 3rem 7rem;
  background: var(--green-deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 242, 237, 0.5);
}

.footer-meta {
  text-align: right;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 242, 237, 0.4);
  margin-bottom: 0.25rem;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.25);
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-inner {
    padding: 5rem 3rem;
  }

  .services,
  .process,
  .manifesto,
  .closing {
    padding: 5rem 3rem;
  }

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

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

  .process-left {
    position: static;
  }

  .footer {
    padding: 2rem 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 4rem 1.5rem;
  }

  .hero-pillars {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pillar-divider {
    display: none;
  }

  .services,
  .manifesto,
  .closing {
    padding: 4rem 1.5rem;
  }

  .process {
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .footer {
    padding: 2rem 1.5rem;
  }

  .step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .step-num {
    font-size: 1.75rem;
  }
}

/* ========================
   PRICING
   ======================== */

.pricing {
  padding: 8rem 7rem;
  background: var(--cream);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 58, 45, 0.08);
}

.pricing-card-featured {
  border-color: var(--green-mid);
  background: var(--green-deep);
}

.pricing-card-top {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1rem;
}

.pricing-card-featured .pricing-tier {
  color: var(--amber-light);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.pricing-from {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card-featured .pricing-from {
  color: rgba(245, 242, 237, 0.5);
}

.pricing-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.pricing-card-featured .pricing-num {
  color: var(--cream);
  font-size: 2rem;
}

.pricing-unit {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-card-featured .pricing-unit {
  color: rgba(245, 242, 237, 0.5);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.pricing-card-featured .pricing-note {
  color: rgba(245, 242, 237, 0.65);
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pricing-includes li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.pricing-card-featured .pricing-includes li {
  color: rgba(245, 242, 237, 0.75);
}

.pricing-card-featured .pricing-includes li::before {
  background: var(--amber-light);
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--green-deep);
  color: var(--cream);
  transition: background 0.2s;
}

.btn-pricing:hover { background: var(--green-mid); }

.btn-pricing-featured {
  background: var(--amber);
  color: var(--green-deep);
}

.btn-pricing-featured:hover { background: var(--amber-light); }

/* ========================
   QUOTE CTA
   ======================== */

.quote-cta {
  padding: 8rem 7rem;
  background: var(--cream-dark);
}

.quote-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.quote-cta-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-chips {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
  width: fit-content;
}

.contact-chip:hover { background: var(--green-mid); }

.quote-availability {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}

.footer-contact {
  font-size: 0.85rem;
  color: rgba(245, 242, 237, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-serves {
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.35);
  margin-top: 0.5rem;
}

/* Form */
.quote-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(27, 58, 45, 0.06);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}

.form-group input::placeholder,
.radio-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-mid);
  cursor: pointer;
}

.radio-option span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.radio-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
}

.label-opt {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -0.5rem;
}

.why-brushline {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.why-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.why-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.service-area-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
}
  color: var(--text-light);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A72' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  padding: 1rem;
  background: var(--green-deep);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--green-mid); }

/* ========================
   TESTIMONIALS
   ======================== */

.testimonials {
  padding: 8rem 7rem;
  background: var(--cream);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-city {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.testimonial-verified {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.testimonial-verified::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D5240'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Testimonials — trust stats row */
.testimonials-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.testimonials-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonials-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.testimonials-stat .stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.testimonials-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 1rem;
  margin-bottom: 0;
}

.testimonials-sub a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-sub a:hover {
  color: var(--green-deep);
}

/* ========================
   RGV CITIES
   ======================== */

.rgv-cities {
  padding: 8rem 7rem;
  background: var(--green-deep);
}

.rgv-cities-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rgv-cities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label-light {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.5);
  display: block;
  margin-bottom: 1rem;
}

.rgv-cities-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
}

.rgv-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.city-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.city-icon {
  color: var(--amber);
}

.city-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}

.city-descriptor {
  font-size: 0.875rem;
  color: rgba(245, 242, 237, 0.6);
  line-height: 1.65;
}

/* ========================
   RESPONSIVE — PRICING + QUOTE
   ======================== */

@media (max-width: 1100px) {
  .pricing {
    padding: 5rem 3rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .quote-cta {
    padding: 5rem 3rem;
  }
  .quote-cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .pricing {
    padding: 4rem 1.5rem;
  }
  .pricing-grid {
    max-width: 100%;
  }
  .quote-cta {
    padding: 4rem 1.5rem;
  }
  .quote-form-wrap {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Blog link below city grid on RGV page */
.rgv-blog-link {
  margin-top: 2rem;
  text-align: center;
}
.rgv-blog-link-text {
  font-size: 15px;
  color: #888;
}
.rgv-blog-link-anchor {
  color: #c0392b;
  text-decoration: none;
  font-weight: 500;
}
.rgv-blog-link-anchor:hover {
  text-decoration: underline;
}

/* ========================
   FAQ
   ======================== */

.faq {
  padding: 8rem 7rem;
  background: var(--cream-dark);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 3rem;
}

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

.faq-item {
  border-bottom: 1px solid rgba(27, 58, 45, 0.12);
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(27, 58, 45, 0.12);
}

.faq-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  cursor: pointer;
  padding: 1.5rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  max-width: 680px;
}

.faq-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.faq-cta-text {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.faq-cta-link {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--amber);
  color: var(--green-deep);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.faq-cta-link:hover { background: var(--amber-light); }

@media (max-width: 1024px) {
  .faq { padding: 5rem 3rem; }
}

@media (max-width: 640px) {
  .faq { padding: 4rem 1.5rem; }
  .faq-cta { flex-direction: column; align-items: flex-start; }
}