@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --navy:        #0f1c2e;
  --navy-mid:    #162540;
  --gold:        #c8a84b;
  --gold-dark:   #a8882e;
  --white:       #ffffff;
  --grey-light:  #f5f5f5;
  --grey-text:   #555555;
  --text:        #1a1a1a;
  --max-width:   1140px;
  --pad-section: 80px;
  --pad-mobile:  48px;
  --radius:      6px;
  --shadow:      0 2px 14px rgba(0,0,0,.08);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1 { font-size: 48px; font-weight: 700; line-height: 1.12; }
h2 { font-size: 32px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--pad-section) 0; }
.bg-navy   { background: var(--navy); }
.bg-light  { background: var(--grey-light); }
.bg-white  { background: var(--white); }
.text-center { text-align: center; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: background .2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--navy); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: 2px solid var(--gold);
  transition: all .2s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--gold); color: var(--navy); }

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: background .2s;
}
.btn-dark:hover { background: var(--navy-mid); color: var(--white); }

.btn-gold-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--gold);
  transition: all .2s;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ===========================
   TOP UTILITY BAR
=========================== */
.top-bar {
  background: var(--navy-mid);
  color: var(--white);
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 12px;
}
.top-bar-left { color: rgba(255,255,255,.8); }
.top-bar-right a {
  color: var(--white);
  font-weight: 600;
  transition: color .2s;
}
.top-bar-right a:hover { color: var(--gold); }

/* ===========================
   NAVIGATION
=========================== */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 37px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-links a.btn-contact {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-left: 6px;
}
.nav-links a.btn-contact:hover {
  background: var(--gold-dark);
  color: var(--navy);
}
.nav-links a.btn-contact::after { display: none; }

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

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
.mobile-nav a.btn-contact { color: var(--gold); }

/* ===========================
   HERO — HOMEPAGE (SPLIT)
=========================== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 48px;
  align-items: center;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content .subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
}
.google-letters { font-size: 15px; font-weight: 700; line-height: 1; }
.g-blue  { color: #4285F4; }
.g-red   { color: #EA4335; }
.g-yellow{ color: #FBBC05; }
.g-green { color: #34A853; }
.google-info { line-height: 1.3; }
.google-stars { color: #FBBC05; font-size: 12px; }
.google-rating { font-size: 13px; color: rgba(255,255,255,.9); }
.bbb-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.15);
}
.bbb-badge svg { flex-shrink: 0; }

.hero-media { position: relative; }
.hero-img {
  border-radius: 10px;
  overflow: hidden;
  height: 420px;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--navy-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 13px;
  border: 1px dashed rgba(255,255,255,.1);
}

/* ===========================
   HERO — INNER PAGES
=========================== */
.hero-page {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 60px;
}
.hero-page .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hero-page .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.hero-page .breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.hero-page .breadcrumb a:hover { color: var(--gold); }
.hero-page .breadcrumb .sep { margin: 0 8px; }
.hero-page .breadcrumb .current { color: var(--gold); }
.hero-page h1 { color: var(--white); margin-bottom: 18px; max-width: 680px; }
.hero-page .subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 28px;
}
.hero-page .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: var(--gold);
  color: var(--navy);
  padding: 0;
}
.trust-bar-inner {
  max-width: 100%;
  display: flex;
  align-items: stretch;
}
.trust-stat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.trust-stat + .trust-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--navy);
  opacity: .2;
}
.trust-stat strong {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.trust-stat span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  opacity: .78;
  margin-top: 2px;
}

/* ===========================
   SERVICE CARDS
=========================== */
.services-section { background: var(--grey-light); }
.section-heading {
  text-align: center;
  color: var(--navy);
  margin-bottom: 48px;
}
.section-heading p {
  color: var(--grey-text);
  font-size: 17px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.card-icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--grey-text); font-size: 15px; line-height: 1.6; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  transition: color .2s;
}
.card .card-link:hover { color: var(--gold-dark); }
.card .card-link::after { content: '→'; }

/* ===========================
   ABOUT STRIP (homepage)
=========================== */
.about-strip { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--grey-text); margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text .btn-primary { margin-top: 24px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.stat-box strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-box span {
  font-size: 13px;
  color: var(--grey-text);
  font-weight: 600;
}

/* ===========================
   REVIEWS
=========================== */
.reviews-section { background: var(--navy); color: var(--white); }
.reviews-section .section-heading h2 { color: var(--white); }
.reviews-section .section-heading p { color: rgba(255,255,255,.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}
.review-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.review-card blockquote {
  color: rgba(255,255,255,.88);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.review-card cite {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}
.review-card cite .review-source {
  color: rgba(255,255,255,.4);
  font-weight: 400;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

/* ===========================
   CTA STRIP
=========================== */
.cta-strip {
  background: var(--gold);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--navy);
  font-size: 34px;
  margin-bottom: 12px;
}
.cta-strip p {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 28px;
  opacity: .85;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.footer-tagline {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  width: fit-content;
}
.footer-col ul li {
  margin-bottom: 9px;
}
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li span {
  color: rgba(255,255,255,.55);
  font-size: 14px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item strong {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: 13px;
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  font-size: 13px;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ===========================
   CONTENT SECTIONS (Inner pages)
=========================== */
.content-section { padding: var(--pad-section) 0; }
.content-section h2 { color: var(--navy); margin-bottom: 24px; }
.content-section h3 { color: var(--navy); margin-bottom: 12px; margin-top: 28px; }
.content-section h3:first-child { margin-top: 0; }
.content-section p { color: var(--grey-text); }
.content-section ul.check-list { margin: 16px 0 20px; }
.content-section ul.check-list li {
  color: var(--grey-text);
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  font-size: 15px;
}
.content-section ul.check-list li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 14px;
  top: 2px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col-img {
  border-radius: 8px;
  overflow: hidden;
  height: 340px;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service detail blocks */
.service-block {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid #e8e8e8;
}
.service-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-block h2 {
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-block h2 .h2-bar {
  display: inline-block;
  width: 4px;
  height: 28px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.service-block img {
  border-radius: 8px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Inline link */
.inline-link { color: var(--gold); font-weight: 600; transition: color .2s; }
.inline-link:hover { color: var(--gold-dark); }

/* ===========================
   FAQ SECTION
=========================== */
.faq-section { background: var(--grey-light); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  list-style: none;
}
.faq-question .faq-icon {
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .2s;
  width: 22px;
  text-align: center;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--grey-text);
  font-size: 15px;
  display: none;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0,0,0,.16);
}

/* ===========================
   CONTACT
=========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 20px; }
.contact-info p { color: var(--grey-text); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail .icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(200,168,75,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.contact-detail a, .contact-detail span { color: var(--grey-text); font-size: 15px; transition: color .2s; display: block; }
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); margin-bottom: 24px; font-size: 22px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,.12);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  width: 100%;
}
.btn-submit:hover { background: var(--gold-dark); }

/* Service areas list */
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.areas-list li {
  color: var(--grey-text);
  font-size: 15px;
  padding-left: 18px;
  position: relative;
}
.areas-list li::before {
  content: '·';
  color: var(--gold);
  position: absolute;
  left: 6px;
  font-weight: 700;
}

/* ===========================
   ARTICLE / TIP CARDS
=========================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s;
}
.article-card:hover { transform: translateY(-3px); }
.article-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.article-card-img-placeholder {
  height: 200px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  font-size: 13px;
}
.article-body {
  padding: 24px;
}
.article-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 19px;
}
.article-body p { color: var(--grey-text); font-size: 15px; }

/* ===========================
   COST GUIDE / INFO BOX
=========================== */
.info-box {
  background: rgba(200,168,75,.08);
  border: 1.5px solid rgba(200,168,75,.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.info-box h4 { color: var(--navy); margin-bottom: 10px; }
.info-box p { color: var(--grey-text); font-size: 15px; }

/* Cost table */
.cost-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.cost-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  color: var(--grey-text);
  font-size: 15px;
}
.cost-table tr:nth-child(even) td { background: var(--grey-light); }
.cost-table td:first-child { color: var(--navy); font-weight: 600; }

/* Emergency callout */
.emergency-callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.emergency-callout h3 { color: var(--gold); margin-bottom: 12px; }
.emergency-callout p { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.emergency-callout .phone-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* ===========================
   RESPONSIVE — 768px
=========================== */
@media (max-width: 768px) {
  :root {
    --pad-section: var(--pad-mobile);
  }

  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  h3 { font-size: 19px; }

  /* Top bar */
  .top-bar .container {
    flex-direction: column;
    gap: 3px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content .subtitle { font-size: 16px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; padding: 14px 20px; }
  .hero-img { height: 260px; }
  .hero-img-placeholder { height: 260px; }

  /* Trust bar */
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-stat { flex: 0 0 50%; }
  .trust-stat + .trust-stat::before { display: none; }

  /* Cards */
  .cards-grid, .cards-grid-4 { grid-template-columns: 1fr; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Service blocks */
  .service-block-inner,
  .service-block-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .service-block img { height: 220px; }

  /* Two-col */
  .two-col { grid-template-columns: 1fr; gap: 32px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  /* Articles */
  .articles-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Hero page */
  .hero-page { padding: 40px 0 44px; }
  .hero-page h1 { font-size: 28px; }

  /* CTA strip */
  .cta-strip { padding: 48px 0; }
  .cta-strip h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-stat { flex: 0 0 100%; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .emergency-callout .phone-number { font-size: 28px; }
}
