/* ============================================================
   ASPLIN INC — Design System
   Mobile-first | Static HTML | No frameworks
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #222222;
  background: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --bg-alt:      #f5f5f5;
  --text:        #222222;
  --gold:        #caa400;
  --gold-dark:   #a88800;
  --green:       #2f4f3f;
  --slate:       #3a3a3a;
  --divider:     #e5e5e5;
  --shadow:      0 8px 24px rgba(0,0,0,.06);
  --shadow-md:   0 12px 32px rgba(0,0,0,.10);
  --radius-card: 12px;
  --radius-btn:  8px;
  --radius-img:  10px;
  --max-w:       1200px;
  --pad-mobile:  20px;
  --pad-desktop: 40px;
  --section-mobile: 48px;
  --section-desktop: 80px;
  --nav-h:       68px;
  --cta-bar-h:   64px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: "Inter", "Poppins", "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #222222;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.7; color: #555; }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--pad-desktop); }
}

.section {
  padding: var(--section-mobile) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--section-desktop) 0; }
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--green); color: #fff; }
.section--slate { background: var(--slate); color: #fff; }

.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 24px; }
.grid-4 { display: grid; gap: 20px; }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

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

.section-header { margin-bottom: 40px; }
.section-header h2 { margin-bottom: 12px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(.97); }

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

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--divider);
}
.btn-secondary:hover { border-color: var(--slate); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-sm { height: 42px; padding: 0 20px; font-size: .9rem; }
.btn-lg { height: 58px; padding: 0 36px; font-size: 1.05rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 767px) {
  .btn-group { justify-content: center; }
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-icon {
  width: 52px;
  height: 52px;
  background: #fff8e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 8px; }
.card p  { color: #555; font-size: .97rem; margin-bottom: 16px; }
.card a.card-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card a.card-link:hover { color: var(--gold-dark); }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap;
  gap: 8px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  flex-shrink: 1;
}
.nav-logo-name {
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.01em;
}
.nav-logo-img {
  height: clamp(38px, 6vw, 48px);
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-tag {
  font-size: .72rem;
  color: #cc0000;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* constrain to 85% of the logo image width;
     parent is sized by the img, so 85% of parent = 85% of img width */
  max-width: 85%;
}

.nav-links {
  display: none;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--bg-alt); color: var(--green); }

.nav-cta { display: none; }

.nav-phone {
  font-size: .95rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.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 {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  z-index: 99;
  padding: 16px var(--pad-mobile);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  border-bottom: 1px solid var(--divider);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .mobile-nav-cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; align-items: center; gap: 12px; }
  .hamburger { display: none; }
  .nav-phone { display: none; }
}

/* ── Sticky Mobile CTA Bar ────────────────────────────────── */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--cta-bar-h);
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.1);
}

.sticky-cta a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background .15s;
}
.sticky-cta a:last-child { border-right: none; }
.sticky-cta a:hover { background: rgba(255,255,255,.1); }
.sticky-cta a.cta-call { background: var(--gold); }
.sticky-cta a.cta-call:hover { background: var(--gold-dark); }

.sticky-cta .cta-icon { font-size: 1.2rem; }

@media (min-width: 900px) { .sticky-cta { display: none; } }

/* Bottom padding so content clears sticky bar on mobile */
body { padding-bottom: var(--cta-bar-h); }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, #1a2e23 100%);
  color: #fff;
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/img/hero/hero-bg.webp') center/cover no-repeat;
  opacity: .18;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(202,164,0,.25);
  color: #ffd740;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(202,164,0,.4);
}

.hero h1 { color: #fff; margin-bottom: 18px; max-width: 780px; }
.hero .lead { color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 560px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero-badge .badge-icon { font-size: 1rem; }

@media (min-width: 768px) {
  .hero { padding: 80px 0 90px; }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--gold);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.trust-item .t-icon { font-size: 1.1rem; }

/* ── Service Cards ────────────────────────────────────────── */
.service-cards { display: grid; gap: 24px; }

@media (min-width: 640px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p  { color: #555; font-size: .96rem; flex: 1; margin-bottom: 20px; }
.service-card .btn { align-self: flex-start; }

@media (max-width: 639px) {
  .service-card .btn { align-self: center; }
}

/* ── Materials Grid ───────────────────────────────────────── */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .materials-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 900px)  { .materials-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .materials-grid { grid-template-columns: repeat(6, 1fr); } }

.material-tile {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}
.material-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(202,164,0,.15);
  transform: translateY(-2px);
}
.material-tile-icon { font-size: 2rem; }
.material-tile-name { font-size: .88rem; font-weight: 700; line-height: 1.3; }

/* ── Why Choose ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(202,164,0,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.why-item h4 { margin-bottom: 4px; }
.why-item p  { font-size: .92rem; color: #555; margin: 0; }

/* ── Need selector ────────────────────────────────────────── */
.need-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .need-grid { grid-template-columns: repeat(3, 1fr); } }

.need-card {
  background: var(--white);
  border: 2px solid var(--divider);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  font-weight: 600;
}
.need-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(202,164,0,.12);
  transform: translateY(-2px);
}
.need-card .need-icon { font-size: 2.2rem; }
.need-card span { font-size: 1rem; line-height: 1.3; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #1a2e23 100%);
  color: #fff;
  padding: 52px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin: 0 auto 28px; }
.cta-banner .btn-group { justify-content: center; }

/* ── Calculator CTA block ─────────────────────────────────── */
.calc-promo {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .calc-promo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.calc-promo h3 { margin-bottom: 6px; }
.calc-promo p  { color: #555; margin: 0; }
.calc-promo .btn { flex-shrink: 0; }

@media (max-width: 767px) {
  .calc-promo .btn { align-self: center; }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.faq-question .faq-arrow {
  font-size: 1.2rem;
  transition: transform .2s;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: #555;
  font-size: .96rem;
}
.faq-item.open .faq-answer { display: block; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, #1a2e23 100%);
  color: #fff;
  padding: 48px 0 52px;
}
.page-hero h1   { color: #fff; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,.8); max-width: 600px; margin-bottom: 0; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* ── Service Detail ───────────────────────────────────────── */
.service-list {
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) { .service-list { grid-template-columns: repeat(2, 1fr); } }

.service-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 10px;
  font-weight: 600;
  font-size: .96rem;
}
.service-list-item .si-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── Contact Form ─────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--divider);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(202,164,0,.15);
}

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

textarea { min-height: 140px; resize: vertical; }

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px;
  border: 2px dashed var(--divider);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s;
  color: #888;
  font-size: .9rem;
}
.file-upload-label:hover { border-color: var(--gold); }
input[type="file"] { display: none; }

/* ── Calculator ───────────────────────────────────────────── */
.calc-wrapper {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 36px 28px;
  max-width: 640px;
  margin: 0 auto;
}
.calc-wrapper h3 { margin-bottom: 24px; }

.calc-result {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 24px;
  margin-top: 28px;
  text-align: center;
  display: none;
}
.calc-result.visible { display: block; }
.calc-result .result-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.calc-result .result-label { font-size: .9rem; color: #666; margin-top: 4px; }
.calc-result .result-note  { font-size: .85rem; color: #888; margin-top: 12px; }

/* ── Info Boxes ───────────────────────────────────────────── */
.info-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  font-size: .95rem;
}
.info-box p { margin: 0; }

/* ── Contact Info Block ───────────────────────────────────── */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(202,164,0,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.ci-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: #888; font-weight: 600; }
.ci-value { font-size: 1rem; font-weight: 600; color: var(--text); }
.ci-value a { color: var(--green); }
.ci-value a:hover { color: var(--gold); }

/* ── Hours Table ──────────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: .95rem; border-bottom: 1px solid var(--divider); }
.hours-table td:first-child { font-weight: 600; }
.hours-table td:last-child  { text-align: right; color: #555; }
.hours-table tr:last-child td { border-bottom: none; }

/* ── Map embed ────────────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--divider);
  height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Related Links ────────────────────────────────────────── */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--divider);
  border-radius: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate);
  transition: border-color .15s, color .15s;
}
.related-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.75);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .nav-logo-name { color: #fff; font-size: 1.2rem; }
.footer-brand .nav-logo-tag  { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .9rem; margin-top: 12px; max-width: 280px; color: rgba(255,255,255,.6); }

.footer-col h5 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Utility ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }

.divider { border: none; border-top: 1px solid var(--divider); margin: 0; }

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .sticky-cta, .site-header, .hamburger, .mobile-nav { display: none !important; }
  body { padding-bottom: 0; }
}
