/* =========================================================================
   Precision Tee Lab — design system
   Deep green + cream + gold. Serif display headings, system sans body.
   No external fonts, no frameworks, hand-written.
   ========================================================================= */

:root {
  --green-900: #0e2416;
  --green-800: #163e26;
  --green-700: #1e4f30;
  --green-600: #2c6a41;
  --cream: #f4efe3;
  --cream-dark: #e6dcc0;
  --paper: #fdfaf3;
  --gold: #b5652d;
  --gold-light: #d98c52;
  --gold-dark: #8a4a1e;
  --ink: #191f1a;
  --ink-soft: #454f47;
  --line: #d6cbab;

  --font-display: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container-w: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(14, 36, 22, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 36, 22, 0.12);
  --shadow-lg: 0 20px 48px rgba(14, 36, 22, 0.18);
  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-800);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-800);
  color: var(--cream);
  padding: 0.75em 1.25em;
  z-index: 1000;
}
.skip-link:focus { left: 1em; top: 1em; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85em 1.9em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--green-900);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(244, 239, 227, 0.12); transform: translateY(-2px); }
.btn-green {
  background: var(--green-800);
  color: var(--cream);
}
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { display: block; text-align: center; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  background: var(--green-800);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
}
.brand-tagline {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; align-items: center; gap: 22px; }
.nav-item { position: relative; }
.nav-item > a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-item > a:hover,
.nav-item.is-active > a { border-color: var(--gold); color: var(--gold-light); }
.nav-item .caret { font-size: 0.6rem; opacity: 0.8; }

.sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}
.nav-item.has-children:hover .sub-nav,
.nav-item.has-children.sub-open .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-nav li a {
  display: block;
  padding: 9px 14px;
  border-radius: 4px;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.sub-nav li a:hover { background: var(--cream-dark); color: var(--green-900); }

.nav-cta { padding: 0.6em 1.4em; font-size: 0.88rem; }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-800);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { max-height: 720px; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px; }
  .nav-item { border-bottom: 1px solid rgba(244,239,227,0.1); }
  .nav-item > a { display: flex; justify-content: space-between; padding: 14px 0; }
  .sub-nav {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.12);
    border-radius: 0;
    padding: 0;
    transition: max-height var(--transition);
  }
  .nav-item.sub-open .sub-nav { max-height: 400px; padding: 6px 0 12px; }
  .nav-item.has-children:hover .sub-nav { max-height: 0; } /* disable hover on touch/mobile width */
  .nav-item.sub-open:hover .sub-nav { max-height: 400px; }
  .sub-nav li a { color: var(--gold-light); padding: 8px 12px; }
  .nav-cta { margin: 16px 24px 24px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  color: var(--cream);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(181,101,45,0.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(181,101,45,0.10), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 { color: var(--cream); font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 16ch; }
.hero-lede { color: rgba(244,239,227,0.86); font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,239,227,0.16);
}
.hero-stat .stat-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); display: block; }
.hero-stat .stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(244,239,227,0.7); }

.hero-visual {
  border: 1px solid rgba(181,101,45,0.35);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-visual-title { color: var(--gold-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.hero-metric-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(244,239,227,0.18); }
.hero-metric-row:last-child { border-bottom: none; }
.hero-metric-row span:first-child { color: rgba(244,239,227,0.7); font-size: 0.88rem; }
.hero-metric-row span:last-child { color: var(--cream); font-weight: 700; font-family: var(--font-display); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ---------- Page header (non-home hero) ---------- */
.page-header {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--cream);
  padding: 64px 0 72px;
  position: relative;
}
.page-header .breadcrumb { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.page-header h1 { color: var(--cream); font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 22ch; }
.page-header .lede { color: rgba(244,239,227,0.85); max-width: 60ch; font-size: 1.05rem; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-alt { background: var(--paper); }
.section-tight { padding: 56px 0; }
.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { font-size: 1.05rem; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
}
.card h3 { font-size: 1.2rem; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-block; margin-top: 10px; color: var(--gold-dark); font-weight: 700; font-size: 0.9rem; border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.card-link:hover { border-color: var(--gold-dark); }

/* Service card variant on green */
.card-on-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(181,101,45,0.25);
  color: var(--cream);
}
.card-on-dark h3 { color: var(--cream); }
.card-on-dark p { color: rgba(244,239,227,0.78); }

/* ---------- Process steps ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 22px 26px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.step-num {
  counter-increment: step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.step-num::before { content: counter(step); }

/* ---------- Table (pricing / gapping) ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; background: var(--paper); min-width: 560px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
thead th { background: var(--green-800); color: var(--cream); font-family: var(--font-display); font-weight: 700; }
tbody tr:hover { background: var(--cream-dark); }
tbody tr:last-child td { border-bottom: none; }

/* ---------- Pricing cards ---------- */
.pricing-card { display: flex; flex-direction: column; }
.pricing-card .price { font-family: var(--font-display); font-size: 2.1rem; color: var(--green-800); margin: 8px 0 4px; }
.pricing-card .price span { font-size: 0.95rem; color: var(--ink-soft); font-family: var(--font-body); }
.pricing-card ul { margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-card li { padding-left: 22px; position: relative; font-size: 0.93rem; color: var(--ink-soft); }
.pricing-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.pricing-card.featured { border-color: var(--gold); box-shadow: var(--shadow-md); position: relative; }
.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--gold);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold);
  position: absolute;
  top: 6px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}
.testimonial p { position: relative; z-index: 1; font-style: italic; color: var(--ink); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.testimonial-author strong { display: block; color: var(--green-800); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--ink-soft); }
.stars { color: var(--gold-dark); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--cream);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(244,239,227,0.82); max-width: 56ch; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--green-800);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  border: 3px solid var(--gold);
}
.team-role { color: var(--gold-dark); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; display: block; }

/* ---------- Brand / cert boxes ---------- */
.brand-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.brand-box:hover { border-color: var(--gold); transform: translateY(-3px); }
.brand-box .brand-initials {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green-800);
  border: 2px solid var(--green-800);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.brand-box strong { display: block; color: var(--green-800); margin-bottom: 4px; }
.brand-box span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- FAQ (details/summary, no JS) ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-800);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-dark); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label { font-weight: 600; font-size: 0.9rem; color: var(--green-800); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,101,45,0.22);
}
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Map placeholder ---------- */
.map-placeholder {
  position: relative;
  height: 140px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  overflow: hidden;
  border: 1px solid rgba(181,101,45,0.3);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,239,227,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,227,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.map-pin {
  position: absolute;
  top: 46%;
  left: 52%;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(181,101,45,0.2);
}
.map-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.contact-map-large { height: 260px; }

/* Large map on contact page */
.map-placeholder-lg {
  position: relative;
  height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  overflow: hidden;
  border: 1px solid rgba(181,101,45,0.3);
}
.map-placeholder-lg .map-grid { background-size: 30px 30px; }
.map-placeholder-lg .map-pin { width: 22px; height: 22px; }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; }
.post-meta { font-size: 0.8rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; font-weight: 700; }
.post-card h3 { font-size: 1.15rem; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 1.6em; font-size: 1.5rem; }
.article-body h3 { margin-top: 1.3em; font-size: 1.2rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2em; padding-left: 1.4em; color: var(--ink-soft); }
.article-body li { margin-bottom: 0.5em; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.6em 0;
  padding: 0.4em 0 0.4em 1.4em;
  font-style: italic;
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.article-header { text-align: center; margin-bottom: 40px; }
.article-header .post-meta { margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(244,239,227,0.85); padding: 68px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244,239,227,0.12);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h3 { color: var(--gold-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-brand .brand-name { display: block; font-family: var(--font-display); color: var(--cream); font-size: 1.3rem; margin-bottom: 12px; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.badge-box {
  border: 1px solid rgba(181,101,45,0.35);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 0.76rem;
  color: var(--gold-light);
  display: inline-block;
  width: fit-content;
}
.site-footer address { font-size: 0.92rem; margin-bottom: 10px; color: rgba(244,239,227,0.75); }
.site-footer a:hover { color: var(--gold-light); }
.hours-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.86rem; padding: 4px 0; color: rgba(244,239,227,0.75); }
.footer-nav li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: rgba(244,239,227,0.55); }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 120px 0; }
.error-page .error-code { font-family: var(--font-display); font-size: 6rem; color: var(--gold); line-height: 1; }
.error-page h1 { margin-top: 8px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.list-check li { padding-left: 26px; position: relative; margin-bottom: 10px; }
.list-check li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag { background: var(--cream-dark); color: var(--green-800); font-size: 0.8rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; }
