/* =============================================================
   Fletcher Carpentry & Maintenance — Main Stylesheet
   fletchercarpentry.com.au
   ============================================================= */

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ==================== DESIGN TOKENS ==================== */
:root {
  --primary:        #C9A24E;
  --primary-dark:   #B0843A;
  --primary-light:  #D4BA7A;
  --dark:           #1A1714;
  --dark-2:         #2D2823;
  --text:           #333333;
  --text-light:     #6E6960;
  --text-lighter:   #9A9388;
  --white:          #FFFFFF;
  --bg-alt:         #FAF8F3;
  --bg-dark:        #1A1714;
  --border:         #E4DDD3;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --max-w:    1200px;
  --gutter:   clamp(16px, 4vw, 40px);

  --radius:    4px;
  --radius-lg: 10px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow:    0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);

  --transition: 0.28s ease;
  --header-h:   80px;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text-light); line-height: 1.75; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1rem; line-height: 1.8; }
strong { color: var(--dark); font-weight: 600; }

/* ==================== LAYOUT ==================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section    { padding: 88px 0; }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.72); }

/* ==================== SECTION HEADERS ==================== */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header .sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 0;
}
.section-header.center .sub { margin: 0 auto; }
.divider {
  width: 44px;
  height: 3px;
  background: var(--primary);
  margin-top: 18px;
  border-radius: 2px;
}
.section-header.center .divider { margin-left: auto; margin-right: auto; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(176,132,58,0.38); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--dark); }
.btn--outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline-dark:hover { background: var(--dark); color: var(--white); }
.btn--lg { padding: 18px 36px; font-size: 0.9rem; }

/* ==================== TOP BAR ==================== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 9px 0;
  font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-badge { display: flex; align-items: center; gap: 6px; }
.topbar-badge svg { color: var(--primary); flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-phone { color: var(--primary); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em; }
.topbar-phone:hover { color: var(--primary-light); }

/* ==================== HEADER & NAVIGATION ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-icon { width: 26px; height: 36px; flex-shrink: 0; }
.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 7px 13px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

/* Services dropdown */
.nav-has-drop { position: relative; }
.nav-drop-toggle { display: flex; align-items: center; gap: 4px; }
.nav-drop-toggle svg { transition: transform var(--transition); }
.nav-has-drop:hover .nav-drop-toggle svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  pointer-events: none;
}
.nav-has-drop:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--bg-alt); color: var(--primary); padding-left: 18px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all var(--transition);
  margin-left: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,145,47,0.35); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px var(--gutter) 20px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  box-shadow: var(--shadow);
  z-index: 800;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 11px 4px;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-nav a.sub { padding-left: 20px; font-size: 0.875rem; color: var(--text-light); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn { display: block; text-align: center; margin-top: 16px; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  max-height: 960px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2c1a0e;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(20,12,6,0.88) 0%,
    rgba(20,12,6,0.55) 55%,
    rgba(20,12,6,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px var(--gutter);
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--primary); }
.hero h1 { color: var(--white); max-width: 660px; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero .hero-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==================== TRUST STRIP ==================== */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
  border-right: 1px solid var(--border);
}
.trust-badge:last-child { border-right: none; }
.trust-badge-icon { color: var(--primary); flex-shrink: 0; }
.trust-badge-text strong { display: block; font-size: 1.05rem; font-family: var(--font-heading); color: var(--dark); line-height: 1.2; }
.trust-badge-text span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }

/* ==================== ABOUT INTRO ==================== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-image { position: relative; }
.about-intro-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #3d2b1f;
}
.about-intro-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.years-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.years-badge strong { display: block; font-family: var(--font-heading); font-size: 2.4rem; line-height: 1; }
.years-badge span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.about-intro-text .section-header { margin-bottom: 24px; }
.about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-point { display: flex; gap: 12px; align-items: flex-start; }
.about-point-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.about-point-text strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.about-point-text span { font-size: 0.85rem; color: var(--text-light); }

/* ==================== SERVICES GRID ==================== */
.services-intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2c1a0e;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,10,4,0.92) 0%, rgba(18,10,4,0.35) 65%, transparent 100%);
}
.service-card-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 26px; }
.service-card-icon { color: var(--primary); margin-bottom: 8px; }
.service-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.service-card p { color: rgba(255,255,255,0.72); font-size: 0.84rem; margin: 0 0 12px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-card-link svg { transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(5px); }

/* ==================== WHY CHOOSE US ==================== */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us-items { display: flex; flex-direction: column; gap: 30px; }
.why-item { display: flex; gap: 18px; }
.why-item-icon {
  width: 46px; height: 46px;
  background: rgba(200,145,47,0.12);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item-body h4 { color: var(--dark); margin-bottom: 5px; font-size: 1rem; }
.why-item-body p { font-size: 0.875rem; margin: 0; line-height: 1.65; }
.why-us-image-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; background: #3d2b1f; }
.why-us-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ==================== STATS ==================== */
.stats-section { background: var(--primary); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-divider { border-right: 1px solid rgba(255,255,255,0.2); }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 22px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--primary); }
.testimonial-text { font-size: 0.94rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--dark); font-size: 0.88rem; }
.testimonial-location { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* ==================== CTA BANNER ==================== */
.cta-banner { background: var(--dark-2); padding: 80px 0; }
.cta-banner-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.68); }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.cta-phone-link { display: flex; align-items: center; gap: 8px; color: var(--primary-light); font-size: 1.2rem; font-weight: 700; white-space: nowrap; }
.cta-phone-link:hover { color: var(--white); }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.45); }
.footer-brand-text { font-size: 0.875rem; line-height: 1.75; margin-top: 16px; margin-bottom: 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col-heading { font-family: var(--font-heading); color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.62); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.875rem; }
.footer-contact-row svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a { color: rgba(255,255,255,0.62); }
.footer-contact-row a:hover { color: var(--primary); }
.footer-contact-row span { color: rgba(255,255,255,0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; margin: 0; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social:hover { background: var(--primary); color: var(--white); }
.footer-areas { margin-top: 12px; }
.footer-areas p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 0; }

/* ==================== PAGE HERO (subpages) ==================== */
.page-hero {
  background: var(--dark-2);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; }

/* ==================== SERVICE INDIVIDUAL PAGE ==================== */
.service-content-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.service-content h2 { margin: 40px 0 16px; }
.service-content h3 { margin: 32px 0 12px; color: var(--dark); font-size: 1.25rem; }
.service-content p { font-size: 0.96rem; }
.service-content ul.tick-list { margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.tick-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.tick-list li::before { content: ''; display: block; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23C9A24E' opacity='.15'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23C9A24E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 1px; }
.service-image-block { border-radius: var(--radius-lg); overflow: hidden; margin: 28px 0; aspect-ratio: 16/9; background: #3d2b1f; }
.service-image-block img { width: 100%; height: 100%; object-fit: cover; }
.service-sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 14px; color: var(--dark); }
.sidebar-card p { font-size: 0.875rem; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 16px; }
.sidebar-card .tel { font-size: 1.25rem; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.sidebar-card .tel svg { color: var(--primary); }
.sidebar-card .tel:hover { color: var(--primary); }

/* Related services mini-list */
.related-services-list { display: flex; flex-direction: column; gap: 6px; }
.related-services-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.related-services-list a:last-child { border-bottom: none; }
.related-services-list a:hover { color: var(--primary); }
.related-services-list a svg { color: var(--primary); }

/* ==================== GALLERY / PROJECTS ==================== */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: #3d2b1f;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,10,4,0.6);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 40px; height: 40px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 92vw; max-height: 92vh; }
.lightbox-img { max-width: 100%; max-height: 88vh; border-radius: var(--radius); object-fit: contain; display: block; }
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}
.lightbox-close:hover { background: var(--primary); }
.lightbox-caption { color: rgba(255,255,255,0.65); font-size: 0.85rem; text-align: center; margin-top: 10px; }

/* ==================== BLOG ==================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: #3d2b1f; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-tag {
  display: inline-block;
  background: rgba(200,145,47,0.12);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.875rem; margin-bottom: 14px; }
.blog-meta { font-size: 0.75rem; color: var(--text-lighter); display: flex; gap: 14px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 5px; color: var(--primary); font-size: 0.8rem; font-weight: 700; margin-top: 14px; }
.blog-read-more svg { transition: transform var(--transition); }
.blog-read-more:hover svg { transform: translateX(4px); }

/* Article layout */
.article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 56px; }
.article-body { max-width: 720px; }
.article-body h2 { margin: 40px 0 14px; }
.article-body h3 { margin: 28px 0 10px; color: var(--dark); }
.article-body p { font-size: 1rem; line-height: 1.82; color: var(--text); }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 8px; color: var(--text); line-height: 1.7; }
.article-body ol { list-style: decimal; }
.article-body ul { list-style: disc; }
.article-body img { border-radius: var(--radius-lg); margin: 28px 0; }
.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}
.article-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }

/* ==================== CONTACT ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(200,145,47,0.1);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-info-value { font-size: 1rem; font-weight: 600; color: var(--dark); }
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--primary); }
.response-times { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px; margin-top: 28px; border: 1px solid var(--border); }
.response-times h3 { font-size: 1rem; margin-bottom: 14px; }
.response-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.response-row:last-child { border-bottom: none; }
.response-row span:first-child { color: var(--text-light); }
.response-row span:last-child { font-weight: 600; color: var(--dark); }

/* Contact Form */
.contact-form-wrap { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,145,47,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-light);
  pointer-events: none;
}
.file-upload-label {
  display: block;
  border: 2px dashed var(--border);
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.file-upload-label:hover { border-color: var(--primary); }
.file-upload-label svg { color: var(--primary); margin: 0 auto 8px; }
.file-upload-label span { display: block; font-size: 0.85rem; color: var(--text-light); }
.file-upload-label strong { font-size: 0.875rem; color: var(--dark); display: block; margin-bottom: 4px; }
.file-upload-label input { display: none; }
#file-name { font-size: 0.78rem; color: var(--primary); margin-top: 6px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 0.75rem; color: var(--text-lighter); text-align: center; margin-top: 10px; }
.form-success {
  display: none;
  background: #d4f4dd;
  color: #155724;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-error { background: #fde8e8; color: #842029; }

/* ==================== AREAS SECTION ==================== */
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  color: var(--text);
  transition: all var(--transition);
}
.area-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ==================== ACCREDITATION BAR ==================== */
.accred-bar { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.accred-bar .container { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.accred-item { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 0.85rem; font-weight: 600; }
.accred-item svg { color: var(--primary); }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ==================== BLOG ARTICLE PAGES ==================== */
.blog-cat-label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  margin-top: 10px;
  flex-wrap: wrap;
}
.meta-dot { color: rgba(255,255,255,0.3); }
.article-content { }
.article-content h2 { margin: 40px 0 14px; font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.article-content h3 { margin: 28px 0 10px; color: var(--dark); font-size: 1.2rem; }
.article-content p { font-size: 0.97rem; line-height: 1.82; color: var(--text); }
.article-content ol { padding-left: 20px; margin-bottom: 20px; list-style: decimal; }
.article-content ol li { margin-bottom: 8px; color: var(--text); line-height: 1.7; }
.article-content em { color: var(--text-light); font-style: italic; }
.article-lead {
  font-size: 1.15rem;
  line-height: 1.82;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 24px;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}
.article-cta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
}
.article-cta h3 { font-size: 1.2rem; margin-bottom: 8px; }
.article-cta p { margin-bottom: 20px; }
.article-cta .btn { margin-right: 12px; margin-bottom: 8px; }
.article-warning {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff9ef;
  border: 1px solid #f5d07a;
  border-left: 4px solid #f0a500;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}
.article-warning svg { color: #d4870a; flex-shrink: 0; margin-top: 2px; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.875rem;
}
.article-table th {
  background: var(--dark);
  color: var(--white);
  padding: 11px 14px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}
.article-table th:first-child { border-radius: var(--radius) 0 0 0; }
.article-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.article-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.article-table tr:nth-child(even) td { background: var(--bg-alt); }
.article-table tr:last-child td { border-bottom: none; }

/* Blog card overrides for the listing page markup */
.blog-card-img-link {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #3d2b1f;
  position: relative;
}
.blog-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.blog-card:hover .blog-card-img-link img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}
.blog-card-meta { font-size: 0.75rem; color: var(--text-lighter); margin-bottom: 8px; }
.blog-card-body h2 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card-body h2 a { color: var(--dark); }
.blog-card-body h2 a:hover { color: var(--primary); }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card-link svg { transition: transform var(--transition); }
.blog-card-link:hover svg { transform: translateX(4px); }

/* ==================== UTILITY ==================== */
.text-center { text-align: center; }
.text-gold { color: var(--primary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-badge { border-right: 1px solid var(--border); }
  .trust-badge:nth-child(2) { border-right: none; }
  .trust-badge:nth-child(3) { border-top: 1px solid var(--border); }
  .trust-badge:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-us-image-wrap { display: none; }
  .cta-banner-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { align-items: flex-start; flex-direction: row; }
  .service-content-wrap { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }
  .section { padding: 60px 0; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-intro-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { height: 78vh; }
  .topbar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .accred-bar .container { gap: 24px; }
  .cta-banner-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .trust-strip .container { grid-template-columns: 1fr; }
  .trust-badge { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-badge:nth-child(4) { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider:nth-child(2) { border-right: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.85rem; }
}
