/* ============================================================
   Pat McCarthy Renovations — Shared Stylesheet
   Custom Quality, Built For You.
   ============================================================ */

:root{
  --burgundy:#7B2D2D;
  --burgundy-deep:#5f2020;
  --burgundy-soft:#94413f;
  --cream:#F7F3EC;
  --cream-deep:#efe8db;
  --charcoal:#2B2B2B;
  --charcoal-soft:#4a4a4a;
  --gold:#C9A227;
  --gold-soft:#dcc06a;
  --white:#ffffff;
  --line:rgba(43,43,43,.12);
  --shadow-sm:0 2px 10px rgba(43,43,43,.06);
  --shadow-md:0 12px 34px rgba(43,43,43,.12);
  --shadow-lg:0 24px 60px rgba(43,43,43,.18);
  --serif:'Playfair Display',Georgia,'Times New Roman',serif;
  --sans:'Source Sans 3',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --wrap:1200px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  color:var(--charcoal);
  background:var(--cream);
  line-height:1.65;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--serif);font-weight:600;line-height:1.15;color:var(--charcoal)}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}
.wrap-narrow{max-width:840px;margin:0 auto;padding:0 24px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:var(--sans);font-weight:600;font-size:1rem;letter-spacing:.01em;
  padding:.9rem 1.7rem;border-radius:3px;cursor:pointer;border:2px solid transparent;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--burgundy);color:var(--white);box-shadow:var(--shadow-sm)}
.btn-primary:hover{background:var(--burgundy-deep);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.btn-outline{background:transparent;color:var(--burgundy);border-color:var(--burgundy)}
.btn-outline:hover{background:var(--burgundy);color:var(--white);transform:translateY(-2px)}
.btn-ghost-light{background:transparent;color:var(--white);border-color:rgba(255,255,255,.55)}
.btn-ghost-light:hover{background:var(--white);color:var(--burgundy);border-color:var(--white);transform:translateY(-2px)}
.btn-gold{background:var(--gold);color:var(--charcoal)}
.btn-gold:hover{background:var(--gold-soft);transform:translateY(-2px);box-shadow:var(--shadow-md)}

/* ---------- Nav ---------- */
.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(247,243,236,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease,background .3s ease;
}
.nav.scrolled{box-shadow:var(--shadow-sm);background:rgba(247,243,236,.97)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:82px}
.brand{display:flex;align-items:center;gap:.75rem}
.brand img{height:52px;width:auto}
.brand .brand-fallback{font-family:var(--serif);font-weight:700;color:var(--burgundy);font-size:1.35rem;line-height:1}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{
  font-weight:500;font-size:1rem;color:var(--charcoal);position:relative;padding:.25rem 0;
  transition:color .2s ease;
}
.nav-links a::after{
  content:'';position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--gold);
  transition:width .25s ease;
}
.nav-links a:hover{color:var(--burgundy)}
.nav-links a:hover::after{width:100%}
.nav-links a.active{color:var(--burgundy);font-weight:600}
.nav-links a.active::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:1.1rem}
.nav-phone{display:flex;align-items:center;gap:.5rem;font-weight:700;color:var(--burgundy);font-size:1.05rem}
.nav-phone svg{width:18px;height:18px;fill:var(--burgundy)}
.mobile-menu{display:none}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px}
.hamburger span{width:26px;height:2px;background:var(--charcoal);transition:.3s;border-radius:2px}
.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)}

/* ---------- Homepage hero ---------- */
.hero{
  position:relative;color:var(--white);
  background:linear-gradient(rgba(43,25,25,.72),rgba(60,25,25,.78)),var(--charcoal);
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(120deg,rgba(123,45,45,.55),transparent 60%);
  pointer-events:none;
}
.hero-inner{position:relative;z-index:2;padding:112px 0 120px;max-width:820px}
.hero .eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--sans);font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  font-size:.8rem;color:var(--gold-soft);margin-bottom:1.4rem;
}
.hero .eyebrow::before{content:'';width:34px;height:1px;background:var(--gold)}
.hero h1{
  font-size:clamp(2.6rem,6vw,4.4rem);font-weight:700;color:#fff;line-height:1.06;
  letter-spacing:-.01em;margin-bottom:1.4rem;
}
.hero h1 .accent{color:var(--gold-soft);font-style:italic;font-weight:600}
.hero p.lede{
  font-size:1.25rem;color:rgba(255,255,255,.9);font-weight:300;max-width:640px;margin-bottom:2.3rem;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;margin-bottom:2.6rem}
.hero-phone-line{display:flex;align-items:center;gap:.7rem;font-size:1.15rem}
.hero-phone-line a{font-family:var(--serif);font-size:1.7rem;font-weight:600;color:#fff}
.hero-phone-line svg{width:26px;height:26px;fill:var(--gold-soft)}
.hero-trust{display:flex;flex-wrap:wrap;gap:1.6rem;align-items:center;padding-top:1.8rem;border-top:1px solid rgba(255,255,255,.16)}
.hero-trust .ht{display:flex;align-items:center;gap:.55rem;font-size:.95rem;color:rgba(255,255,255,.85);font-weight:500}
.hero-trust svg{width:20px;height:20px;fill:var(--gold-soft);flex-shrink:0}

/* ---------- Inner page hero ---------- */
.page-hero{
  position:relative;color:#fff;text-align:center;
  background:linear-gradient(135deg,rgba(43,25,25,.94),rgba(95,32,32,.92)),var(--charcoal);
  padding:82px 0 74px;overflow:hidden;
}
.page-hero::after{
  content:'';position:absolute;right:-90px;bottom:-90px;width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle,rgba(201,162,39,.2),transparent 70%);pointer-events:none;
}
.page-hero .inner{position:relative;z-index:2;max-width:800px;margin:0 auto}
.page-hero .eyebrow{
  display:inline-block;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  font-size:.78rem;color:var(--gold-soft);margin-bottom:1rem;
}
.page-hero h1{font-size:clamp(2.2rem,5vw,3.6rem);color:#fff;margin-bottom:1rem;font-weight:700}
.page-hero p{font-size:1.15rem;color:rgba(255,255,255,.88);font-weight:300;max-width:660px;margin:0 auto}
.breadcrumb{
  position:relative;z-index:2;margin-bottom:1.4rem;font-size:.88rem;color:rgba(255,255,255,.6);
  display:flex;gap:.5rem;justify-content:center;flex-wrap:wrap;
}
.breadcrumb a:hover{color:var(--gold-soft)}
.breadcrumb span{color:rgba(255,255,255,.4)}

/* ---------- Credentials strip ---------- */
.creds{background:var(--burgundy);color:#fff;padding:2.4rem 0}
.creds-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1rem;text-align:center}
.cred{display:flex;flex-direction:column;align-items:center;gap:.65rem;padding:0 .5rem;position:relative}
a.cred{transition:transform .25s ease}
a.cred:hover{transform:translateY(-4px)}
a.cred:hover b{color:var(--gold-soft)}
a.cred:hover .cred-icon{fill:#fff}
.cred:not(:last-child)::after{content:'';position:absolute;right:-.5rem;top:15%;height:70%;width:1px;background:rgba(255,255,255,.2)}
.cred .cred-icon{width:38px;height:38px;fill:var(--gold-soft)}
.cred b{font-family:var(--serif);font-size:1.02rem;font-weight:600;line-height:1.2;color:#fff}
.cred span{font-size:.82rem;color:rgba(255,255,255,.75);letter-spacing:.02em}

/* ---------- Section shells ---------- */
.section{padding:96px 0}
.section-sm{padding:64px 0}
.section-cream{background:var(--cream)}
.section-white{background:var(--white)}
.section-deep{background:var(--cream-deep)}
.section-dark{background:var(--charcoal);color:#fff}
.section-dark h2,.section-dark h3{color:#fff}
.section-dark .eyebrow-dark{color:var(--gold-soft)}
.section-dark .section-head p{color:rgba(255,255,255,.75)}
.section-head{max-width:680px;margin-bottom:3.2rem}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.eyebrow-dark{
  display:inline-flex;align-items:center;gap:.6rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;font-size:.78rem;color:var(--burgundy);margin-bottom:1rem;
}
.eyebrow-dark::before{content:'';width:30px;height:2px;background:var(--gold)}
.section-head.center .eyebrow-dark::before{display:none}
.section-head h2{font-size:clamp(2rem,4vw,2.9rem);margin-bottom:1rem}
.section-head p{font-size:1.12rem;color:var(--charcoal-soft)}

/* ---------- Prose ---------- */
.prose p{color:var(--charcoal-soft);margin-bottom:1.15rem;font-size:1.06rem}
.prose h3{font-size:1.5rem;margin:2.2rem 0 .8rem}
.prose ul{margin:0 0 1.3rem 1.2rem;color:var(--charcoal-soft)}
.prose ul li{margin-bottom:.5rem}
.prose strong{color:var(--charcoal);font-weight:600}

/* ---------- Service cards ---------- */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.service-card{
  background:var(--white);border:1px solid var(--line);border-radius:6px;padding:2.1rem 1.9rem;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
  position:relative;overflow:hidden;
}
.service-card::before{
  content:'';position:absolute;top:0;left:0;width:100%;height:3px;
  background:var(--burgundy);transform:scaleX(0);transform-origin:left;transition:transform .35s ease;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{
  width:56px;height:56px;border-radius:8px;background:var(--cream-deep);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.3rem;transition:background .3s ease;
}
.service-icon svg{width:30px;height:30px;fill:var(--burgundy);transition:fill .3s ease}
.service-card:hover .service-icon{background:var(--burgundy)}
.service-card:hover .service-icon svg{fill:var(--gold-soft)}
.service-card h3{font-size:1.32rem;margin-bottom:.55rem}
.service-card p{font-size:.98rem;color:var(--charcoal-soft);margin-bottom:1.1rem}
.service-card .more{font-weight:600;color:var(--burgundy);font-size:.95rem;display:inline-flex;align-items:center;gap:.4rem;transition:gap .25s ease}
.service-card:hover .more{gap:.7rem}
.services-foot{text-align:center;margin-top:3rem}

/* ---------- Detail rows (alternating image/text) ---------- */
.detail-row{display:grid;grid-template-columns:1fr 1fr;gap:3.6rem;align-items:center;margin-bottom:5rem}
.detail-row:last-child{margin-bottom:0}
.detail-row.reverse .detail-media{order:2}
.detail-media .frame{
  aspect-ratio:4/3;border-radius:8px;overflow:hidden;box-shadow:var(--shadow-md);
  background:linear-gradient(150deg,var(--burgundy),var(--burgundy-deep));
  display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.55);
  font-family:var(--serif);font-style:italic;text-align:center;padding:2rem;font-size:.98rem;
}
.detail-content h3{font-size:clamp(1.6rem,3vw,2.1rem);margin-bottom:.9rem}
.detail-content p{color:var(--charcoal-soft);margin-bottom:1.1rem}
.checklist{list-style:none;margin:1.2rem 0}
.checklist li{display:flex;gap:.65rem;align-items:flex-start;margin-bottom:.6rem;color:var(--charcoal-soft);font-size:1rem}
.checklist svg{width:19px;height:19px;fill:var(--burgundy);flex-shrink:0;margin-top:5px}

/* ---------- About ---------- */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-media{position:relative}
.about-media .frame{
  aspect-ratio:4/5;border-radius:8px;overflow:hidden;box-shadow:var(--shadow-lg);
  background:linear-gradient(150deg,var(--burgundy),var(--burgundy-deep));
  display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);
  font-family:var(--serif);font-style:italic;text-align:center;padding:2rem;position:relative;
}
.about-media .frame span{font-size:1rem;opacity:.7}
.about-media .est-badge{
  position:absolute;bottom:-26px;right:-20px;background:var(--gold);color:var(--charcoal);
  width:132px;height:132px;border-radius:50%;display:flex;flex-direction:column;align-items:center;
  justify-content:center;box-shadow:var(--shadow-md);border:5px solid var(--white);text-align:center;
}
.about-media .est-badge b{font-family:var(--serif);font-size:2rem;line-height:1}
.about-media .est-badge span{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-top:.2rem}
.about-content h2{font-size:clamp(1.9rem,3.5vw,2.7rem);margin-bottom:1.3rem}
.about-content p{color:var(--charcoal-soft);margin-bottom:1.15rem}
.about-content .sig{font-family:var(--serif);font-style:italic;font-size:1.35rem;color:var(--burgundy);margin-top:1.4rem}
.about-stats{display:flex;gap:2.4rem;margin:1.9rem 0;flex-wrap:wrap}
.about-stats .stat b{display:block;font-family:var(--serif);font-size:2.4rem;color:var(--burgundy);line-height:1}
.about-stats .stat span{font-size:.9rem;color:var(--charcoal-soft);font-weight:500}

/* ---------- Timeline ---------- */
.timeline{position:relative;margin-top:1rem;padding-left:2.2rem}
.timeline::before{content:'';position:absolute;left:7px;top:6px;bottom:6px;width:2px;background:var(--cream-deep)}
.tl-item{position:relative;margin-bottom:2.2rem}
.tl-item::before{
  content:'';position:absolute;left:-2.2rem;top:7px;width:16px;height:16px;border-radius:50%;
  background:var(--burgundy);border:3px solid var(--cream);
}
.tl-item b{display:block;font-family:var(--serif);font-size:1.25rem;color:var(--burgundy);margin-bottom:.2rem}
.tl-item p{color:var(--charcoal-soft);font-size:1rem}

/* ---------- Testimonials ---------- */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.tcard{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:8px;
  padding:2.1rem 1.9rem;transition:transform .3s ease,background .3s ease;
}
.tcard:hover{transform:translateY(-5px);background:rgba(255,255,255,.07)}
.tcard .quote-mark{font-family:var(--serif);font-size:3.4rem;color:var(--gold-soft);line-height:.6;height:1.4rem;opacity:.85}
.tcard .stars{display:flex;gap:3px;margin:.4rem 0 1rem}
.tcard .stars svg{width:18px;height:18px;fill:var(--gold)}
.tcard p{font-size:1rem;color:rgba(255,255,255,.9);line-height:1.7;margin-bottom:1.4rem}
.tcard .who{display:flex;align-items:center;gap:.85rem;border-top:1px solid rgba(255,255,255,.12);padding-top:1.1rem}
.tcard .who .av{
  width:44px;height:44px;border-radius:50%;background:var(--burgundy);color:var(--gold-soft);
  display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:1.2rem;font-weight:600;
}
.tcard .who b{display:block;color:#fff;font-size:1rem}
.tcard .who span{font-size:.85rem;color:rgba(255,255,255,.6)}
.testimonials-foot{text-align:center;margin-top:3rem}

/* Light-background testimonial card variant */
.tcard-light{
  background:var(--white);border:1px solid var(--line);border-radius:8px;padding:2.1rem 1.9rem;
  transition:transform .3s ease,box-shadow .3s ease;
}
.tcard-light:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.tcard-light .quote-mark{font-family:var(--serif);font-size:3.4rem;color:var(--gold);line-height:.6;height:1.4rem;opacity:.6}
.tcard-light .stars{display:flex;gap:3px;margin:.4rem 0 1rem}
.tcard-light .stars svg{width:18px;height:18px;fill:var(--gold)}
.tcard-light p{font-size:1rem;color:var(--charcoal-soft);line-height:1.7;margin-bottom:1.4rem}
.tcard-light .who{display:flex;align-items:center;gap:.85rem;border-top:1px solid var(--line);padding-top:1.1rem}
.tcard-light .who .av{
  width:44px;height:44px;border-radius:50%;background:var(--burgundy);color:var(--gold-soft);
  display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:1.2rem;font-weight:600;
}
.tcard-light .who b{display:block;color:var(--charcoal);font-size:1rem}
.tcard-light .who span{font-size:.85rem;color:var(--charcoal-soft)}

/* ---------- Team ---------- */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.9rem}
.team-card{
  background:var(--white);border:1px solid var(--line);border-radius:8px;overflow:hidden;
  transition:transform .3s ease,box-shadow .3s ease;text-align:center;
}
.team-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.team-photo{
  aspect-ratio:1/1;background:linear-gradient(150deg,var(--burgundy),var(--burgundy-deep));
  display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.75);
  font-family:var(--serif);font-size:2.6rem;font-weight:600;
}
.team-body{padding:1.6rem 1.4rem 1.9rem}
.team-body h3{font-size:1.28rem;margin-bottom:.15rem}
.team-body .role{
  font-size:.82rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.8rem;display:block;
}
.team-body p{font-size:.96rem;color:var(--charcoal-soft)}

/* ---------- Service areas ---------- */
.areas-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1.1rem;margin-top:1rem}
.area{
  background:var(--white);border:1px solid var(--line);border-radius:6px;padding:1.7rem 1rem;
  text-align:center;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.area:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm);border-color:var(--gold)}
.area svg{width:30px;height:30px;fill:var(--burgundy);margin-bottom:.7rem}
.area b{font-family:var(--serif);font-size:1.18rem;display:block;color:var(--charcoal)}
.area span{font-size:.85rem;color:var(--charcoal-soft)}
.areas-note{text-align:center;margin-top:2rem;color:var(--charcoal-soft);font-size:.95rem}
.areas-note a{color:var(--burgundy);font-weight:600;border-bottom:1px solid var(--gold)}

/* Area detail blocks */
.area-block{
  background:var(--white);border:1px solid var(--line);border-left:4px solid var(--burgundy);
  border-radius:6px;padding:2.4rem 2.2rem;margin-bottom:1.6rem;
  transition:box-shadow .3s ease,transform .3s ease;
}
.area-block:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.area-block h2{font-size:1.85rem;margin-bottom:.3rem;display:flex;align-items:center;gap:.6rem}
.area-block h2 svg{width:24px;height:24px;fill:var(--burgundy)}
.area-block .sub{font-size:.85rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}
.area-block p{color:var(--charcoal-soft);margin-bottom:1.1rem}
.area-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.3rem}
.area-tags span{
  background:var(--cream-deep);color:var(--charcoal-soft);font-size:.85rem;font-weight:500;
  padding:.35rem .8rem;border-radius:100px;
}

/* ---------- FAQ / accordion ---------- */
.faq-item{background:var(--white);border:1px solid var(--line);border-radius:6px;margin-bottom:.9rem;overflow:hidden}
.faq-q{
  width:100%;text-align:left;background:none;border:none;cursor:pointer;
  font-family:var(--serif);font-size:1.15rem;font-weight:600;color:var(--charcoal);
  padding:1.3rem 3.2rem 1.3rem 1.6rem;position:relative;transition:color .2s ease;
}
.faq-q:hover{color:var(--burgundy)}
.faq-q::after{
  content:'+';position:absolute;right:1.5rem;top:50%;transform:translateY(-50%);
  font-family:var(--sans);font-size:1.6rem;font-weight:300;color:var(--burgundy);transition:transform .3s ease;
}
.faq-item.open .faq-q::after{transform:translateY(-50%) rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-a p{padding:0 1.6rem 1.4rem;color:var(--charcoal-soft)}
.faq-item.open .faq-a{max-height:420px}

/* ---------- Forms ---------- */
.form-card{background:var(--white);border:1px solid var(--line);border-radius:8px;padding:2.6rem;box-shadow:var(--shadow-sm)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.field{margin-bottom:1.2rem}
.field label{display:block;font-weight:600;font-size:.93rem;margin-bottom:.4rem;color:var(--charcoal)}
.field label .req{color:var(--burgundy)}
.field input,.field select,.field textarea{
  width:100%;font-family:var(--sans);font-size:1rem;color:var(--charcoal);
  padding:.8rem .9rem;border:1px solid var(--line);border-radius:4px;background:var(--cream);
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--burgundy);background:var(--white);
  box-shadow:0 0 0 3px rgba(123,45,45,.1);
}
.field textarea{resize:vertical;min-height:130px}
.form-note{font-size:.88rem;color:var(--charcoal-soft);margin-top:.9rem}
.form-status{
  margin-top:1rem;padding:.9rem 1.1rem;border-radius:4px;font-size:.95rem;font-weight:500;display:none;
}
.form-status.show{display:block}
.form-status.ok{background:rgba(201,162,39,.14);color:#7a6415;border:1px solid rgba(201,162,39,.4)}
.form-status.err{background:rgba(123,45,45,.08);color:var(--burgundy);border:1px solid rgba(123,45,45,.3)}
.field-error{border-color:var(--burgundy) !important}
.err-msg{color:var(--burgundy);font-size:.85rem;margin-top:.3rem;display:none}
.err-msg.show{display:block}

/* ---------- Contact info cards ---------- */
.contact-grid{display:grid;grid-template-columns:1.25fr 1fr;gap:3rem;align-items:start}
.info-card{
  background:var(--white);border:1px solid var(--line);border-radius:8px;padding:1.7rem;margin-bottom:1.2rem;
  display:flex;gap:1.1rem;align-items:flex-start;transition:transform .3s ease,box-shadow .3s ease;
}
.info-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm)}
.info-card .ic{
  width:48px;height:48px;border-radius:8px;background:var(--cream-deep);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.info-card .ic svg{width:24px;height:24px;fill:var(--burgundy)}
.info-card h3{font-size:1.15rem;margin-bottom:.25rem}
.info-card p,.info-card a{color:var(--charcoal-soft);font-size:1rem}
.info-card a{color:var(--burgundy);font-weight:600}
.info-card .big{font-family:var(--serif);font-size:1.5rem;font-weight:600;color:var(--burgundy)}

/* ---------- CTA band ---------- */
.cta{
  background:linear-gradient(135deg,var(--burgundy),var(--burgundy-deep));color:#fff;
  padding:84px 0;text-align:center;position:relative;overflow:hidden;
}
.cta::after{
  content:'';position:absolute;right:-80px;top:-80px;width:320px;height:320px;border-radius:50%;
  background:radial-gradient(circle,rgba(201,162,39,.22),transparent 70%);pointer-events:none;
}
.cta h2{font-size:clamp(2rem,4vw,3rem);color:#fff;margin-bottom:1rem;position:relative}
.cta p{font-size:1.2rem;color:rgba(255,255,255,.9);max-width:600px;margin:0 auto 2.2rem;position:relative;font-weight:300}
.cta-actions{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;align-items:center;position:relative}
.cta-phone{font-family:var(--serif);font-size:1.9rem;font-weight:600;color:#fff;display:inline-flex;align-items:center;gap:.6rem}
.cta-phone svg{width:26px;height:26px;fill:var(--gold-soft)}

/* ---------- Footer ---------- */
.footer{background:#211919;color:rgba(255,255,255,.72);padding:70px 0 0}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:2.4rem;padding-bottom:3rem}
.footer h4{color:#fff;font-family:var(--serif);font-size:1.15rem;margin-bottom:1.2rem}
.footer .f-brand .brand-fallback{font-family:var(--serif);color:var(--gold-soft);font-size:1.5rem;font-weight:700}
.footer .f-brand img{height:56px;margin-bottom:1rem;filter:brightness(0) invert(1);opacity:.92}
.footer .f-brand p{font-size:.95rem;line-height:1.7;max-width:320px}
.footer ul{list-style:none}
.footer ul li{margin-bottom:.6rem}
.footer ul li a{font-size:.96rem;transition:color .2s ease}
.footer ul li a:hover{color:var(--gold-soft)}
.footer .f-contact div{display:flex;gap:.6rem;align-items:flex-start;margin-bottom:.85rem;font-size:.96rem}
.footer .f-contact svg{width:18px;height:18px;fill:var(--gold-soft);flex-shrink:0;margin-top:3px}
.footer .f-contact a{color:#fff;font-weight:600}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.6rem 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.6rem;font-size:.85rem;color:rgba(255,255,255,.5)}
.footer-badges{display:flex;gap:1.2rem;flex-wrap:wrap}
.footer-badges span{font-size:.8rem;letter-spacing:.04em}

/* ---------- Reveal animation (progressive enhancement) ---------- */
.reveal{opacity:1;transform:none;transition:opacity .7s ease,transform .7s ease}
html.js .reveal{opacity:0;transform:translateY(28px)}
html.js .reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  html.js .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* ---------- Responsive ---------- */
@media(max-width:980px){
  .about-grid{grid-template-columns:1fr;gap:3.5rem}
  .about-media{max-width:400px;margin:0 auto}
  .creds-grid{grid-template-columns:repeat(3,1fr);gap:1.8rem 1rem}
  .cred:not(:last-child)::after{display:none}
  .services-grid,.tgrid,.team-grid{grid-template-columns:repeat(2,1fr)}
  .areas-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.2rem}
  .detail-row{grid-template-columns:1fr;gap:2rem;margin-bottom:3.4rem}
  .detail-row.reverse .detail-media{order:0}
  .contact-grid{grid-template-columns:1fr;gap:2.4rem}
}
@media(max-width:760px){
  .nav-links,.nav-phone{display:none}
  .hamburger{display:flex}
  .nav-cta .btn{display:none}
  .mobile-menu{
    display:block;
    position:fixed;top:82px;left:0;right:0;background:var(--cream);border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-md);transform:translateY(-140%);transition:transform .35s ease;z-index:99;
    padding:1.4rem 24px 2rem;
  }
  .mobile-menu.open{transform:translateY(0)}
  .mobile-menu a{display:block;padding:.85rem 0;font-size:1.1rem;font-weight:500;border-bottom:1px solid var(--line)}
  .mobile-menu .btn{margin-top:1.2rem;width:100%;justify-content:center}
  .mobile-menu .mm-phone{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:.9rem;font-weight:700;color:var(--burgundy);font-size:1.15rem}
  .mobile-menu .mm-phone svg{width:18px;height:18px;fill:var(--burgundy)}
  .section{padding:70px 0}
  .hero-inner{padding:80px 0 88px}
  .about-stats{gap:1.8rem}
  .form-card{padding:1.8rem 1.4rem}
  .form-row{grid-template-columns:1fr;gap:0}
  .area-block{padding:1.8rem 1.4rem}
}
@media(max-width:520px){
  body{font-size:16px}
  .services-grid,.tgrid,.areas-grid,.creds-grid,.team-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero-trust{gap:1rem}
  .about-media .est-badge{width:108px;height:108px;right:0}
  .btn{width:100%;justify-content:center}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-phone-line{justify-content:center;flex-wrap:wrap}
  .page-hero{padding:60px 0 54px}
}
