/* ============================================
   Bishop Garage Door Sales — Stylesheet
   Industrial / Bold Condensed / Hartford WI
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg: #f8f7f5;
  --bg-alt: #efeee9;
  --bg-card: #ffffff;
  --text: #1e1e1e;
  --text-muted: #5a5a5a;
  --primary: #3a506b;
  --primary-light: #4e6a8a;
  --accent: #b07340;
  --accent-light: #c98a56;
  --border: #ddd9d2;
  --font-heading: 'Barlow Semi Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius: 4px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

[data-theme="dark"] {
  --bg: #121212;
  --bg-alt: #1a1a1a;
  --bg-card: #222222;
  --text: #e8e6e2;
  --text-muted: #9a9a9a;
  --primary: #5a7a9e;
  --primary-light: #6d90b5;
  --accent: #d4964e;
  --accent-light: #e0a862;
  --border: #383838;
  --shadow: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.4);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; padding-bottom: 2.25rem; }

/* FOUC prevention */
body.no-fouc { opacity: 0; }
body.fouc-ready { opacity: 1; transition: opacity 0.15s ease; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p { font-size: clamp(1rem, 1.5vw, 1.125rem); }

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* --- Horizontal Rule (industrial) --- */
.hr-accent {
  border: none;
  height: 3px;
  background: var(--accent);
  width: 60px;
  margin: 1rem 0 1.5rem;
}

.hr-accent-center {
  border: none;
  height: 3px;
  background: var(--accent);
  width: 60px;
  margin: 1rem auto 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

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

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

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

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 1rem 2.25rem;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

[data-theme="dark"] .site-nav {
  background: rgba(18,18,18,0.95);
}

.has-dark-hero .site-nav {
  background: transparent;
  border-color: transparent;
}

.has-dark-hero .site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .has-dark-hero .site-nav.scrolled {
  background: rgba(18,18,18,0.95);
  border-color: var(--border);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}

.has-dark-hero .nav-logo { color: #fff; }
.has-dark-hero .site-nav.scrolled .nav-logo { color: var(--text); }

.nav-logo span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.has-dark-hero .nav-links a { color: #fff; }
.has-dark-hero .site-nav.scrolled .nav-links a { color: var(--text); }
.has-dark-hero .site-nav.scrolled .nav-links a:hover { color: var(--primary); }

.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { background: var(--accent-light); color: #fff; }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text);
  padding: 0.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.theme-toggle svg { width: 20px; height: 20px; }
.has-dark-hero .theme-toggle { color: #fff; }
.has-dark-hero .site-nav.scrolled .theme-toggle { color: var(--text); }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.35rem;
  color: var(--text);
  cursor: pointer;
}
.hamburger svg { width: 26px; height: 26px; }
.has-dark-hero .hamburger { color: #fff; }
.has-dark-hero .site-nav.scrolled .hamburger { color: var(--text); }

@media (max-width: 768px) {
  .hamburger { display: flex; align-items: center; }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  [data-theme="dark"] .nav-links { background: var(--bg); }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.15rem;
    color: var(--text) !important;
  }

  .nav-phone-desktop { display: none; }

  .nav-links .nav-phone {
    display: inline-flex;
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .nav-phone-mobile { display: none; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding-top: 64px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  margin-bottom: 0.75rem;
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.hero-phone {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--accent-light);
  text-decoration: none;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.hero-phone:hover { color: #fff; }

[data-theme="dark"] .hero-phone { color: var(--accent); }
[data-theme="dark"] .hero-phone:hover { color: #fff; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Emergency Band --- */
.emergency-band {
  background: var(--accent);
  color: #fff;
  padding: 1.25rem 0;
}

.emergency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  text-align: center;
}

.emergency-band strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.emergency-band a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition);
}
.emergency-band a:hover { border-color: #fff; color: #fff; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card a:hover { color: var(--accent-light); }
.service-card a svg { width: 16px; height: 16px; }

/* --- Image + Text Section --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text h2 { margin-bottom: 0.5rem; }
.split-text p { color: var(--text-muted); margin-bottom: 1rem; }

.check-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
}

.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-section.reverse { direction: ltr; }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
  gap: 1rem;
}

.faq-question:hover { color: var(--primary); }

.faq-question svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta-section .cta-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.cta-section .cta-phone:hover { color: var(--accent-light); }

/* --- About Page --- */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
}

.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: clamp(1.05rem, 2vw, 1.2rem); }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.value-item h3 { margin-bottom: 0.5rem; }
.value-item p { color: var(--text-muted); }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.contact-detail svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--primary); }

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

/* --- Service Detail Pages --- */
.service-detail-content {
  max-width: 800px;
}

.service-detail-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sidebar-card ul { margin-bottom: 1.25rem; }
.sidebar-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li a {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-card li a:hover { color: var(--primary); }
.sidebar-card li a svg { width: 14px; height: 14px; color: var(--accent); }

.sidebar-card .sidebar-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}
.sidebar-card .sidebar-phone:hover { color: var(--accent-light); }

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .service-page-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-sidebar { position: static; }
}

/* --- Image Grid (service pages) --- */
.image-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.image-grid-2 img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 500px) {
  .image-grid-2 { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 360px;
  margin-bottom: 1rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary); }

/* --- Disclaimer Bar --- */
.disclaimer-bar { position:fixed;bottom:0;left:0;right:0;z-index:101;background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* --- Subtle Animations --- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes door-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(176, 115, 64, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(176, 115, 64, 0); }
  }
  .nav-phone-desktop { animation: door-pulse 3s ease-in-out infinite; }

  @keyframes accent-slide {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
  .reveal.visible .hr-accent,
  .reveal.visible .hr-accent-center {
    animation: accent-slide 0.5s ease forwards;
    transform-origin: left;
  }
  .reveal.visible .hr-accent-center { transform-origin: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .reveal.visible { opacity: 1; transform: none; }
}

/* --- Misc --- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
