* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: #fff;
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: #8a3e1d;
  color: #fff;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c2c2c;
  text-decoration: none;
  line-height: 1.2;
}
.logo span { color: #8a3e1d; }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #444;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #8a3e1d; }

/* ── DROPDOWN MENU (Resources) ── */
.nav-links li.has-dropdown {
  position: relative;
}
.nav-links li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
  margin-left: 0.15rem;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  min-width: 200px;
  border: 1px solid #ebe6df;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 0.4rem 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  z-index: 250;
}
.nav-links li.has-dropdown:hover > .nav-dropdown,
.nav-links li.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge so hover doesn't drop when crossing the gap */
.nav-links li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.2rem;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: #faf8f5; color: #8a3e1d; }

.nav-cta {
  background: #8a3e1d !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 4px;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: #6b2f16 !important; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/CamPICS340-medium.JPG');
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem 5vw;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0c7a8;
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 1.2rem;
}
.hero-content p {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-green {
  background: #8a3e1d;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-green:hover { background: #6b2f16; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── STATS BAR ── */
.stats-bar {
  background: #8a3e1d;
  display: flex;
  justify-content: center;
}
.stat-item {
  padding: 1.1rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  flex: 1;
  max-width: 260px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
}

/* ── SHARED SECTION ── */
section { padding: 2rem 8vw 2.75rem; scroll-margin-top: 60px; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a3e1d;
  margin-bottom: 0.65rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 1.1rem;
}
.section-body {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.82;
}

/* ── ABOUT ── */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: 6px;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.about-img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Chef pop-and-wave overlay */
.about-stage {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
}
.chef-anim {
  position: absolute;
  bottom: -30%;
  right: 6%;
  width: 19%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  transform: translateY(100%);
  transform-origin: 50% 100%;
}
.about-stage.is-waving .chef-anim {
  animation: chef-pop 5.2s ease-in-out 1.4s forwards;
}
@keyframes chef-pop {
  0%   { transform: translateY(100%); }       /* hidden below image */
  18%  { transform: translateY(-115%); }      /* peek up bouncy */
  28%  { transform: translateY(-105%); }      /* settle */
  85%  { transform: translateY(-105%); }      /* hold while waving */
  100% { transform: translateY(100%); }       /* duck back down */
}
.chef-arm {
  transform-origin: 60px 74px;
  transform: rotate(0deg);
}
.about-stage.is-waving .chef-arm {
  animation: chef-wave 0.45s ease-in-out 2s 5;
}
@keyframes chef-wave {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(28deg); }
}
.about-text .section-body { margin-bottom: 1rem; }
.about-text b { color: #1a1a1a; font-weight: 700; }

.press-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.press-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.press-tag {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.28rem 0.75rem;
  font-size: 0.8rem;
  color: #555;
  font-weight: 600;
}

/* ── FEATURES ── */
.features { background: #f7f7f5; }
.features-header { text-align: center; max-width: 600px; margin: 0 auto 2rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feat-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out, border-color 0.3s ease-out;
}
.feat-card:hover {
  box-shadow: 0 45px 90px rgba(0,0,0,0.4), 0 15px 30px rgba(0,0,0,0.2);
  transform: translateY(-22px) scale(1.05);
  border-color: #8a3e1d;
  z-index: 2;
}
.feat-icon { font-size: 1.9rem; margin-bottom: 0.9rem; display: block; }
.feat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.feat-card p { font-size: 0.9rem; color: #666; line-height: 1.75; }

/* ── SERVICES ── */
.services { background: #fff; }
.services-header { text-align: center; max-width: 620px; margin: 0 auto 2.25rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #faf8f5;
  border: 1px solid #ebe6df;
  border-radius: 6px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border-color: #8a3e1d;
}
.service-card .svc-icon { font-size: 2.4rem; display: block; margin-bottom: 0.6rem; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.88rem; color: #666; line-height: 1.7; }

/* ── PRICING ── */
.pricing { background: #f7f7f5; }
.pricing-header { text-align: center; max-width: 620px; margin: 0 auto 2.25rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.price-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.price-card.featured {
  border-color: #8a3e1d;
  border-width: 2px;
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #8a3e1d;
  color: #fff;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
.price-card .price-tier-sub { font-size: 0.85rem; color: #666; margin-bottom: 1.1rem; }
.price-card .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #8a3e1d;
  line-height: 1;
}
.price-card .price-period { font-size: 0.82rem; color: #888; margin-bottom: 1.25rem; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px solid #eee;
  padding-top: 1.1rem;
}
.price-card ul li {
  font-size: 0.88rem;
  color: #444;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  line-height: 1.5;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8a3e1d;
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  margin: 1.75rem auto 0;
  font-size: 0.88rem;
  color: #666;
  max-width: 640px;
}

/* ── EQUIPMENT ── */
.equipment { background: #fff; }
.equipment-header { text-align: center; max-width: 600px; margin: 0 auto 2.25rem; }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.equip-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #8a3e1d;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ebe6df;
}
.equip-col ul { list-style: none; padding: 0; }
.equip-col ul li {
  font-size: 0.88rem;
  color: #444;
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
  line-height: 1.45;
}
.equip-col ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8a3e1d;
  font-weight: 700;
}

/* ── SERVICE AREA ── */
.service-area { background: #faf8f5; }
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.75rem;
  align-items: center;
}
.service-area-text .section-body { margin-bottom: 1rem; }
.service-area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.area-tag {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #444;
}
.area-tag.county {
  background: #8a3e1d;
  color: #fff;
  border-color: #8a3e1d;
}
.map-embed {
  width: 100%;
  border: 0;
  border-radius: 8px;
  aspect-ratio: 16/12;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  display: block;
}

/* ── TESTIMONIALS ── */
.testimonials { background: #f7f7f5; }
.testimonials-header { text-align: center; max-width: 580px; margin: 0 auto 2.25rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.test-card {
  background: #fff;
  border: 1px solid #ebe6df;
  border-radius: 8px;
  padding: 1.75rem 1.6rem;
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  left: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #8a3e1d;
  opacity: 0.18;
  line-height: 1;
}
.test-stars {
  color: #d49a3a;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.test-card p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.test-attribution {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid #eee;
  padding-top: 0.85rem;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #8a3e1d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.test-meta strong {
  display: block;
  font-size: 0.92rem;
  color: #1a1a1a;
  font-weight: 700;
}
.test-meta span { font-size: 0.78rem; color: #888; }

/* ── CALLOUT ── */
.callout-banner { background: #f8ede3; border-top: 1px solid #ecd7c2; border-bottom: 1px solid #ecd7c2; }
.callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}
.callout-inner img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
}

/* Animated truck overlay */
.truck-stage {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
}
.truck-anim {
  position: absolute;
  top: 62%;
  left: 0;
  width: 24%;
  height: auto;
  transform: translate(-130%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.35));
}
.truck-stage.is-driving .truck-anim {
  animation: drive-across 7s cubic-bezier(0.42, 0, 0.55, 1) 0.3s forwards;
}
@keyframes drive-across {
  0%   { transform: translate(-130%, -50%); }
  100% { transform: translate(450%, -50%); }
}

/* Tiny suspension bounce */
.truck-stage.is-driving .truck-anim {
  animation: drive-across 7s cubic-bezier(0.42, 0, 0.55, 1) 0.3s forwards,
             truck-bob 0.5s ease-in-out 0.3s 14;
}
@keyframes truck-bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -1.5px; }
}

/* Exhaust puffs */
.truck-anim .puff {
  opacity: 0;
}
.truck-stage.is-driving .puff1 {
  animation: puff 1.2s ease-out 0.5s infinite;
}
.truck-stage.is-driving .puff2 {
  animation: puff 1.2s ease-out 0.9s infinite;
}
@keyframes puff {
  0%   { opacity: 0.8; transform: translate(0, 0) scale(1); }
  100% { opacity: 0;   transform: translate(-6px, -8px) scale(2); }
}
.callout-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.callout-text p { color: #555; font-size: 0.96rem; line-height: 1.8; margin-bottom: 1.3rem; }

/* ── BUSINESSES ── */
.businesses { background: #fff; }.biz-header { text-align: center; max-width: 580px; margin: 0 auto 1.75rem; }
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.9rem;
}
.biz-card {
  background: #f7f7f5;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  padding: 1.1rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2c2c2c;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.biz-card:hover { border-color: #8a3e1d; background: #f8ede3; color: #8a3e1d; }

/* ── FAQ ── */
.faq { background: #f7f7f5; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.75rem;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.93rem;
  color: #1a1a1a;
  user-select: none;
  gap: 1rem;
}
.faq-q .arrow { color: #8a3e1d; font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.4rem 1.15rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: #8a3e1d; }

/* ── GALLERY ── */
.gallery { background: #fff; }
.gallery-header { text-align: center; max-width: 580px; margin: 0 auto 1.75rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 230px 230px;
  gap: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-grid > div { overflow: hidden; cursor: pointer; position: relative; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-grid > div:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }

.g-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem 0.85rem;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.45) 70%, rgba(0,0,0,0));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 2;
}
.gallery-grid > div:hover .g-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: lb-fade 0.2s ease-out;
}
.lb-overlay.lb-open { display: flex; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

.lb-stage {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: lb-in 0.25s ease-out;
  opacity: 1;
  filter: none;
  position: relative;
  z-index: 3;
}
@keyframes lb-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
  font-family: sans-serif;
  line-height: 1;
  z-index: 4;
}
.lb-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4); }
.lb-prev { left: -72px; }
.lb-next { right: -72px; }

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
  font-family: sans-serif;
  line-height: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }

.lb-counter {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-caption {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}
.lb-count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    background: rgba(0,0,0,0.65);
    border-color: rgba(255,255,255,0.35);
  }
}

/* ── CONTACT ── */
.contact-section { background: #f7f7f5; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: start;
}
.contact-left .section-body { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.c-row { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  width: 38px; height: 38px;
  background: #f6e4d4;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.c-row-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a3e1d;
  margin-bottom: 0.15rem;
}
.c-row-text span { font-size: 0.92rem; color: #2c2c2c; }

.contact-form-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
}
.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.4rem;
}
.form-row { margin-bottom: 0.95rem; }
.form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.3rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.68rem 0.9rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.93rem;
  color: #2c2c2c;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row textarea:focus { border-color: #8a3e1d; background: #fff; }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row .req { color: #b04a26; font-weight: 700; }
.form-row.has-error input,
.form-row.has-error textarea { border-color: #b04a26; background: #fff5f1; }
.form-row.has-error label { color: #b04a26; }
.form-status {
  display: none;
  margin: 0.5rem 0 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 4px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.success {
  background: #eaf5ed;
  color: #1f6b3a;
  border: 1px solid #c7e3d0;
}
.form-status.error {
  background: #fbeae3;
  color: #8a3e1d;
  border: 1px solid #f1c7b4;
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-submit {
  width: 100%;
  background: #8a3e1d;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.88rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.4rem;
}
.form-submit:hover { background: #6b2f16; }

/* ── FOOTER ── */
footer {
  background: #6b2f16;
  color: #ffffff;
  padding: 3.5rem 8vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 2rem;
}
.footer-brand .logo { color: #ffffff; display: block; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-brand .logo span { color: #ffffff; }
.footer-brand p { font-size: 0.87rem; line-height: 1.75; color: #ffffff; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0c7a8;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: #ffffff; text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #f0c7a8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #ffffff;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── HAMBURGER + MOBILE DRAWER ── */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  z-index: 301;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #2c2c2c;
  margin: 5px auto;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #fff;
  z-index: 300;
  padding: 6rem 2rem 2rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
  transition: right 0.3s ease-out;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-drawer a {
  display: block;
  padding: 0.9rem 0.5rem;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}
.mobile-drawer a:hover { color: #8a3e1d; }
.mobile-drawer .drawer-subhead {
  display: block;
  padding: 1rem 0.5rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a3e1d;
  border-bottom: none;
}
.mobile-drawer .indent { padding-left: 1.25rem; }
.mobile-drawer .nav-cta {
  background: #8a3e1d !important;
  color: #fff !important;
  text-align: center;
  border-radius: 4px;
  margin-top: 1rem;
  border-bottom: none !important;
}
.mobile-drawer .nav-cta:hover { background: #6b2f16 !important; color: #fff !important; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid, .callout-inner, .contact-grid, .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .service-area-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); flex: 1 1 140px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 1rem 5vw 2rem; scroll-margin-top: 52px; }
  .topbar { font-size: 0.72rem; padding: 0.5rem 1rem; line-height: 1.5; }
  nav { padding: 0 1.2rem; height: 64px; }
  .logo { font-size: 1rem; }
  .hero { height: 75vh; min-height: 440px; }
  .hero-content h1 { font-size: 2rem; line-height: 1.25; }
  .hero-content p { font-size: 0.98rem; }
  .hero-content .hero-eyebrow { font-size: 0.68rem; }
  .stat-item { padding: 1.2rem 1rem; }
  .stat-num { font-size: 1.8rem; }
  .callout-banner { padding: 3.5rem 5vw !important; }
  .contact-form-box { padding: 1.75rem; }
  .hero-btns { gap: 0.6rem; }
  .btn-green, .btn-outline-white { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
  footer { padding: 2.5rem 5vw 1.5rem; }
  .lb-btn { width: 40px; height: 40px; }
}
/* ── SUBPAGE HERO STRIP (used on services, pricing, equipment, etc.) ── */
.subpage-hero {
  background: linear-gradient(135deg, #8a3e1d 0%, #6b2f16 100%);
  color: #fff;
  padding: 4rem 8vw 3rem;
  text-align: center;
  position: relative;
}
.subpage-hero .crumb {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0c7a8;
  margin-bottom: 0.75rem;
}
.subpage-hero .crumb a {
  color: #f0c7a8;
  text-decoration: none;
  opacity: 0.85;
}
.subpage-hero .crumb a:hover { opacity: 1; text-decoration: underline; }
.subpage-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: #fff;
}
.subpage-hero p {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .subpage-hero { padding: 2.5rem 5vw 2rem; }
  .subpage-hero h1 { font-size: 1.8rem; }
  .subpage-hero p { font-size: 0.95rem; }
}

/* CTA banner often used at bottom of subpages */
.cta-banner {
  background: #faf8f5;
  border-top: 1px solid #ebe6df;
  border-bottom: 1px solid #ebe6df;
  text-align: center;
  padding: 3rem 8vw !important;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}
