/* ===========================
   THE FIREWOOD COMPANY
   styles.css
=========================== */

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

:root {
  /* Woodsmoke + ember palette */
  --brand:       #b1541f;  /* burnt-orange ember — primary accent */
  --brand-dark:  #8f4118;  /* deep ember — hover/active */
  --brand-light: #e2a874;  /* soft amber — accents on dark backgrounds */
  --forest:      #3f5a3a;  /* deep forest green — secondary accent */
  --forest-dark: #2c4128;
  --dark:        #26211d;  /* woodsmoke charcoal — dark sections */
  --dark-2:      #2f2822;  /* slightly lighter charcoal */
  --stone:       #8c7a5e;  /* warm neutral tan */
  --light:       #efe6d4;  /* warm cream — alt section background */
  --light-2:     #e6d9bd;  /* deeper tan — .bg-light sections */
  --text:        #2a2420;  /* warm charcoal ink — body text */
  --text-muted:  #6b5f52;  /* warm muted brown — secondary text */
  --white:       #fdfaf5;  /* warm paper — page background / cards */
  --border:      #ddd0ba;  /* warm border tone */

  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 20px rgba(38,33,29,0.10);
  --shadow-lg:   0 14px 38px rgba(38,33,29,0.18);

  --container-max: 1100px;
  --section-py:    96px;
  --section-py-sm: 64px;

  /* Spacing scale: 4 / 8 / 16 / 24 / 32 / 48 / 64 / 96 */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Karla', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-3);
  z-index: 1000;
  background: var(--brand);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: 'Karla', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: var(--space-3);
  text-decoration: none;
}

.mobile-call-bar { display: none; }

a[href="tel:8282003050"] { white-space: nowrap; }
.nowrap { white-space: nowrap; }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  font-family: 'Karla', Arial, sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border: 2px solid var(--brand);
  box-shadow: 0 6px 16px rgba(177,84,31,0.32);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(177,84,31,0.38);
  text-decoration: none;
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(177,84,31,0.32);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-secondary:active { transform: translateY(0); }

/* --- Header --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  padding: var(--space-3) 0;
  box-shadow: 0 2px 16px rgba(20,16,13,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; }
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Nav --- */
nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
nav a {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Karla', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.2s;
}
nav a:hover { color: var(--white); text-decoration: none; }
.nav-active { color: var(--brand-light) !important; }
.btn-nav {
  background: var(--brand);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(177,84,31,0.35);
  transition: background 0.18s ease, transform 0.18s ease;
}
.btn-nav:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* --- Hero --- */
.hero {
  background: linear-gradient(rgba(38,33,29,0.6), rgba(38,33,29,0.6)), url('uploads/pile-blue-sky.jpg');
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: var(--space-8) 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--brand-light);
  font-weight: 500;
  margin-bottom: var(--space-3);
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  line-height: 1.14;
  margin-bottom: var(--space-4);
  font-weight: 700;
  color: var(--white);
}
.hero-contact {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: 'Karla', Arial, sans-serif;
  letter-spacing: 0.2px;
  background: rgba(20,16,13,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
  transition: color 0.18s ease, background 0.18s ease;
}
.hero-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--brand-light);
}
.hero-contact-item:hover {
  color: var(--white);
  background: rgba(20,16,13,0.6);
  text-decoration: none;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.66);
  max-width: 600px;
  margin: 0 auto var(--space-6);
  font-weight: 300;
  line-height: 1.85;
}
.hero-cta {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Section Base --- */
.section { padding: var(--section-py) 0; }
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-2);
  font-family: 'Fraunces', Georgia, serif;
}
.section-title.light { color: var(--white); }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: var(--space-6);
  font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,0.6); }

/* --- Grids --- */
.grid { display: grid; gap: var(--space-4); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* --- Editorial Item Lists (Why Choose Us, Our Firewood, species) --- */
.edit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-7);
  border-bottom: 1px solid var(--border);
}
.edit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border);
}
.edit-num {
  flex: 0 0 auto;
  min-width: 56px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(177,84,31,0.3);
}
.edit-item-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text);
}
.edit-item-body p { color: var(--text-muted); font-size: 15px; line-height: 1.75; }

.edit-list--forest .edit-num { color: rgba(63,90,58,0.32); }
.edit-list--forest .edit-item-body h3 { color: var(--forest); }

/* --- Customers --- */
.customers { background: var(--light); }
.edit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
}
.edit-col .edit-num { display: block; margin-bottom: var(--space-2); }
.edit-col h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: var(--space-3); }
.edit-col ul li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--light-2);
  font-size: 15px;
  color: var(--text-muted);
}
.edit-col ul li:last-child { border-bottom: none; }
.edit-col + .edit-col {
  border-left: 1px solid var(--border);
  padding-left: var(--space-7);
}

/* --- Delivery --- */
.delivery-areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-4);
}
.area-tag {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Karla', Arial, sans-serif;
  letter-spacing: 0.4px;
}
.delivery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}
.delivery-note a { color: var(--brand-dark); font-weight: 700; }

/* --- Testimonials --- */
.testimonials.bg-dark { background: var(--dark-2); }
.testimonial {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--space-6) var(--space-4) var(--space-4);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: var(--space-4);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--brand-light);
  opacity: 0.55;
  line-height: 1;
}
.quote {
  font-style: italic;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: var(--space-4);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
}
.reviewer {
  position: relative;
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  font-size: 12px;
  color: var(--brand-light);
  font-family: 'Karla', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.reviewer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--brand-light);
  opacity: 0.5;
}

/* --- FAQ --- */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.faq-item summary {
  padding: var(--space-4);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  transition: background 0.15s ease;
  font-family: 'Karla', Arial, sans-serif;
  color: var(--text);
  letter-spacing: 0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--light); }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--text-muted);
  font-size: 15px;
}
.faq-item a { color: var(--brand-dark); }

/* --- Contact CTA --- */
.contact.bg-brand { background: var(--dark); }
.contact-inner { text-align: center; color: var(--white); }
.contact-inner > p { font-size: 17px; color: rgba(255,255,255,0.68); margin-bottom: var(--space-6); font-weight: 300; }
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  min-width: 180px;
}
.contact-link:hover {
  background: rgba(177,84,31,0.22);
  border-color: var(--brand-light);
  transform: translateY(-2px);
  text-decoration: none;
}
.contact-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-light);
  font-weight: 700;
  font-family: 'Karla', Arial, sans-serif;
}
.contact-link span:last-child { font-size: 16px; }

/* --- Footer --- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: var(--space-6) 0;
  font-size: 14px;
  font-family: 'Karla', Arial, sans-serif;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: 0.3px;
}
footer p { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.55); margin: 0 4px; }
.footer-links a:hover { color: var(--brand-light); }
.footer-copy { margin-top: var(--space-3); opacity: 0.35; font-size: 12px; }

/* --- Phone Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,33,29,0.6);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}
.modal-overlay.modal-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s ease, visibility 0s linear 0s;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4) var(--space-4);
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease;
}
.modal-overlay.modal-open .modal { transform: translateY(0) scale(1); }
.modal-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  white-space: nowrap;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.modal-actions {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.modal-btn {
  flex: 1;
  padding: var(--space-3);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Karla', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
.modal-btn--call {
  background: var(--brand);
  color: var(--white);
  border: 2px solid var(--brand);
  box-shadow: 0 5px 14px rgba(177,84,31,0.3);
}
.modal-btn--call:hover { background: var(--brand-dark); border-color: var(--brand-dark); text-decoration: none; }
.modal-btn--text {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
}
.modal-btn--text:hover { background: var(--light); text-decoration: none; }
.modal-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  font-family: 'Karla', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
}
.modal-dismiss:hover { color: var(--text); }

/* --- Background Utilities --- */
.bg-dark  { /* handled per section */ }
.bg-light { background: var(--light-2); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(160deg, #201b17 0%, #2f2822 55%, #1f1b17 100%);
  color: var(--white);
  padding: var(--space-7) 0 var(--space-6);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.66);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}

/* --- Policy Page --- */
.policy-content { max-width: 720px; }
.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--text);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: var(--space-3);
}
.policy-content ul {
  list-style: disc;
  padding-left: 1.3em;
  margin-bottom: var(--space-3);
}
.policy-content li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: var(--space-2);
}
.policy-content a { color: var(--brand-dark); }

/* --- Pricing --- */
.pricing-section { background: var(--white); }
.pricing-species { margin-top: var(--space-8); }
.pricing-note {
  background: var(--light);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: var(--space-4);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--stone);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-top-color: var(--brand);
  border-color: #e0c9a6;
}
.pricing-card--commercial {
  background: var(--light);
  border-top-color: var(--stone);
}
.pricing-badge {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 3px;
  margin-top: var(--space-4);
  font-family: 'Karla', Arial, sans-serif;
}
.pricing-qty {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  min-height: 56px;
}
.pricing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-dark);
  font-family: 'Karla', Arial, sans-serif;
}
.pricing-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.pricing-disclaimer a { color: var(--brand-dark); }

/* --- Species Section --- */
/* uses .edit-list / .edit-list--forest, see Editorial Item Lists above */

/* --- Our Story --- */
.our-story { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.story-photo {
  background: var(--light);
  padding: var(--space-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.story-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-lg) - 6px);
}
.story-text .hero-eyebrow { text-align: left; margin-bottom: var(--space-3); color: var(--brand-dark); }
.story-text h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text);
}
.story-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: var(--space-3);
}

/* --- Pricing Card Photos --- */
.pricing-card-photo {
  height: 180px;
  margin: calc(var(--space-5) * -1) calc(var(--space-4) * -1) var(--space-4);
  background-size: cover;
  background-position: center;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  cursor: pointer;
  transition: opacity 0.18s ease;
}
.pricing-card-photo:hover { opacity: 0.88; }

/* --- Photo Lightbox --- */
.story-photo img,
.customer-photo img {
  cursor: pointer;
  transition: opacity 0.18s ease;
}
.story-photo img:hover,
.customer-photo img:hover { opacity: 0.9; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,16,13,0.92);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.lightbox-overlay.lightbox-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.lightbox-overlay img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 24px;
  font-family: 'Karla', Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-2) 0 var(--space-4);
    box-shadow: 0 8px 24px rgba(20,16,13,0.4);
    z-index: 200;
  }
  nav.nav-open { display: flex; }
  nav a {
    padding: var(--space-3) var(--space-4);
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .btn-nav {
    margin: var(--space-3) var(--space-4) 0;
    text-align: center;
    border-radius: var(--radius);
    padding: 12px 20px;
  }
  .nav-active { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  header { position: sticky; top: 0; }
  .header-inner { position: relative; }

  body { padding-bottom: 58px; }
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: var(--brand);
    color: var(--white);
    padding: 15px;
    font-family: 'Karla', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 -4px 16px rgba(20,16,13,0.25);
  }
  .mobile-call-bar:hover { text-decoration: none; background: var(--brand-dark); }
  .mobile-call-bar svg { width: 17px; height: 17px; flex-shrink: 0; }

  .edit-list { grid-template-columns: 1fr; }
  .edit-num { font-size: 2.1rem; min-width: 48px; }
  .edit-cols { grid-template-columns: 1fr; gap: 0; }
  .edit-col + .edit-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: var(--space-6);
    margin-top: var(--space-5);
  }
}

@media (max-width: 640px) {
  .hero { padding: var(--section-py-sm) 0; }
  .section { padding: var(--section-py-sm) 0; }
  .contact-details { flex-direction: column; align-items: center; }
  .pricing-desc { min-height: unset; }
  .story-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .story-photo img { height: 260px; }
}
