/* ══════════════════════════════════════
   PROCOLOR PAINTING — Shared Stylesheet
   ══════════════════════════════════════ */

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

:root {
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --charcoal: #1e1e1e;
  --charcoal-light: #2e2e2e;
  --terra: #c45c2a;
  --terra-light: #e07040;
  --navy: #1a2c45;
  --gold: #d4a24c;
  --gray: #666;
  --light-gray: #e8e4dc;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(253,250,244,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  text-decoration: none; color: var(--charcoal); letter-spacing: -.5px;
}
.nav-logo span { color: var(--terra); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--charcoal); font-size: .88rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-cta {
  background: var(--terra); color: #fff; border: none; border-radius: 50px;
  padding: .6rem 1.4rem; font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: background .2s, transform .2s; text-decoration: none;
}
.nav-cta:hover { background: var(--terra-light); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 5% 5rem;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 15vw, 18rem);
  font-weight: 900; color: rgba(255,255,255,.04);
  pointer-events: none; user-select: none; white-space: nowrap; line-height: 1;
}
.page-hero-wave {
  position: absolute; left: 0; bottom: 0; right: 0; height: 80px; overflow: hidden;
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--terra-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(196,92,42,.2); border: 1px solid rgba(196,92,42,.4);
  color: var(--terra-light); border-radius: 50px;
  padding: .35rem .9rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  color: #fff; line-height: 1.08; margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--terra-light); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 560px; line-height: 1.7; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TRUST BAR ── */
#trust { background: #fff; border-bottom: 1px solid var(--light-gray); padding: .9rem 5%; }
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 500; color: var(--gray); white-space: nowrap; }
.trust-item strong { color: var(--charcoal); }

/* ── SECTION COMMON ── */
section { padding: 5.5rem 5%; }
.section-label { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--terra); margin-bottom: .8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.1; color: var(--charcoal); }
.section-title.white { color: #fff; }
.section-intro { color: var(--gray); line-height: 1.7; max-width: 600px; margin-top: .8rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--terra); color: #fff; padding: .9rem 1.9rem;
  border-radius: 50px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .25s; border: 2px solid var(--terra);
}
.btn-primary:hover { background: var(--terra-light); border-color: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,92,42,.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff; padding: .9rem 1.9rem;
  border-radius: 50px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .25s; border: 2px solid rgba(255,255,255,.35);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--terra); padding: .9rem 1.9rem;
  border-radius: 50px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .25s; border: 2px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--terra); padding: .9rem 1.9rem;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: all .25s;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff; padding: .9rem 1.9rem;
  border-radius: 50px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .25s; border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.service-card {
  background: #fff; border-radius: 18px; padding: 2.2rem;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--light-gray); text-decoration: none; color: inherit;
  display: block;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(0,0,0,.1); }
.service-card.featured { background: var(--charcoal); border-color: var(--charcoal); }
.service-card.featured .service-name,
.service-card.featured .service-link { color: #fff; }
.service-card.featured .service-desc { color: rgba(255,255,255,.6); }
.service-card.featured .service-list li { color: rgba(255,255,255,.75); }
.service-card.featured .service-list li::before { color: var(--terra-light); }
.service-card.featured .service-accent { background: rgba(196,92,42,.2); }
.service-icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(196,92,42,.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.4rem; }
.service-card.featured .service-icon { background: rgba(196,92,42,.25); }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: .7rem; }
.service-desc { font-size: .9rem; line-height: 1.7; color: var(--gray); margin-bottom: 1.3rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.4rem; }
.service-list li { font-size: .85rem; color: var(--gray); padding-left: 1.1rem; position: relative; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--terra); font-weight: 700; font-size: .78rem; }
.service-link { font-size: .85rem; font-weight: 600; color: var(--terra); text-decoration: none; }
.service-accent { position: absolute; top: -20px; right: -20px; width: 90px; height: 90px; border-radius: 50%; background: rgba(196,92,42,.07); }

/* ── FEATURES / WHY US ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.feature-card { background: #fff; border-radius: 16px; padding: 2rem; border: 1px solid var(--light-gray); }
.feature-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(196,92,42,.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; }
.feature-card h3 { font-weight: 600; margin-bottom: .4rem; font-size: 1rem; }
.feature-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ── PROCESS STEPS ── */
.process-section { background: var(--charcoal); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; margin-top: 3.5rem; }
.process-grid::before { content: ''; position: absolute; top: 3.2rem; left: 10%; right: 10%; height: 1px; background: rgba(255,255,255,.1); }
.process-step { text-align: center; padding: 0 1.5rem; }
.process-num { width: 65px; height: 65px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.3rem; font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: #fff; position: relative; z-index: 2; transition: all .3s; }
.process-step:hover .process-num { background: var(--terra); border-color: var(--terra); box-shadow: 0 0 0 8px rgba(196,92,42,.15); }
.process-step h4 { color: #fff; font-weight: 600; margin-bottom: .45rem; font-size: .95rem; }
.process-step p { color: rgba(255,255,255,.45); font-size: .85rem; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.testimonial-card { background: #fff; border-radius: 18px; padding: 1.8rem; border: 1px solid var(--light-gray); transition: transform .3s, box-shadow .3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.testimonial-card.featured { background: var(--terra); border-color: var(--terra); }
.testimonial-card.featured .testimonial-text, .testimonial-card.featured .testimonial-name { color: #fff; }
.testimonial-card.featured .testimonial-loc { color: rgba(255,255,255,.7); }
.stars { color: var(--gold); font-size: .82rem; margin-bottom: .7rem; }
.testimonial-quote { font-size: 1.8rem; line-height: 1; margin-bottom: .8rem; opacity: .35; }
.testimonial-text { font-size: .93rem; line-height: 1.75; color: var(--charcoal); margin-bottom: 1.3rem; }
.testimonial-footer { display: flex; align-items: center; gap: .9rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .95rem; color: #fff; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-loc { font-size: .8rem; color: var(--gray); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq-item { background: #fff; border: 1px solid var(--light-gray); border-radius: 13px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.4rem; cursor: pointer; font-weight: 600; font-size: .93rem; gap: 1rem; transition: color .2s; }
.faq-question:hover { color: var(--terra); }
.faq-toggle { font-size: 1.1rem; color: var(--terra); flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 1.4rem 1.1rem; color: var(--gray); font-size: .9rem; line-height: 1.7; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA BANNER ── */
.cta-section { background: var(--terra); padding: 4.5rem 5%; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; color: #fff; margin-bottom: .8rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 2rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-sub { margin-top: 1.5rem; color: rgba(255,255,255,.7); font-size: .88rem; position: relative; }
.cta-sub a { color: #fff; font-weight: 600; text-decoration: none; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4.5rem; align-items: start; }
.contact-info-text { color: var(--gray); line-height: 1.7; margin: 1.2rem 0 1.8rem; }
.contact-methods { display: flex; flex-direction: column; gap: .9rem; }
.contact-method { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem; border-radius: 13px; background: var(--cream); border: 1px solid var(--light-gray); }
.contact-method-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--terra); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.contact-method-label { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; }
.contact-method-val { font-weight: 600; font-size: .92rem; }
.contact-method-val a { color: inherit; text-decoration: none; }
.contact-method-val a:hover { color: var(--terra); }
.contact-form-box { background: #fff; border-radius: 22px; padding: 2.2rem; border: 1px solid var(--light-gray); }
.contact-form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: .9rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.form-group label { font-size: .8rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid var(--light-gray); border-radius: 9px; padding: .7rem .95rem; font-family: 'DM Sans', sans-serif; font-size: .92rem; background: var(--warm-white); transition: border-color .2s; outline: none; color: var(--charcoal); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--terra); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; background: var(--terra); color: #fff; border: none; border-radius: 9px; padding: .95rem; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600; cursor: pointer; transition: all .25s; }
.form-submit:hover { background: var(--terra-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,92,42,.3); }

/* ── CITY GRID ── */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.city-card { background: #fff; border: 1px solid var(--light-gray); border-radius: 14px; padding: 1.4rem 1.6rem; text-decoration: none; color: var(--charcoal); transition: all .25s; display: flex; align-items: center; justify-content: space-between; }
.city-card:hover { border-color: var(--terra); color: var(--terra); transform: translateX(4px); box-shadow: 0 6px 20px rgba(196,92,42,.12); }
.city-card h3 { font-weight: 600; font-size: .95rem; }
.city-card small { font-size: .78rem; color: var(--gray); display: block; margin-top: .2rem; }
.city-arrow { font-size: 1rem; opacity: .5; transition: opacity .2s; }
.city-card:hover .city-arrow { opacity: 1; }

/* ── AREA DETAIL (city pages) ── */
.area-details { background: var(--cream); }
.area-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.area-feature-item { background: #fff; border-radius: 13px; padding: 1.5rem; border: 1px solid var(--light-gray); }
.area-feature-item h4 { font-weight: 600; margin-bottom: .4rem; font-size: .95rem; }
.area-feature-item p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--charcoal-light); color: rgba(255,255,255,.6); padding: 3rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: #fff; display: block; margin-bottom: .9rem; text-decoration: none; }
.footer-logo span { color: var(--terra-light); }
.footer-desc { font-size: .85rem; line-height: 1.7; }
.footer-col h5 { color: #fff; font-weight: 600; margin-bottom: .9rem; font-size: .87rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--terra-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-links { display: flex; gap: 1.4rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealFallback { to { opacity: 1; transform: none; } }
/* Start hidden, reveal via JS observer OR fallback CSS after 0.8s */
.anim {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s, transform .65s;
  animation: revealFallback 0s 0.8s forwards;
}
.anim.visible {
  opacity: 1; transform: none;
  animation: none;
}
.anim-d1 { transition-delay: .1s; }
.anim-d2 { transition-delay: .2s; }
.anim-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 5%; }
  .page-hero { padding: 8rem 5% 4rem; }
  .process-grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  nav { padding: 1rem 5%; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 62px; left: 0; right: 0; background: rgba(253,250,244,.98); backdrop-filter: blur(12px); padding: 1.8rem 5%; gap: 1.4rem; border-bottom: 1px solid var(--light-gray); z-index: 99; }
  .nav-mobile-toggle { display: flex; }
  .nav-cta-desk { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .trust-bar { gap: 1rem; }
}
