/* ============================================================
   GLOBAL RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0d0d0d;
  --charcoal:   #1c1c1c;
  --dark-grey:  #4a4a4a;
  --mid-grey:   #888;
  --light-grey: #f4f4f2;
  --white:      #ffffff;
  --gold:       #b8986a;
  --gold-dark:  #9a7d54;
  --gold-light: rgba(184,152,106,.12);
  --radius:     4px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.13);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-w:      1280px;
  --section-y:  80px;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1.1em; color: var(--dark-grey); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container  { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-y) 0; }
.section--grey { background: var(--light-grey); }
.section--dark { background: var(--charcoal); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.72); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-7 { display: grid; grid-template-columns: repeat(7,1fr); gap: 14px; }

.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--gold);  color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-dark   { background: var(--black);  color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--charcoal); }

.btn-full   { display: block; width: 100%; text-align: center; }
.btn-sm     { padding: 10px 20px; font-size: .8rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--black);
  color: var(--white);
  padding: 9px 0;
  font-size: .8rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; }
.topbar__phone { font-weight: 700; font-size: .92rem; }
.topbar__phone a { color: var(--gold); }
.topbar__trust  { color: rgba(255,255,255,.55); font-size: .76rem; }

/* ============================================================
   HEADER / NAV (with dropdowns)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: var(--nav-h);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: color .18s, background .18s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.nav__link:hover,
.nav__link.active  { color: var(--gold); background: var(--gold-light); }
.nav__arrow { font-size: .6rem; opacity: .6; transition: transform .2s; }
.nav__item:hover .nav__arrow { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 910;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background .14s, color .14s;
}
.nav__dropdown a:hover { background: var(--gold-light); color: var(--gold); }
.nav__dropdown .dropdown-label {
  padding: 10px 18px 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.nav__dropdown hr { border: none; border-top: 1px solid rgba(0,0,0,.06); margin: 6px 0; }

/* Cities mega dropdown — wider */
.nav__dropdown--cities { min-width: 260px; }
.nav__dropdown--cities .cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.nav__dropdown--cities .cities-grid a { border-radius: 0; }

/* Nav CTA group */
.nav__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__phone {
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-grey);
  padding: 7px 14px;
  border-radius: 6px;
  border: 1.5px solid rgba(0,0,0,.07);
  transition: background .15s, border-color .15s;
}
.nav__phone:hover { background: #f0ead6; border-color: var(--gold); }
.nav__phone a { color: var(--gold); font-size: 1rem; transition: color .15s; }
.nav__phone a:hover { color: var(--charcoal); }

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -3px 16px rgba(0,0,0,.25);
}
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-call-bar__call {
  background: var(--gold);
  color: var(--charcoal);
}
.mobile-call-bar__quote {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 800;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .mobile-section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 0 4px;
}
.mobile-nav a {
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(0,0,0,.05);
  color: var(--charcoal);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn  { margin-top: 24px; text-align: center; }

/* ============================================================
   HERO (dark, full-screen)
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.85) 45%, rgba(0,0,0,.4) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.hero__content { color: var(--white); }
.hero__content .section-label { color: var(--gold); }
.hero__content h1 { color: var(--white); margin-bottom: 18px; }
.hero__content .hero-sub { color: rgba(255,255,255,.8); font-size: 1.08rem; margin-bottom: 28px; }
.hero__trust  { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
.hero__trust li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: .9rem; }
.hero__trust li::before { content: "✓"; color: var(--gold); font-weight: 700; font-size: 1rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   LEAD FORM CARD
   ============================================================ */
.lead-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 26px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.lead-form-card h3   { font-size: 1.25rem; margin-bottom: 4px; color: var(--black); }
.lead-form-card .sub { font-size: .8rem; color: var(--mid-grey); margin-bottom: 18px; }

.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark-grey);
  margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,152,106,.14);
}
.form-group textarea { resize: vertical; min-height: 72px; }
.form-note { font-size: .7rem; color: var(--mid-grey); margin-top: 9px; text-align: center; }
.form-success {
  display: none;
  background: #e6f4ea;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
}

/* Sidebar form */
.page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.form-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.form-sidebar .lead-form-card { border: 1px solid rgba(0,0,0,.08); box-shadow: var(--shadow-md); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  border: 1px solid rgba(0,0,0,.06);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card__img { height: 220px; overflow: hidden; }
.service-card__img img { height: 100%; transition: transform .55s ease; }
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__body { padding: 22px; }
.service-card__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card__body p  { font-size: .88rem; margin-bottom: 14px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-card__link::after { content: "→"; transition: transform .2s; }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ============================================================
   CITY CARDS
   ============================================================ */
.city-card {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  padding: 20px;
  cursor: pointer;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  text-align: center;
}
.city-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold); }
.city-card__name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.city-card__sub  { font-size: .78rem; color: var(--mid-grey); margin-bottom: 12px; }
.city-card__link { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--black); padding: 36px 0; }
.stats-bar__inner { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.stat-item { text-align: center; color: var(--white); }
.stat-item .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-item .lbl { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; margin-top: 5px; color: rgba(255,255,255,.6); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--white); border-top: 3px solid var(--gold); border-bottom: 1px solid #e8e8e8; padding: 28px 0; }
.trust-bar__inner { display: flex; justify-content: space-around; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 12px; }
.trust-badge__icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.trust-badge__text { font-size: .82rem; line-height: 1.4; color: var(--dark-grey); }
.trust-badge__text strong { display: block; font-size: .9rem; color: var(--black); }

/* ============================================================
   FEATURES (Why Choose Us)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.feature-item h4 { margin-bottom: 3px; }
.feature-item p  { font-size: .86rem; margin-bottom: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.testimonial-card .quote  { font-size: .95rem; font-style: italic; margin-bottom: 14px; }
.testimonial-card .author { font-weight: 700; font-size: .86rem; }
.testimonial-card .loc    { font-size: .76rem; color: var(--mid-grey); }
.stars { color: var(--gold); margin-bottom: 10px; font-size: .95rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon { font-size: 1.2rem; transition: transform .25s; color: var(--gold); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--dark-grey);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 16px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 72px 0; background: var(--gold); text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p  { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto 26px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .4;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 30%, rgba(0,0,0,.3) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 48px 24px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero__content .section-label { color: var(--gold); }
.page-hero__content h1 { color: var(--white); margin-bottom: 8px; }
.page-hero__content p  { color: rgba(255,255,255,.75); font-size: 1.02rem; max-width: 580px; margin-bottom: 20px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 11px 0; font-size: .78rem; border-bottom: 1px solid rgba(0,0,0,.06); background: var(--light-grey); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--mid-grey); padding: 0 5px; }

/* ============================================================
   CONTENT PROSE
   ============================================================ */
.prose h2 { margin: 2rem 0 .75rem; }
.prose h3 { margin: 1.6rem 0 .55rem; color: var(--charcoal); }
.prose p  { font-size: .97rem; }
.prose ul { margin: .7rem 0 1.1rem 1.4rem; list-style: disc; }
.prose ul li { margin-bottom: .38rem; color: var(--dark-grey); }
.prose .img-block { margin: 24px 0; border-radius: 8px; overflow: hidden; }
.prose .img-block img { height: 340px; border-radius: 8px; }
.prose .inline-cta {
  background: var(--light-grey);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
}
.prose .inline-cta p { margin-bottom: 10px; font-weight: 600; color: var(--black); }

/* Related city/service links */
.link-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.link-chip {
  display: inline-block;
  padding: 6px 14px;
  background: var(--light-grey);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background .16s, color .16s, border-color .16s;
}
.link-chip:hover { background: var(--gold-light); color: var(--gold); border-color: var(--gold); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card__img { height: 210px; overflow: hidden; }
.blog-card__img img { height: 100%; transition: transform .5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 20px; }
.blog-card__meta { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mid-grey); margin-bottom: 6px; }
.blog-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card__body p  { font-size: .86rem; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gold);
}
.blog-card__link::after { content:"→"; transition: transform .2s; }
.blog-card:hover .blog-card__link::after { transform: translateX(4px); }

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: var(--gold-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-item h4 { margin-bottom: 1px; font-size: .97rem; }
.contact-info-item p  { margin-bottom: 0; font-size: .88rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 240px; gap: 10px; }
.gallery-item { overflow: hidden; border-radius: 6px; }
.gallery-item img { height: 100%; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--wide { grid-column: span 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding: 56px 0 0; font-size: .86rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer__brand .logo { color: var(--white); font-size: 1.2rem; margin-bottom: 14px; }
.footer__brand p { font-size: .83rem; line-height: 1.7; }
.footer__col h4 { color: var(--white); font-family: var(--font-head); font-size: .95rem; margin-bottom: 14px; }
.footer__col ul li { margin-bottom: 9px; }
.footer__col ul li a { color: rgba(255,255,255,.55); transition: color .16s; }
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { color: rgba(255,255,255,.35); }
.footer__bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1140px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner  { grid-template-columns: 1fr 380px; gap: 36px; }
  .page-layout  { grid-template-columns: 1fr 320px; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --section-y: 56px; }
  .grid-4, .feature-grid { grid-template-columns: repeat(2,1fr); }
  .hero__inner  { grid-template-columns: 1fr; }
  .hero__inner .lead-form-card { max-width: 480px; }
  .page-layout  { grid-template-columns: 1fr; }
  .form-sidebar { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .nav          { display: none; }
  .nav__cta     { display: none; }
  .hamburger    { display: flex; }
  .grid-7       { grid-template-columns: repeat(4,1fr); }
  .mobile-call-bar { display: flex; }
  body          { padding-bottom: 68px; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3    { grid-template-columns: 1fr; }
  .grid-4, .feature-grid { grid-template-columns: 1fr; }
  .grid-7             { grid-template-columns: repeat(2,1fr); }
  .gallery-grid       { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .footer__grid       { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom     { flex-direction: column; text-align: center; }
  .topbar__trust      { display: none; }
  .hero               { min-height: 100svh; }
  .hero__actions      { flex-direction: column; }
}
@media (max-width: 480px) {
  .btn { width: 100%; text-align: center; }
  .lead-form-card { padding: 22px 16px; }
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin: 24px 0 32px; }
.team-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--light-grey); border-radius: 10px; }
.team-card__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--black); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); flex-shrink: 0; }
.team-card__name { font-weight: 700; font-size: .95rem; }
.team-card__role { font-size: .78rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.team-card p { font-size: .82rem; color: var(--dark-grey); line-height: 1.5; margin: 0; }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AUTHOR BIO
   ============================================================ */
.author-bio { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--light-grey); border-radius: 12px; border-left: 4px solid var(--gold); }
.author-bio__avatar { flex-shrink: 0; }
.author-bio__initials { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: var(--black); font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); }
.author-bio__name { font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.author-bio__title { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.author-bio__text { font-size: .88rem; color: var(--dark-grey); line-height: 1.6; margin: 0; }
@media (max-width: 480px) { .author-bio { flex-direction: column; } }
