html,body{overflow-x:hidden;}
/* ============================================================
   ALISO VIEJO LEAK REPAIR PROS — Design C: Master-Planned Clean
   Primary: #3F6212 (Saddleback Sage) — AA contrast 6.7:1 on white
   Accent:  #C2845A (Pacific Sandstone) — use on dark bg or large text only
   ============================================================ */

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

:root {
  --sage:          #3F6212;
  --sage-dark:     #2B4509;
  --sage-light:    #F7F9F4;
  --sage-mid:      #BCCFAB;
  --sandstone:     #C2845A;
  --sandstone-dk:  #8A5030;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --gray-100:      #F5F5F5;
  --gray-200:      #E8E8E8;
  --gray-400:      #9A9A9A;
  --gray-600:      #5A5A5A;
  --gray-800:      #1F1F1F;
  --font:          'Manrope', system-ui, sans-serif;
  --radius-sm:     4px;
  --radius:        8px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06);
  --shadow:        0 2px 8px rgba(0,0,0,.08);
  --max-width:     1160px;
  --section-v:     72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 2px; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar__phone {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none;
}
.top-bar__phone:hover { text-decoration: underline; color: var(--white); }
.top-bar__divider { opacity: .5; }
.top-bar__tag { opacity: .9; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 41px;
  z-index: 190;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo { text-decoration: none; }


.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--sage);
  border-bottom-color: var(--sage);
  text-decoration: none;
}

/* Design C signature: 2px sage rule under full header */
.header-rule {
  height: 2px;
  background: var(--sage);
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform .2s;
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--sage-light);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}
.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
}
.breadcrumb__list li + li::before { content: '/'; margin-right: 6px; }
.breadcrumb__list a { color: var(--sage); }
.breadcrumb__list [aria-current] { color: var(--gray-600); font-weight: 500; }

/* ── EYEBROW LABEL (Design C signature) ──────────────────── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.eyebrow--sage { color: var(--sage); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  border-bottom: none;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.28) 60%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}
.hero .container.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.hero__h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.hero__sub {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__phone-inline {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}
.hero__phone-inline a { color: #90EE90; font-weight: 700; }

.hero__card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 6px;
  display: block;
}
.hero__card-phone {
  margin-top: 8px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.hero__card-phone a {
  font-size: 22px;
  font-weight: 700;
  color: var(--sage);
}
.hero__card-phone p { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1;
}
.btn--sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn--sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  text-decoration: none;
}
.btn--outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn--outline:hover {
  background: var(--sage-light);
  text-decoration: none;
}
.btn--sandstone {
  background: var(--sandstone);
  color: var(--white);
  border-color: var(--sandstone);
}
.btn--sandstone:hover {
  background: var(--sandstone-dk);
  border-color: var(--sandstone-dk);
  color: var(--white);
  text-decoration: none;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section--alt { background: var(--sage-light); }
.section--white { background: var(--white); }

.section__head { max-width: 640px; margin-bottom: 48px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section__lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── BENEFIT STRIP ───────────────────────────────────────── */
.benefit-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0;
}
.benefit-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit-item { text-align: center; }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.benefit-icon svg { color: var(--sage); }
.benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.benefit-desc { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color .15s, box-shadow .15s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.service-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
}
.service-card__desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.service-card__arrow {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
}

/* ── LOCATION CARDS ──────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 18px 16px;
  text-decoration: none;
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 500;
  transition: border-color .15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.location-card:hover { border-color: var(--sage); text-decoration: none; }
.location-card__arrow { color: var(--sage); font-size: 16px; }

/* ── BLOG CARDS ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s;
}
.blog-card:hover { border-color: var(--sage); text-decoration: none; }
.blog-card__meta { font-size: 11px; color: var(--gray-400); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.blog-card__title { font-size: 16px; font-weight: 700; color: var(--gray-800); line-height: 1.35; }
.blog-card__excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.blog-card__read { font-size: 13px; font-weight: 600; color: var(--sage); margin-top: auto; }

/* ── CALL BAND ───────────────────────────────────────────── */
.call-band {
  background: var(--sage);
  padding: 48px 0;
}
.call-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.call-band__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}
.call-band__headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.call-band .btn--sandstone { font-size: 18px; padding: 16px 36px; white-space: nowrap; }

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-question:hover { color: var(--sage); }
.faq-chevron { font-size: 18px; color: var(--sage); flex-shrink: 0; transition: transform .2s; }
.faq-answer {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ── PROSE CONTENT (service/location/blog pages) ─────────── */
.prose-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  padding: var(--section-v) 0;
  align-items: start;
}
.prose h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 36px 0 14px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.prose h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 28px 0 10px;
}
.prose p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 70ch;
}
.prose ul, .prose ol {
  margin: 0 0 18px 20px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
}
.prose li { margin-bottom: 6px; }
.prose a { color: var(--sage); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--gray-800); font-weight: 600; }

.page-h1 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--sage);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.page-intro {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 60ch;
}

/* Sidebar */
.sidebar { position: sticky; top: 120px; }
.sidebar-box {
  background: var(--sage-light);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 20px;
}
.sidebar-box__head {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sidebar-phone {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--sage);
  text-decoration: none;
  margin-bottom: 4px;
}
.sidebar-phone:hover { text-decoration: underline; }
.sidebar-tagline { font-size: 13px; color: var(--gray-600); }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}
.sidebar-links a:hover { color: var(--sage); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-address, .footer-license {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-phone {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--sandstone);
  text-decoration: none;
  margin: 8px 0 12px;
}
.footer-phone:hover { text-decoration: underline; color: var(--sandstone); }
.footer-col__head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-weight: 400;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-privacy { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-privacy:hover { color: var(--white); }

/* ── MOBILE STICKY ───────────────────────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 12px 16px;
  background: var(--white);
  border-top: 2px solid var(--sage);
}
.mobile-sticky__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius);
  width: 100%;
  text-decoration: none;
}
.mobile-sticky__btn:hover { background: var(--sage-dark); color: var(--white); text-decoration: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.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-24 { margin-bottom: 24px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.92);
    margin-top: 24px;
  }
  .hero__stat { min-width: 80px; flex: 1; }
  .hero__stat-num { font-size: 24px; }
  .hero__stat-label { font-size: 10px; }
  .hero__card-phone { display: none; }
  .prose-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .benefit-strip__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  :root { --section-v: 48px; }
  .top-bar { font-size: 12px; gap: 6px; }
  .top-bar__phone { font-size: 14px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    z-index: 180;
  }
  .primary-nav.open { display: block; }
  .nav-list { flex-direction: column; padding: 8px 0; }
  .nav-link { padding: 12px 24px; border-bottom: none; }
  .site-header { top: 37px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .call-band__inner { flex-direction: column; text-align: center; }
  .footer-col--brand { margin-bottom: 8px; }
  .mobile-sticky { display: block; }
  main { padding-bottom: 80px; }
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Service page images */
.service-img {
  margin: 28px 0 32px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.service-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

/* Local era images */
.local-era-img {
  margin: 24px 0 32px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  border: 1.5px solid var(--gray-200);
}
.local-era-img img {
  width: 100%;
  height: auto;
  display: block;
}
.local-era-img figcaption {
  font-size: 12px;
  color: var(--gray-400);
  padding: 6px 12px;
  line-height: 1.4;
  background: var(--gray-100);
}

/* ── TOOLS DROPDOWN NAV ─────────────────────────────────── */
.nav-item--has-dropdown{position:relative;}
.nav-dropdown{
  display:none;
  position:absolute;
  top:calc(100% + 4px);
  left:0;
  background:var(--white);
  border:1.5px solid var(--gray-200);
  border-radius:8px;
  min-width:220px;
  padding:8px 0;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  z-index:200;
  list-style:none;
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown{display:block;}
.nav-dropdown li a{
  display:block;
  padding:10px 18px;
  color:var(--gray-800);
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
  transition:background .12s,color .12s;
  text-decoration:none;
}
.nav-dropdown li a:hover{background:var(--sage-light);color:var(--sage);}
@media(max-width:768px){
  .nav-item--has-dropdown .nav-dropdown{
    position:static;
    box-shadow:none;
    border:none;
    border-top:1px solid var(--gray-100);
    padding:4px 0 4px 16px;
    background:transparent;
  }
  .nav-item--has-dropdown:hover .nav-dropdown{display:none;}
  .nav-item--has-dropdown.open .nav-dropdown{display:block;}
}

/* Blog featured images */
.blog-featured-img { margin: 0 0 32px; border-radius: 10px; overflow: hidden; line-height: 0; }
.blog-featured-img svg { display: block; width: 100%; height: auto; }
article table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 28px 0; }
article table thead tr { background: #3F6212; color: #fff; }
article table th { padding: 10px 14px; text-align: left; }
article table td { padding: 9px 14px; border-bottom: 1px solid #E8E8E8; }
article table tr:nth-child(even) { background: #F7F9F4; }
@media(max-width:600px){ article table { font-size: 12px; } article table th, article table td { padding: 7px 9px; } }

/* ── LOGO IMAGE ─────────────────────────────────────── */
.site-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.logo-img { display:block; height:44px; width:auto; max-width:200px; }
.footer-logo-link { display:inline-block; text-decoration:none; margin-bottom:12px; }
.footer-logo-img { display:block; height:auto; max-width:160px; }
@media(max-width:768px) { .logo-img { height:36px; } }

/* ── FOOTER SOCIAL ICONS ─────────────────────────────── */
.footer-social { display:flex; gap:12px; margin-top:16px; }
.social-link {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.75);
  transition:background var(--trans,0.2s ease), color var(--trans,0.2s ease), transform var(--trans,0.2s ease);
  text-decoration:none;
}
.social-link:hover { transform:translateY(-2px); color:#fff; }
.social-link--ig:hover { background:#E1306C; }
.social-link--fb:hover { background:#1877F2; }
.social-link--pin:hover { background:#E60023; }
