/* =====================================================
   BUSY BEE - PAGE STYLES
   Section-specific styles only — hero, cards, marquee, etc.
   Global styles (typography, buttons, nav, footer, forms)
   live in main.css.

   Rule of thumb: if it's reused on multiple pages with no
   visual variation, it belongs in main.css. If it's specific
   to one section/component, put it here.

   STRUCTURE:
   1. Homepage hero
   2. Section head
   3. Featured services + cards
   4. About section (homepage)
   5. Trusted by marquee
   6. Quote section
   7. Page hero (interior pages)
   8. Content blocks + two-col
   9. Feature lists
   10. Callout box
   11. B2B banner
   12. Contact cards
   13. Blog grid + cards
   14. Blog post
   15. Timeline (about page)
   16. Values cards (about page)
   17. Contact form intro + map (contact page)
   18. Process steps (services page)
   19. Gallery (services page)
   20. Responsive (mobile)
===================================================== */


/* =========================================
   1. HOMEPAGE HERO
========================================= */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  overflow: hidden;
  background: var(--cream-warm);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 70%;
}

.hero-bg-placeholder {
  background: linear-gradient(135deg, #d4cdb8 0%, #b8b39c 50%, #9a9580 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 243, 0.711);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 32px;
}

.hero h1 {
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  color: var(--yellow);
  display: inline-block;
}

.hero-sub {
  color: var(--text);
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* =========================================
   2. SECTION HEAD
   Reusable headline + intro for any section
========================================= */
.section-head {
  margin-bottom: 48px;
  text-align: center;
}

.section-head .eyebrow { display: inline-block; }
.section-head h2 { margin-bottom: 12px; }

.section-head p {
  color: var(--text);
  max-width: 750px;
  margin: 0 auto;
}


/* =========================================
   3. FEATURED SERVICES + CARDS
========================================= */
.featured-services { background: var(--olive-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #FFF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  padding: 32px 20px 28px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.service-card-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.service-card h3 { margin-bottom: 12px; }

.service-card p {
  color: var(--text);
  margin-bottom: 24px;
  flex: 1;
}

.service-card-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
}

.service-card:hover .service-card-btn {
  background: var(--olive);
  color: var(--cream);
}


/* =========================================
   4. ABOUT SECTION
========================================= */
.about-section { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--cream-warm);
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 { margin-bottom: 20px; }

.about-content p {
  color: var(--text);
  margin-bottom: 16px;
}

.about-content .btn { margin-top: 20px; }


/* =========================================
   5. TRUSTED BY MARQUEE
========================================= */
.trusted-section {
  background: var(--cream-warm);
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.trusted-section h2 {
  text-align: center;
  margin-bottom: 36px;
}

.trusted-marquee {
  overflow: hidden;
  position: relative;
  margin: 0 -32px;
}

.trusted-marquee::before,
.trusted-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-warm), transparent);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-warm), transparent);
}

.trusted-track {
  display: flex;
  gap: 64px;
  animation: scroll 15s linear infinite;
  width: fit-content;
  align-items: center;
}

.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

.trusted-track a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trusted-logo {
  height: 100px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
  object-fit: contain;
}

.trusted-logo:hover { opacity: 1; }


/* =========================================
   6. QUOTE SECTION
========================================= */
.quote-section {
  background: var(--cream);
  padding: 100px 0 40px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.quote-info {
  background: var(--olive-soft);
  padding: 40px;
  border-radius: var(--radius);
}

.quote-info h2 { margin-bottom: 22px; }

.quote-info p {
  color: var(--text);
  margin-bottom: 16px;
}

.quote-info .min-callout {
  background: var(--olive);
  color: var(--cream);
  padding: 24px 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
  margin-top: 28px;
}

.quote-info .min-callout span {
  color: var(--cream);
  line-height: 1.6;
  display: block;
}

.quote-form {
  background: #FFF;
  padding: 40px;
  border-radius: var(--radius);
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
}


/* =========================================
   7. PAGE HERO (interior pages)
========================================= */
.page-hero {
  padding: 72px 0 56px;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 198, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  max-width: 800px;
}

.page-hero h1 { margin-bottom: 16px; }

.page-hero p {
  color: var(--text-soft);
  max-width: 640px;
}

.breadcrumb {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--yellow); }

.breadcrumb span {
  color: var(--yellow);
  margin: 0 8px;
}


/* =========================================
   8. CONTENT BLOCKS + TWO-COL
========================================= */
.content-block { padding: 80px 0; }
.content-block.alt-bg { background: var(--cream-warm); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col h2 { margin-bottom: 20px; }

.two-col p {
  color: var(--text);
  margin-bottom: 14px;
}

.two-col .btn { margin-top: 20px; }

.content-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: var(--shadow);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

/* =========================================
   9. FEATURE LISTS (used on service pages)
========================================= */
.feature-list {
  list-style: none;
  margin: 24px 0 8px;
  padding: 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--olive);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li::before {
  content: '\2713';
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}


/* =========================================
   10. CALLOUT BOX
========================================= */
.callout-box {
  background: var(--olive);
  color: var(--cream);
  padding: 32px;
  border-radius: var(--radius);
  margin: 32px 0;
  border-left: 4px solid var(--yellow);
}

.callout-box h3 {
  color: var(--yellow);
  margin-bottom: 12px;
}

.callout-box p { color: var(--cream); }


/* =========================================
   11. B2B BANNER
========================================= */
.b2b-banner {
  background: var(--olive-soft);
  color: var(--cream);
  padding: 56px 0;
}

.b2b-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.b2b-banner h2 {
  color: var(--olive);
  margin: 0;
  max-width: 720px;
}

.b2b-banner h2 .yellow { color: var(--yellow); }


/* =========================================
   12. CONTACT CARDS
========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-card {
  background: #FFF;
  border: 1px solid var(--line);
  padding: 28px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.contact-card h3 {
  margin-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 10px;
  display: inline-block;
}

.contact-card p {
  color: var(--text);
  margin-bottom: 6px;
}

.contact-card a {
  color: var(--olive);
  font-weight: 600;
  border-bottom: 1px solid var(--yellow);
}

.contact-card.dark {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}

.contact-card.dark h3 {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.contact-card.dark p { color: var(--cream); }

.contact-card .appointment-badge {
  display: inline-block;
  background: rgba(240, 198, 0, 0.15);
  border-left: 3px solid var(--yellow);
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--olive);
  font-weight: 600;
}


/* =========================================
   13. BLOG GRID + CARDS
========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.blog-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--olive);
  padding: 5px 12px;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border-radius: 2px;
  z-index: 2;
}

.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-card h3 {
  margin-bottom: 10px;
  line-height: 1.25;
}

.blog-card p {
  color: var(--text);
  margin-bottom: 14px;
  flex: 1;
}

.blog-card .read-more {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  font-weight: 700;
}


/* =========================================
   14. BLOG POST (single post template)
========================================= */
.post-hero {
  padding: 64px 0 40px;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
}

.post-meta {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  margin-bottom: 16px;
  font-weight: 600;
}

.post-meta .tag {
  background: var(--yellow);
  color: var(--olive);
  padding: 4px 10px;
  margin-right: 12px;
  border-radius: 2px;
  font-weight: 700;
}

.post-title {
  margin-bottom: 16px;
  max-width: 900px;
}

.post-author {
  font-size: 14px;
  color: var(--text-soft);
}

.post-featured-image {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: var(--shadow);
}

.post-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px 80px;
  line-height: 1.75;
  color: var(--text);
}

.post-content h2 { margin: 48px 0 16px; }
.post-content h3 { margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }

.post-content ul,
.post-content ol {
  margin: 0 0 24px 24px;
}

.post-content li {
  margin-bottom: 8px;
  font-size: 20px;
}

.post-content a {
  color: var(--olive);
  border-bottom: 2px solid var(--yellow);
}

.post-content a:hover { color: var(--yellow); }

.post-content blockquote {
  border-left: 4px solid var(--yellow);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--cream-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--olive);
}


/* =========================================
   15. TIMELINE (about page)
========================================= */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--olive-soft);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 48px;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  border: 3px solid var(--olive);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:nth-child(odd)::before {
  right: -8px;
}

.timeline-item:nth-child(even)::before {
  left: -8px;
}

.timeline-year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text);
  margin: 0;
}


/* =========================================
   16. VALUES CARDS (about page)
========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--olive-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--olive);
}

.value-icon svg {
  width: 36px;
  height: 36px;
}

.value-card h3 {
  margin-bottom: 14px;
}

.value-card p {
  color: var(--text);
  margin: 0;
}


/* =========================================
   17. CONTACT FORM INTRO + MAP (contact page)
========================================= */
.contact-form-intro {
  margin-bottom: 28px;
}

.contact-form-intro h2 {
  margin-bottom: 14px;
}

.contact-form-intro p {
  color: var(--text);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--olive);
  display: grid;
  place-items: center;
  color: var(--olive);
  transition: all 0.25s ease;
  border-bottom: 2px solid var(--olive);
}

.contact-socials a svg {
  width: 20px;
  height: 20px;
}

.contact-socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--olive);
  transform: translateY(-2px);
}

.contact-card.dark .contact-socials a {
  border-color: var(--cream);
  color: var(--cream);
}

.contact-card.dark .contact-socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--olive);
}

.map-section {
  padding: 0;
}

.map-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(20%) contrast(0.95);
  transition: filter 0.3s ease;
}

.map-wrap iframe:hover {
  filter: grayscale(0%) contrast(1);
}


/* =========================================
   18. PROCESS STEPS (services page)
========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.process-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text);
  margin: 0;
}


/* =========================================
   19. GALLERY (gallery + services pages)
========================================= */
.gallery-masonry {
  /* CSS columns approach for true masonry — photos stay at natural aspect ratio */
  columns: 4;
  column-gap: 8px;
}

.gallery-item {
  display: block;
  margin: 0 0 8px 0;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Old asymmetric grid styles - kept for services teaser only */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-grid .gallery-item {
  margin: 0;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-wide {
  grid-column: span 2;
}


/* =========================================
   20. RESPONSIVE (mobile, ≤ 980px)
   Mirrors section order above. Global mobile
   rules (typography, nav, footer, forms) live
   in main.css.
========================================= */
@media (max-width: 980px) {
  /* --- 1. Homepage hero --- */
  .hero {
    min-height: 480px;
    padding: 80px 0;
  }

  .hero-bg { background-position: center 90%; }

  /* --- 3. Featured services --- */
  .services-grid { grid-template-columns: 1fr; }

  .service-card { padding: 28px 16px 24px; }

  .service-card-image {
    width: 220px;
    height: 220px;
  }

  .service-card h3 { font-size: 32px; }

  .service-card-btn {
    font-size: 22px;
    padding: 12px 28px;
  }

  /* --- 4. About section --- */
  .about-section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* --- 6. Quote section --- */
  .quote-section {
    padding: 60px 0;
  }

  .quote-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-info { padding: 28px 20px; }
  .quote-info .min-callout span { font-size: 19px; }

  .quote-form { padding: 28px 20px; }

  /* --- 8. Content blocks --- */
  .content-block { padding: 60px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }

  /* --- 12. Contact cards --- */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* --- 13. Blog grid --- */
  .blog-grid { grid-template-columns: 1fr; }

  /* --- 14. Blog post --- */
  .post-content { padding: 0 20px 60px; }

  /* --- 15. Timeline --- */
  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    width: 100%;
    padding: 0 0 40px 40px;
    text-align: left !important;
    margin-left: 0 !important;
  }

  .timeline-item::before {
    left: 4px !important;
    right: auto !important;
  }

  .timeline-year { font-size: 28px; }

  /* --- 16. Values --- */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card { padding: 32px 24px; }

  /* --- 17. Contact form intro + map --- */
  .contact-form-intro { margin-top: 16px; }

  .map-wrap iframe { height: 320px; }

  /* --- 18. Process steps --- */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step { padding: 32px 24px; }

  .process-number { font-size: 48px; }

  /* --- 19. Gallery: masonry → 3 columns on tablet --- */
  .gallery-masonry {
    columns: 3;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
  }

  /* Services page teaser keeps horizontal scroll */
  .gallery-grid {
    grid-template-columns: repeat(10, 280px);
    grid-auto-rows: 280px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid .gallery-item {
    scroll-snap-align: start;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 6px;
  }

  .gallery-grid::-webkit-scrollbar-track {
    background: var(--cream-warm);
    border-radius: 3px;
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: var(--olive-soft);
    border-radius: 3px;
  }
}

@media (max-width: 600px) {
  .quote-form { padding: 24px 16px; }
  .b2b-banner-inner { flex-direction: column; align-items: flex-start; }
  .gallery-masonry { columns: 2; }
}