:root {
  --brand-dark: #3b2a20;
  --brand-ember: #b5541b;
  --brand-ember-dark: #8f4013;
  --brand-cream: #faf3ea;
  --brand-bark: #5c4632;
  --text-main: #2a1f18;
  --text-muted: #5a4d43;
  --star-empty: #c9bfb4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background: var(--brand-cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site-header {
  background: var(--brand-dark);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
header.site-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
header.site-header.visible.mobile-open {
  pointer-events: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.brand-logo { width: 60px; height: 60px; flex: 0 0 auto; }
.brand span { color: #e0a45c; }
nav.main-nav { display: flex; gap: 20px; align-items: center; }
nav.main-nav a {
  color: #f1e7da;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
nav.main-nav a:hover { color: #e0a45c; }
.call-btn {
  background: var(--brand-ember);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.call-btn:hover { background: var(--brand-ember-dark); }

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(59,42,32,0.85), rgba(91,63,38,0.8)),
              url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 140px 20px 160px;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.15;
}
.hero p.subhead {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 30px;
  color: #f1e7da;
}
.hero-ctas { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.btn-primary {
  background: var(--brand-ember);
  color: #fff;
  padding: 18px 44px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(181, 84, 27, 0.35);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--brand-ember-dark);
  box-shadow: 0 8px 28px rgba(181, 84, 27, 0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 42px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  border: 2.5px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.hero-badges {
  margin-top: 34px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #e9dcc9;
}
.hero-badges span { white-space: nowrap; }

/* Page hero (service / location pages) */
.page-hero {
  background: linear-gradient(135deg, rgba(59,42,32,0.88), rgba(91,63,38,0.84)),
              url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 130px 20px 60px;
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: #e9dcc9;
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: #e9dcc9; text-decoration: underline; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.2;
}
.page-hero p.subhead {
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto;
  color: #f1e7da;
}

/* Section generic */
section { padding: 64px 20px; }
h2.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-align: center;
  margin: 0 0 8px;
  color: var(--brand-dark);
}
p.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* Keyword-rich content section (service/location pages) */
.content-section { background: #fff; }
.content-section .container { max-width: 860px; }
.content-section h2 { color: var(--brand-dark); font-size: 1.6rem; margin: 0 0 16px; }
.content-section h3 { color: var(--brand-dark); font-size: 1.25rem; margin: 32px 0 12px; }
.content-section p { color: var(--text-muted); font-size: 1.02rem; margin: 0 0 16px; }
.content-section ul { color: var(--text-muted); font-size: 1.02rem; padding-left: 22px; margin: 0 0 16px; }
.content-section li { margin-bottom: 6px; }
.content-section p a:not(.btn-primary):not(.btn-secondary),
.content-section li a:not(.btn-primary):not(.btn-secondary) {
  color: var(--brand-ember-dark);
  text-decoration: underline;
  font-weight: 600;
}
.faq-item { margin-bottom: 20px; }
.faq-item h4 {
  color: var(--brand-dark);
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.faq-item p { margin: 0; }

/* Service Areas / internal linking grid */
.areas-section { background: var(--brand-cream); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.area-card {
  background: #fff;
  border: 1px solid #ecdfc9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.area-card:hover { border-color: var(--brand-ember); transform: translateY(-2px); }
.area-card .area-name { font-weight: 700; color: var(--brand-dark); font-size: 1.05rem; }
.area-card .area-pop { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* Services list linking to service pages */
.service-card a.service-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand-ember-dark);
  font-weight: 700;
  text-decoration: underline;
  font-size: 0.92rem;
}

/* Gallery carousel */
.gallery-section { background: #fff; }
.carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--brand-dark);
  aspect-ratio: 4 / 3;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(43, 30, 21, 0.55);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.carousel-btn:hover { background: rgba(181, 84, 27, 0.85); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d9c7ac;
  padding: 0;
  cursor: pointer;
}
.carousel-dots button.active { background: var(--brand-ember); }

/* Delivery Estimate */
.delivery-section { background: var(--brand-cream); }
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.delivery-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ecdfc9;
  aspect-ratio: 4 / 3;
}
.delivery-map:fullscreen { aspect-ratio: auto; border-radius: 0; }
.delivery-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-fullscreen-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(43, 30, 21, 0.65);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-fullscreen-btn:hover { background: rgba(181, 84, 27, 0.9); }
.map-fullscreen-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; }
.delivery-form-card {
  background: #fff;
  border: 1px solid #ecdfc9;
  border-radius: 12px;
  padding: 28px;
}
.delivery-form-card label {
  display: block;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.delivery-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.delivery-input-row input[type="text"] {
  flex: 1 1 200px;
  padding: 12px 14px;
  border: 1px solid #d8c8ab;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.delivery-input-row button {
  background: var(--brand-ember);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.delivery-input-row button:hover { background: var(--brand-ember-dark); }
.delivery-input-row button:disabled { opacity: 0.6; cursor: wait; }
.delivery-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.delivery-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 10px;
  background: var(--brand-cream);
  border: 1px dashed #d8c8ab;
  display: none;
}
.delivery-result.show { display: block; }
.delivery-result.error { background: #fdecec; border-color: #e5b3ae; color: #7a2b23; }
.delivery-result .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-ember-dark);
}
.delivery-result .distance {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 4px;
}
.delivery-result .note {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 10px;
}

/* Contact Form */
.contact-form-section {
  background: var(--brand-cream);
  padding: 80px 20px;
}
.contact-form-section .section-title {
  color: var(--brand-dark);
}
.contact-form-section .section-sub {
  color: var(--text-muted);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(59, 42, 32, 0.08);
  border: 1px solid rgba(216, 200, 171, 0.4);
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #d8c8ab;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--brand-dark);
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-ember);
  box-shadow: 0 0 0 3px rgba(181, 84, 27, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button[type="submit"] {
  margin-top: 10px;
}
.hidden-field {
  position: absolute;
  left: -9999px;
}
.form-status {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.form-status.success {
  color: #2e7d4f;
}
.form-status.error {
  color: #b5541b;
}

/* Pricing Calculator */
.pricing-section {
  background: var(--brand-cream);
  padding: 80px 20px;
}

.pricing-calculator {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(59, 42, 32, 0.08);
  border: 1px solid rgba(216, 200, 171, 0.4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pricing-header label {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 1rem;
}

.pricing-value {
  color: var(--brand-ember);
  font-weight: 700;
  font-size: 1.1rem;
}

.price-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #e8dcc8, var(--brand-ember));
  outline: none;
  -webkit-appearance: none;
  margin: 12px 0;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-ember);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(181, 84, 27, 0.3);
  transition: transform 0.2s ease;
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.price-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-ember);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(181, 84, 27, 0.3);
  transition: transform 0.2s ease;
}

.price-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.pricing-detail {
  font-size: 0.9rem;
  color: #7a6f66;
  margin-bottom: 8px;
}

.pricing-subtotal {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 1rem;
}

.pricing-options {
  border-top: 1px solid #e8dcc8;
  border-bottom: 1px solid #e8dcc8;
  padding: 20px 0;
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--brand-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: var(--brand-ember);
}

.stacking-fee-note {
  font-size: 0.85rem;
  color: #7a6f66;
  font-weight: 400;
}

.stacking-subtotal {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 1rem;
  text-align: right;
}

.pricing-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 2px solid var(--brand-ember);
}

.total-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.total-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-ember);
}

.pricing-note {
  font-size: 0.85rem;
  color: #7a6f66;
  margin-top: 20px;
  font-style: italic;
}

.pricing-receipt {
  background: #faf3ea;
  border: 1px solid rgba(216, 200, 171, 0.4);
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.receipt-header {
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8c8ab;
  font-size: 0.95rem;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--brand-dark);
}

.receipt-amount {
  font-weight: 600;
  color: var(--brand-ember);
}

.receipt-count {
  font-weight: 700;
  color: var(--brand-ember);
}

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-total {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .total-price {
    font-size: 1.5rem;
  }
}

/* About / description */
.about-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.about-section h2 { text-align: left; }
.about-section p { color: var(--text-muted); font-size: 1.05rem; }
.about-facts {
  background: #fff;
  border: 1px solid #ecdfc9;
  border-radius: 12px;
  padding: 26px;
}
.about-facts dl { margin: 0; }
.about-facts dt {
  font-weight: 700;
  color: var(--brand-dark);
  margin-top: 16px;
}
.about-facts dt:first-child { margin-top: 0; }
.about-facts dd { margin: 4px 0 0; color: var(--text-muted); }

/* Services */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--brand-cream);
  border: 1px solid #ecdfc9;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.service-card .icon { font-size: 2rem; margin-bottom: 10px; }
.service-card h3 { margin: 0 0 8px; color: var(--brand-dark); }
.service-card p { color: var(--text-muted); margin: 0; font-size: 0.97rem; }

/* Reviews / ratings */
.reviews-section {
  background: linear-gradient(180deg, #fff, var(--brand-cream));
  text-align: center;
}
.reviews-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 160px 0 130px;
}
.wood-round-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  background-image: url('../images/wood-round.png');
  background-size: 207%;
  background-position: 49.9% 48.9%;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
.stars-empty {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.stars-empty svg { width: 30px; height: 30px; fill: none; stroke: var(--star-empty); stroke-width: 1.5; }
.no-reviews-box {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ecdfc9;
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(43, 30, 21, 0.18);
}
.no-reviews-box h3 { margin: 0 0 8px; color: var(--brand-dark); font-size: 1.2rem; }
.no-reviews-box p { color: var(--text-muted); margin: 0 0 20px; }

/* Contact / hours */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.contact-card {
  background: var(--brand-cream);
  border: 1px solid #ecdfc9;
  border-radius: 12px;
  padding: 26px;
}
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-card p { margin: 0; color: var(--text-muted); }
.contact-card a.plain-link { text-decoration: underline; font-weight: 600; color: var(--brand-ember-dark); }

/* Contact form (About page) */
.contact-form-card {
  background: var(--brand-cream);
  border: 1px solid #ecdfc9;
  border-radius: 12px;
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
}
.contact-form-card label {
  display: block;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 14px 0 6px;
}
.contact-form-card label:first-child { margin-top: 0; }
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8c8ab;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form-card textarea { resize: vertical; min-height: 110px; }
.contact-form-card button {
  margin-top: 18px;
  width: 100%;
}

/* Final CTA */
.cta-section {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
}
.cta-section h2 { color: #fff; }
.cta-section p.section-sub { color: #e9dcc9; }

/* Footer / backlinks (social) */
footer.site-footer {
  background: #2a1f18;
  color: #d9cbb8;
  padding: 40px 20px 26px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-nap { font-size: 0.95rem; color: #cdbda6; }
.footer-nap strong { color: #fff; }
.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 0.88rem;
}
.footer-sitemap a { color: #cdbda6; text-decoration: none; }
.footer-sitemap a:hover { color: #fff; text-decoration: underline; }
.social-icons {
  display: flex;
  gap: 18px;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-icons a:hover { background: var(--brand-ember); }
.social-icons a.facebook-icon { background: #1877f2; }
.social-icons a.facebook-icon:hover { background: #145dc4; }
.social-icons a.instagram-icon {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons a.instagram-icon:hover { filter: brightness(0.9); }
.social-icons a.offerup-icon {
  background: #8bc53f;
  width: auto;
  border-radius: 22px;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.social-icons a.offerup-icon:hover { background: #74a832; }
.social-icons svg { width: 22px; height: 22px; fill: #fff; }
.footer-bottom {
  font-size: 0.82rem;
  color: #9a8a76;
  border-top: 1px solid #40332a;
  padding-top: 18px;
  width: 100%;
  text-align: center;
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 780px) {
  .about-section .container { grid-template-columns: 1fr; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    flex-direction: column;
    padding: 16px 20px;
    gap: 14px;
    display: none;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  header.site-header { position: sticky; }
}
