:root {
  --honey: #f2c300;
  --honey-dark: #806600;
  --charcoal: #151515;
  --cream: #ffffff;
  --white: #ffffff;
  --muted: #666666;
  --service-background: #ffffff;
  --border: rgba(21, 21, 21, 0.16);

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "DM Sans", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 82px;
  padding: 0 5%;

  background: rgba(247, 244, 236, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -1px;
}

.logo-mark {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  background: var(--honey);
  border-radius: 50%;

  font-size: 22px;
  font-weight: 800;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 30px;

  font-size: 14px;
  font-weight: 700;
}

.navigation a:not(.phone-link):hover {
  color: var(--honey-dark);
}

.phone-link {
  padding: 12px 18px;

  background: var(--charcoal);
  color: var(--white);
  border-radius: 100px;
}

.menu-button {
  display: none;
  padding: 8px;

  background: transparent;
  border: 0;

  color: var(--charcoal);
  font-weight: 700;
  cursor: pointer;
}

/* Shared headings */

.eyebrow,
.panel-label {
  margin: 0;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;

  margin-bottom: 50px;
}

.section-heading h2 {
  margin: 14px 0 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;

  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 7vw;

  min-height: calc(100vh - 82px);
  padding: 70px 5%;
}

.hero h1 {
  max-width: 850px;
  margin: 18px 0 26px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--honey-dark);
}

.hero-description {
  max-width: 650px;
  margin: 0;

  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;

  padding: 17px 22px;

  background: var(--charcoal);
  color: var(--white);
  border-radius: 100px;

  font-weight: 700;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.primary-button:hover {
  background: var(--honey-dark);
  transform: translateY(-2px);
}

.secondary-link {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--honey);

  font-weight: 800;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;

  margin: 42px 0 0;
  padding: 0;

  color: var(--muted);
  list-style: none;
}

.trust-points li::before {
  content: "✓";
  margin-right: 8px;

  color: var(--honey-dark);
  font-weight: 900;
}

/* Hero services panel */

.hero-panel {
  padding: 32px;

  background: var(--honey);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(41, 43, 40, 0.15);
}

.panel-label {
  margin-bottom: 25px;
}

.service-preview {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;

  padding: 20px 0;
  border-bottom: 1px solid rgba(41, 43, 40, 0.2);
}

.service-preview:last-child {
  border-bottom: 0;
}

.service-preview span {
  color: rgba(41, 43, 40, 0.65);
  font-size: 12px;
  font-weight: 800;
}

.service-preview strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.04em;
}

/* Services */

.services-section {
  padding: 110px 5%;
}

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

.service-card {
  grid-column: span 2;

  display: flex;
  flex-direction: column;

  min-height: 320px;
  padding: 28px;

  background: #ebe7dc;
  border: 1px solid var(--border);
  border-radius: 18px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(41, 43, 40, 0.1);
}

.service-featured {
  grid-column: span 3;
  background: var(--honey);
}

.service-card:nth-child(2) {
  grid-column: span 3;
}

.service-dark {
  grid-column: span 2;
  background: var(--charcoal);
  color: var(--white);
}

.service-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  margin: 44px 0 14px;

  font-family: "Manrope", sans-serif;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;

  color: var(--muted);
  line-height: 1.6;
}

.service-dark p,
.service-dark .service-number {
  color: #d2d0c7;
}

.service-card a {
  margin-top: auto;
  padding-top: 25px;

  font-weight: 800;
}

.service-card a:hover {
  color: var(--honey-dark);
}

.service-dark a:hover {
  color: var(--honey);
}

/* About */

.about-section {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 8vw;

  padding: 110px 5%;

  background: var(--charcoal);
  color: var(--white);
}

.about-heading h2 {
  max-width: 900px;
  margin: 16px 0 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-heading h2 span {
  display: block;
  color: var(--honey);
}

.about-content {
  align-self: end;

  color: #d2d0c7;
  font-size: 17px;
  line-height: 1.65;
}

.about-content p {
  margin: 0 0 20px;
}

.about-link {
  display: inline-block;

  margin-top: 12px;
  padding-bottom: 3px;

  border-bottom: 2px solid var(--honey);
  color: var(--white);

  font-weight: 800;
}

.about-link:hover {
  color: var(--honey);
}

/* Process */

.process-section {
  padding: 110px 5%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.process-grid li {
  min-height: 280px;
  padding: 28px;

  border-top: 1px solid var(--charcoal);
}

.process-grid span {
  color: var(--honey-dark);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 75px 0 14px;

  font-family: "Manrope", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.process-grid p {
  margin: 0;

  color: var(--muted);
  line-height: 1.6;
}

/* Quote placeholder */

#quote {
  scroll-margin-top: 82px;
}

/* Keyboard accessibility */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

/* Tablet and mobile */

@media (max-width: 800px) {
  .navigation {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;

    padding: 25px;

    background: var(--cream);
    border-bottom: 1px solid var(--border);
  }

  .navigation.open {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 55px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .services-section {
    padding: 80px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-featured,
  .service-dark {
    grid-column: 1;
    min-height: 270px;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 5%;
  }

  .about-content {
    max-width: 650px;
  }

  .process-section {
    padding: 80px 5%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: auto;
  }

  .process-grid h3 {
    margin-top: 35px;
  }
}

/* Smaller phones */

@media (max-width: 480px) {
  .site-header {
    min-height: 72px;
  }

  .navigation {
    top: 72px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 45px 5% 70px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-actions {
    gap: 22px;
  }

  .trust-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-panel {
    padding: 24px;
  }

  .service-preview strong {
    font-size: 24px;
  }

  .services-section,
  .about-section,
  .process-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .service-card {
    padding: 24px;
  }

  .about-heading h2 {
    font-size: 44px;
  }

  .process-grid li {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-button,
  .service-card {
    transition: none;
  }
}
/* FAQs */

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;

  padding: 110px 5%;
  background: #ebe7dc;
}

.faq-heading h2 {
  margin: 15px 0 22px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.faq-heading > p:last-child {
  max-width: 390px;
  margin: 0;

  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 24px 0;

  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;

  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--honey-dark);
  font-size: 25px;

  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 45px 25px 0;

  color: var(--muted);
  line-height: 1.65;
}

/* Quote */

.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;

  padding: 110px 5%;

  background: var(--honey);
}

.quote-introduction h2 {
  max-width: 680px;
  margin: 16px 0 25px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.quote-introduction > p:not(.eyebrow) {
  max-width: 480px;

  font-size: 18px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;

  margin-top: 32px;

  font-size: 18px;
  font-weight: 800;
}

.contact-details a {
  border-bottom: 1px solid rgba(41, 43, 40, 0.4);
}

.contact-details a:hover {
  border-color: var(--charcoal);
}

.quote-form {
  padding: 35px;

  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(41, 43, 40, 0.13);
}

.quote-form label {
  display: block;
  margin-bottom: 20px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 0;

  background: transparent;
  border: 0;
  border-bottom: 1px solid #9e9b91;
  border-radius: 0;
  outline: 0;

  color: var(--charcoal);
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.quote-form textarea {
  min-height: 115px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--charcoal);
}

.form-button {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  margin-top: 10px;
  padding: 17px 22px;

  background: var(--charcoal);
  border: 0;
  border-radius: 100px;

  color: var(--white);
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.form-button:hover {
  background: var(--honey-dark);
  transform: translateY(-2px);
}

.form-status {
  min-height: 24px;
  margin: 15px 0 0;

  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 25px;

  padding: 55px 5%;

  background: var(--charcoal);
  color: var(--white);
}

.site-footer > p {
  margin: 0;
  color: #aaa9a2;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--honey);
}

.site-footer small {
  grid-column: 1 / -1;

  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  color: #8c8d87;
}

/* New responsive rules */

@media (max-width: 800px) {
  .faq-section,
  .quote-section {
    grid-template-columns: 1fr;
    padding: 80px 5%;
  }

  .faq-heading > p:last-child {
    margin-bottom: 35px;
  }

  .quote-form {
    padding: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-footer small {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .faq-section,
  .quote-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .faq-heading h2,
  .quote-introduction h2 {
    font-size: 44px;
  }

  .quote-form {
    padding: 24px;
  }

  .contact-details {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list summary span,
  .form-button {
    transition: none;
  }
}
/* Gallery */

.gallery-section {
  padding: 110px 5%;
  background: #e7e2d7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;

  padding: 0;

  background: #d4cec0;
  border: 1px solid var(--border);
  border-radius: 18px;

  color: var(--charcoal);
  text-align: left;

  cursor: default;
}

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

.gallery-placeholder {
  display: grid;
  place-items: center;

  width: 100%;
  height: 100%;
  padding: 30px;

  color: rgba(41, 43, 40, 0.55);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
  background: #ded8ca;
}



/* Legal pages */

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 5% 130px;
}

.legal-page h1 {
  margin: 16px 0 24px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.legal-introduction {
  max-width: 680px;
  margin: 0 0 65px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.legal-content {
  border-top: 1px solid var(--border);
}

.legal-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.legal-content p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 480px) {
  .legal-page {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  .legal-introduction {
    margin-bottom: 45px;
    font-size: 17px;
  }
}

.gallery-item strong {
  position: absolute;
  bottom: 18px;
  left: 18px;

  padding: 9px 13px;

  background: var(--charcoal);
  color: var(--white);
  border-radius: 100px;

  font-size: 12px;
}

.gallery-note {
  margin: 18px 0 0;

  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 800px) {
  .gallery-section {
    padding: 80px 5%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

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

@media (max-width: 480px) {
  .gallery-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }
}
/* Coverage */

.coverage-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;

  padding: 110px 5%;

  background: var(--white);
}

.coverage-introduction h2 {
  max-width: 720px;
  margin: 16px 0 25px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.coverage-introduction h2 span {
  display: block;
  color: var(--honey-dark);
}

.coverage-introduction > p:last-child {
  max-width: 540px;
  margin: 0;

  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.coverage-list {
  border-top: 1px solid var(--border);
}

.coverage-list > div {
  display: grid;
  grid-template-columns: 100px 1fr 1.3fr;
  align-items: start;
  gap: 20px;

  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.coverage-list span {
  color: var(--honey-dark);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.coverage-list p {
  margin: 0;

  color: var(--muted);
  line-height: 1.55;
}

/* Mobile contact bar */

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

@media (max-width: 800px) {
  .coverage-section {
    grid-template-columns: 1fr;
    padding: 80px 5%;
  }

  .coverage-list > div {
    grid-template-columns: 85px 1fr;
  }

  .coverage-list p {
    grid-column: 2;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;

    padding: 8px;

    background: rgba(247, 244, 236, 0.94);
    border: 1px solid var(--border);
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(41, 43, 40, 0.2);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    padding: 13px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-contact-bar a:first-child {
    background: var(--cream);
  }

  .mobile-contact-bar a:last-child {
    background: var(--charcoal);
    color: var(--white);
  }

  .site-footer {
    padding-bottom: 115px;
  }
}

@media (max-width: 480px) {
  .coverage-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .coverage-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .coverage-list p {
    grid-column: 1;
  }
}
/* Final desktop service-grid layout */

@media (min-width: 801px) {
  .services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 3;
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 2;
  }
}
/* Final desktop gallery layout */

@media (min-width: 801px) {
  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 290px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 4;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 2;
  }
}
/* Final mobile gallery layout */

@media (max-width: 800px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .gallery-item,
  .gallery-wide,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
}
/* Definitive service-card widths */

@media (min-width: 801px) {
  .services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .services-grid .service-half {
    grid-column: span 3 !important;
  }

  .services-grid .service-third {
    grid-column: span 2 !important;
  }
}

@media (max-width: 800px) {
  .services-grid .service-card {
    grid-column: 1 / -1 !important;
    width: 100%;
  }
}
.footer-links {
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-color: var(--honey);
  color: var(--honey);
}
/* Additional services */

.additional-services-section {
  padding: 110px 5%;
  background: var(--white);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.additional-service {
  display: flex;
  flex-direction: column;

  min-height: 540px;
  padding: 36px;

  background: var(--honey);
  border-radius: 20px;
}

.additional-service-dark {
  background: var(--charcoal);
  color: var(--white);
}

.additional-service-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.additional-service-heading span {
  color: var(--honey-dark);

  font-size: 12px;
  font-weight: 800;
}

.additional-service-dark .additional-service-heading span {
  color: var(--honey);
}

.additional-service h3 {
  max-width: 480px;
  margin: 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: right;
}

.additional-service > p {
  max-width: 650px;
  margin: 60px 0 28px;

  color: rgba(41, 43, 40, 0.75);
  font-size: 17px;
  line-height: 1.65;
}

.additional-service-dark > p {
  color: #d2d0c7;
}

.additional-service ul {
  display: grid;
  gap: 11px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.additional-service li {
  padding-top: 11px;
  border-top: 1px solid rgba(41, 43, 40, 0.18);

  font-weight: 600;
}

.additional-service-dark li {
  border-color: rgba(255, 255, 255, 0.16);
}

.additional-service li::before {
  content: "✓";
  margin-right: 10px;

  font-weight: 900;
}

.additional-service a {
  display: inline-block;
  align-self: flex-start;

  margin-top: auto;
  padding-top: 35px;

  font-weight: 800;
}

.additional-service a:hover {
  color: var(--honey-dark);
}

.additional-service-dark a:hover {
  color: var(--honey);
}

.additional-service small {
  margin-top: 14px;

  color: rgba(41, 43, 40, 0.65);
  font-size: 12px;
}

.additional-service-dark small {
  color: #a9aaa4;
}

@media (max-width: 800px) {
  .additional-services-section {
    padding: 80px 5%;
  }

  .additional-services-grid {
    grid-template-columns: 1fr;
  }

  .additional-service {
    min-height: 520px;
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .additional-services-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .additional-service-heading {
    display: block;
  }

  .additional-service h3 {
    margin-top: 18px;
    text-align: left;
  }

  .additional-service > p {
    margin-top: 40px;
  }
}
/* Four equal core service cards */

@media (min-width: 801px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid .service-card,
  .services-grid .service-half,
  .services-grid .service-third,
  .services-grid .service-featured,
  .services-grid .service-dark {
    grid-column: auto !important;
  }
}

@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* Final core and additional-services layout */

@media (min-width: 801px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .services-grid .service-card {
    grid-column: auto !important;
    width: 100%;
  }
}

.additional-services-section {
  padding: 0 5% 110px;
  background: var(--cream);
}

.additional-services-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;

  margin-bottom: 25px;
}

.additional-services-title h2 {
  margin: 10px 0 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.additional-services-title > p {
  max-width: 430px;
  margin: 0;

  color: var(--muted);
  line-height: 1.6;
}

.additional-services-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;

  width: 100%;
  overflow: hidden;

  background: var(--charcoal);
  color: var(--white);
  border-radius: 20px;
}

.additional-extra {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;

  padding: 34px;
}

.additional-extra + .additional-extra {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.additional-extra > span {
  color: var(--honey);

  font-size: 12px;
  font-weight: 800;
}

.additional-extra h3 {
  margin: 0 0 10px;

  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.additional-extra p {
  max-width: 560px;
  margin: 0;

  color: #cbc9c1;
  line-height: 1.6;
}

.additional-extra a {
  grid-column: 2;

  margin-top: 20px;

  color: var(--honey);
  font-weight: 800;
}

.additional-note {
  margin: 14px 0 0;

  color: var(--muted);
  font-size: 13px;
}

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

  .services-grid .service-card {
    grid-column: 1 !important;
  }

  .additional-services-section {
    padding: 0 5% 80px;
  }

  .additional-services-title {
    display: block;
  }

  .additional-services-title > p {
    margin-top: 18px;
  }

  .additional-services-bar {
    grid-template-columns: 1fr;
  }

  .additional-extra + .additional-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}
/* Definitive moving-extras layout */

.services-section {
  padding-bottom: 14px !important;
}

.moving-extras {
  margin: 0 !important;
  padding: 0 5% 110px !important;

  background: var(--cream);
}

.moving-extras-box {
  display: block !important;
  width: 100%;

  overflow: hidden;

  background: var(--charcoal);
  color: var(--white);
  border-radius: 20px;
}

.moving-extras-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;

  width: 100%;
  padding: 28px 32px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.moving-extras-header h2 {
  margin: 8px 0 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.moving-extras-header > p {
  max-width: 420px;
  margin: 0;

  color: #cbc9c1;
  line-height: 1.55;
}

.moving-extras-items {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: 100%;
}

.moving-extra {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 18px;

  min-height: 220px;
  padding: 30px 32px;
}

.moving-extra + .moving-extra {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.moving-extra-number {
  color: var(--honey);

  font-size: 12px;
  font-weight: 800;
}

.moving-extra-content {
  display: flex;
  flex-direction: column;
}

.moving-extra h3 {
  margin: 0 0 10px;

  font-family: "Manrope", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.moving-extra p {
  max-width: 560px;
  margin: 0;

  color: #cbc9c1;
  line-height: 1.55;
}

.moving-extra a {
  align-self: flex-start;

  margin-top: auto;
  padding-top: 22px;

  color: var(--honey);
  font-weight: 800;
}

@media (max-width: 800px) {
  .services-section {
    padding-bottom: 12px !important;
  }

  .moving-extras {
    padding: 0 5% 80px !important;
  }

  .moving-extras-header {
    display: block;
  }

  .moving-extras-header > p {
    margin-top: 16px;
  }

  .moving-extras-items {
    grid-template-columns: 1fr !important;
  }

  .moving-extra {
    min-height: 210px;
  }

  .moving-extra + .moving-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}

/* Unified service colours */

/* Buzz Fix */

.services-grid .service-dark {
  background: #ebe7dc;
  color: var(--charcoal);
}

.services-grid .service-dark p,
.services-grid .service-dark .service-number {
  color: var(--muted);
}

.services-grid .service-dark a {
  color: var(--charcoal);
}

.services-grid .service-dark a:hover {
  color: var(--honey-dark);
}

/* Additional services */

.moving-extras-box {
  background: #ebe7dc;
  color: var(--charcoal);
  border: 1px solid var(--border);
}

.moving-extras-header {
  border-bottom-color: var(--border);
}

.moving-extras-header > p,
.moving-extra p {
  color: var(--muted);
}

.moving-extra + .moving-extra {
  border-left-color: var(--border);
}

.moving-extra-number {
  color: var(--honey-dark);
}

.moving-extra a {
  color: var(--honey-dark);
}

.moving-extra a:hover {
  color: var(--charcoal);
}

@media (max-width: 800px) {
  .moving-extra + .moving-extra {
    border-top-color: var(--border);
  }
}
/* Final Buzz Vans yellow-and-black theme */

body {
  background: var(--cream);
  color: var(--charcoal);
}

.site-header {
  background: rgba(255, 253, 245, 0.94);
}

.logo-mark {
  background: var(--honey);
  color: var(--charcoal);
}

.phone-link,
.primary-button,
.form-button {
  background: var(--charcoal);
  color: var(--white);
}

.hero-panel,
.services-grid .service-featured {
  background: var(--honey);
  color: var(--charcoal);
}

.services-grid .service-card:not(.service-featured),
.services-grid .service-dark,
.moving-extras-box {
  background: var(--service-background);
  color: var(--charcoal);
}

.services-grid .service-card:not(.service-featured) p,
.services-grid .service-dark p,
.moving-extra p,
.moving-extras-header > p {
  color: var(--muted);
}

.about-section,
.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.about-heading h2 span,
.moving-extra-number,
.moving-extra a,
.footer-links a:hover {
  color: var(--honey);
}

.quote-section {
  background: var(--honey);
}

.quote-form {
  background: var(--cream);
}

.gallery-item:nth-child(3) {
  background: var(--honey);
}

.mobile-contact-bar a:last-child {
  background: var(--charcoal);
  color: var(--white);
}
/* Consistent yellow, black and white palette */

body,
.site-header,
.hero,
.services-section,
.moving-extras,
.process-section,
.coverage-section,
.gallery-section,
.faq-section {
  background: var(--white);
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
}

.services-grid .service-card:not(.service-featured),
.services-grid .service-dark,
.moving-extras-box {
  background: var(--white);
  color: var(--charcoal);

  border: 1px solid var(--border);
  box-shadow: none;
}

.services-grid .service-featured {
  background: var(--honey);
  color: var(--charcoal);
}

.about-section,
.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.quote-section {
  background: var(--honey);
}

.quote-form {
  background: var(--white);
}

.gallery-item {
  background: var(--white);
  border: 1px solid var(--border);
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
  background: var(--white);
}

.gallery-item:nth-child(3) {
  background: var(--honey);
}

.faq-list,
.coverage-list {
  border-color: var(--border);
}

.mobile-contact-bar {
  background: rgba(255, 255, 255, 0.95);
}
/* Stronger Buzz yellow-and-black section rhythm */

/* Core services */

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(4) {
  background: var(--honey);
  color: var(--charcoal);
  border-color: var(--honey);
}

.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.services-grid .service-card:nth-child(2) p,
.services-grid .service-card:nth-child(3) p,
.services-grid .service-card:nth-child(2) .service-number,
.services-grid .service-card:nth-child(3) .service-number {
  color: #d4d4d0;
}

.services-grid .service-card:nth-child(2) a,
.services-grid .service-card:nth-child(3) a {
  color: var(--honey);
}

/* Additional services */

.moving-extras-box {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.moving-extras-header {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.moving-extras-header > p,
.moving-extra p {
  color: #d4d4d0;
}

.moving-extra + .moving-extra {
  border-left-color: rgba(255, 255, 255, 0.16);
}

.moving-extra-number,
.moving-extra a {
  color: var(--honey);
}

/* Three-step process */

.process-section {
  background: var(--honey);
}

.process-grid li {
  border-top-color: var(--charcoal);
}

.process-grid span {
  color: var(--charcoal);
}

.process-grid p {
  color: rgba(21, 21, 21, 0.72);
}

/* Gallery */

.gallery-section {
  background: var(--charcoal);
  color: var(--white);
}

.gallery-section .section-heading > p,
.gallery-note {
  color: #bdbdb7;
}

.gallery-section .eyebrow {
  color: var(--honey);
}

.gallery-item {
  border-color: rgba(255, 255, 255, 0.18);
}

/* Coverage and FAQs remain white */

.coverage-section,
.faq-section {
  background: var(--white);
  color: var(--charcoal);
}

/* Quote remains yellow */

.quote-section {
  background: var(--honey);
  color: var(--charcoal);
}

/* Footer remains black */

.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

@media (max-width: 800px) {
  .moving-extra + .moving-extra {
    border-top-color: rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}
/* Restore secondary service cards */

.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3),
.services-grid .service-card:nth-child(4) {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--border);
}

.services-grid .service-card:nth-child(2) p,
.services-grid .service-card:nth-child(3) p,
.services-grid .service-card:nth-child(4) p,
.services-grid .service-card:nth-child(2) .service-number,
.services-grid .service-card:nth-child(3) .service-number,
.services-grid .service-card:nth-child(4) .service-number {
  color: var(--muted);
}

.services-grid .service-card:nth-child(2) a,
.services-grid .service-card:nth-child(3) a,
.services-grid .service-card:nth-child(4) a {
  color: var(--charcoal);
}

.services-grid .service-card:nth-child(2) a:hover,
.services-grid .service-card:nth-child(3) a:hover,
.services-grid .service-card:nth-child(4) a:hover {
  color: var(--honey-dark);
}

/* Restore additional services */

.moving-extras-box {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--border);
}

.moving-extras-header {
  border-bottom-color: var(--border);
}

.moving-extras-header > p,
.moving-extra p {
  color: var(--muted);
}

.moving-extra + .moving-extra {
  border-left-color: var(--border);
}

.moving-extra-number,
.moving-extra a {
  color: var(--honey-dark);
}

.moving-extra a:hover {
  color: var(--charcoal);
}

@media (max-width: 800px) {
  .moving-extra + .moving-extra {
    border-top-color: var(--border);
    border-left: 0;
  }
}
/* Stable two-column gallery */

@media (min-width: 801px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 360px;
    gap: 14px;
  }

  .gallery-grid .gallery-item,
  .gallery-grid .gallery-wide,
  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(2),
  .gallery-grid .gallery-item:nth-child(3),
  .gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 1 !important;
    width: 100%;
    min-width: 0;
  }
}

.gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-grid .gallery-item {
    grid-column: 1 !important;
  }
}
/* CLEAN SIMPLE FOOTER */

.site-footer {
  background: #171717;
  color: #fff;
  padding: 48px 5% 24px;
  text-align: center;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  margin: 0;
  max-width: 420px;
  color: #bdbdbd;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.2s ease;
}

.footer-socials a:hover {
  background: #f7c900;
  border-color: #f7c900;
  color: #111;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f7c900;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #888;
}

@media (max-width: 700px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
/* FORCE FOOTER CONTENT TO CENTRE */

.site-footer {
  display: block;
  width: 100%;
  text-align: center;
}

.footer-main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-brand {
  width: 100%;
  align-items: center;
  text-align: center;
}

.footer-brand .logo {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.footer-brand p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-socials {
  width: 100%;
  justify-content: center;
}

.footer-links {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.footer-bottom {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-yellow {
  color: #ffc800 !important;
}
.bee-logo {
  width: 58px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-bee {
  width: 58px;
  height: 48px;
  object-fit: contain;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-socials {
  margin-bottom: 18px;
}
.service-card {
  background: #ffc800;
  color: #111;
}
.service-card .service-number,
.service-card h3,
.service-card p,
.service-card a {
  color: #111;
}
.services-grid .service-card,
.services-grid .service-card.service-featured,
.services-grid .service-card.service-dark {
  background: #ffc800 !important;
  color: #111 !important;
  border-color: transparent !important;
}

.services-grid .service-card .service-number,
.services-grid .service-card h3,
.services-grid .service-card p,
.services-grid .service-card a {
  color: #111 !important;
}
/* ADDITIONAL SERVICES — BUZZVANS ACCENTS */

.moving-extras-box {
  background: #fff;
}

.moving-extra {
  background: #fff;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.moving-extra:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.moving-extra-number {
  color: #ffc800 !important;
  font-weight: 800;
}

.moving-extra h3 {
  color: #111;
}

.moving-extra p {
  color: #555;
}

.moving-extra a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.moving-extra a:hover {
  color: #ffc800;
}

/* Yellow accent on section heading */
.moving-extras-header h2 {
  color: #111;
}

.moving-extras-header .eyebrow {
  color: #ffc800;
}
/* MOBILE NAVIGATION */

@media (max-width: 800px) {

  .site-header {
    position: relative;
  }

  .menu-button {
    display: block;
    margin-left: auto;
    background: #111;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    z-index: 1001;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: stretch;

    background: #fff;
    padding: 18px 24px 24px;

    border-top: 1px solid #eee;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);

    z-index: 1000;
  }

  .navigation.navigation-open {
    display: flex;
  }

  .navigation a {
    display: block;
    padding: 14px 0;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

  .navigation a:last-child {
    border-bottom: 0;
  }

  .navigation .phone-link {
    margin-top: 10px;
    text-align: center;
    background: #ffc800;
    border-radius: 999px;
    padding: 12px 18px;
    color: #111;
  }
}

@media (min-width: 801px) {
  .menu-button {
    display: none;
  }
}
/* MOBILE MENU - NO JAVASCRIPT REQUIRED */

.mobile-navigation {
  display: none;
}

/* Desktop */
@media (min-width: 801px) {
  .desktop-navigation {
    display: flex !important;
  }

  .mobile-navigation {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 800px) {

  .site-header {
    position: relative;
  }

  .desktop-navigation {
    display: none !important;
  }

  .mobile-navigation {
    display: block !important;
    margin-left: auto;
    position: relative;
    z-index: 9999;
  }

  .mobile-navigation summary {
    list-style: none;
    cursor: pointer;

    background: #111;
    color: #fff;

    padding: 10px 18px;
    border-radius: 999px;

    font-weight: 700;
  }

  .mobile-navigation summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    width: 260px;

    background: #fff;
    padding: 14px 20px;

    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  }

  .mobile-navigation nav a {
    display: block;
    padding: 13px 4px;

    color: #111;
    text-decoration: none;

    border-bottom: 1px solid #eee;
  }

  .mobile-navigation nav a:last-child {
    border-bottom: 0;
  }

  .mobile-navigation .mobile-phone-link {
    margin-top: 10px;
    padding: 12px 16px;

    background: #ffc800;
    border-radius: 999px;

    text-align: center;
    font-weight: 700;
  }
}
/* MOBILE — USE BRIGHT BUZZVANS YELLOW */

@media (max-width: 800px) {

  .faq-heading h2 {
    color: #ffc800 !important;
  }

  .coverage-list > div > span {
    color: #ffc800 !important;
  }

}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 1000px;
}

.footer-bottom::before,
.footer-bottom::after {
  content: none !important;
  display: none !important;
}
.footer-bottom small {
  border: none !important;
  box-shadow: none !important;
}
/* COVERAGE SECTION — BUZZVANS YELLOW ON ALL DEVICES */

.coverage-introduction h2 {
  color: #ffc800 !important;
}

.coverage-introduction h2 span {
  color: #ffc800 !important;
}

.coverage-list > div > span {
  color: #ffc800 !important;
}
/* =========================================
   GALLERY — BUZZ VANS / BUZZ FIX FIXES
   ========================================= */

/* Buzz Vans: remove browser button focus outline */
.gallery-grid button:nth-child(3),
.gallery-grid button:nth-child(3):hover,
.gallery-grid button:nth-child(3):focus,
.gallery-grid button:nth-child(3):focus-visible,
.gallery-grid button:nth-child(3):active {
  outline: none !important;
  box-shadow: none !important;
}


/* Buzz Fix: crop slightly into the photograph */
.gallery-grid button:nth-child(4) {
  overflow: hidden;
}

.gallery-grid button:nth-child(4) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Zoom just enough to crop away the white strip */
  transform: scale(1.12);

  /* Bias crop slightly toward the top if needed */
  object-position: center 55%;
}
.gallery-grid button:nth-child(3),
.gallery-grid button:nth-child(3):hover,
.gallery-grid button:nth-child(3):focus,
.gallery-grid button:nth-child(3):focus-visible,
.gallery-grid button:nth-child(3):active {
  outline: none !important;
  box-shadow: none !important;
}
/* FINAL BUZZ VANS GALLERY FIX */
.gallery-grid > .gallery-item:nth-child(3) {
  background: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}
/* View our gallery button */

.gallery-page-link {
  margin-top: 40px;
  text-align: center;
}

.gallery-page-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 30px;

  background: var(--honey);
  color: var(--charcoal);

  border: 2px solid var(--honey);
  border-radius: 100px;

  font-size: 18px;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.gallery-page-link a:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--charcoal);
}
/* =========================================
   FULL GALLERY PAGE
   ========================================= */
/* =========================================
   FULL GALLERY PAGE
   ========================================= */

.gallery-page-hero {
  padding: 110px 5% 70px;
  background: var(--white);
}

.gallery-page-hero h1 {
  max-width: 950px;
  margin: 16px 0 24px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.gallery-page-hero h1 span {
  display: block;
  color: var(--honey);
}

.gallery-page-hero > p:last-child {
  max-width: 700px;
  margin: 0;

  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}


/* =========================================
   GALLERY
   ========================================= */

.full-gallery {
  padding: 40px 5% 110px;
  background: var(--charcoal);
}


/* Masonry-style layout */

.full-gallery-grid {
  columns: 3;
  column-gap: 16px;
}


/* Individual image card */

.full-gallery-item {
  position: relative;

  display: inline-block;
  width: 100%;

  margin: 0 0 16px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;

  background: #222;

  break-inside: avoid;
  vertical-align: top;

  cursor: pointer;
}


/* Let every image keep its natural shape */

.full-gallery-item img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  transition: transform 0.35s ease;
}


/* Subtle hover */

.full-gallery-item:hover img {
  transform: scale(1.02);
}


/*
   These classes are no longer used to force
   image dimensions, but keeping them harmless
   means you don't have to change old HTML.
*/

.full-gallery-wide,
.full-gallery-tall {
  width: 100%;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .gallery-page-hero {
    padding-top: 80px;
  }

  .full-gallery-grid {
    columns: 2;
    column-gap: 14px;
  }

  .full-gallery-item {
    margin-bottom: 14px;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .gallery-page-hero {
    padding: 70px 5% 55px;
  }

  .gallery-page-hero h1 {
    font-size: 50px;
  }

  .gallery-page-hero > p:last-child {
    font-size: 17px;
  }

  .full-gallery {
    padding: 24px 5% 80px;
  }

  .full-gallery-grid {
    columns: 1;
  }

  .full-gallery-item {
    margin-bottom: 14px;
  }
}


/* =========================================
   GALLERY LIGHTBOX
   ========================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  display: block;

  max-width: 92vw;
  max-height: 88vh;

  width: auto;
  height: auto;

  border-radius: 16px;

  object-fit: contain;
}


/* Lightbox close button */

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: var(--honey);
  color: var(--charcoal);

  font-size: 28px;
  line-height: 1;

  cursor: pointer;
}


/* Remove default focus colour while keeping
   a visible accessible focus indicator */

.gallery-lightbox-close:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  .gallery-page-hero h1 {
    font-size: 44px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox img {
    max-width: 95vw;
    max-height: 85vh;
  }

  .gallery-lightbox-close {
    top: 14px;
    right: 14px;
  }
}
/* Centre footer logo only */

.footer-brand .logo {
  display: flex !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;

  padding: 85px 5%;

  background: var(--charcoal);
  color: var(--white);
}

.testimonials-heading h2 {
  max-width: 520px;
  margin: 14px 0 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.testimonials-heading h2 span {
  display: block;
  color: var(--honey);
}

.testimonials-section .eyebrow {
  color: var(--honey);
}


/* Slider */

.testimonials-slider {
  align-self: center;
  width: 100%;
}

.testimonial-track {
  position: relative;
}

.testimonial {
  display: none;
  margin: 0;

  animation: testimonialFade 0.3s ease;
}

.testimonial.active {
  display: block;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Stars */

.testimonial-stars {
  margin-bottom: 20px;

  color: var(--honey);

  font-size: 20px;
  letter-spacing: 4px;
}


/* Review */

.testimonial blockquote {
  max-width: 760px;
  margin: 0 0 26px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.testimonial-name {
  margin: 0;

  color: var(--white);

  font-weight: 800;
}

.testimonial-service {
  margin: 4px 0 0;

  color: #aaa9a2;

  font-size: 14px;
}


/* Controls */

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 34px;
}

.testimonial-arrow {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: transparent;
  color: var(--white);

  font-size: 20px;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.testimonial-arrow:hover {
  background: var(--honey);
  color: var(--charcoal);
  border-color: var(--honey);
}


/* Dots */

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.3);

  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--honey);
}


/* Tablet / mobile */

@media (max-width: 800px) {

  .testimonials-section {
    grid-template-columns: 1fr;
    gap: 45px;

    padding: 70px 5%;
  }

  .testimonials-heading h2 {
    max-width: 600px;
  }

  .testimonial blockquote {
    font-size: 28px;
  }
}


@media (max-width: 480px) {

  .testimonials-section {
    gap: 38px;

    padding-top: 60px;
    padding-bottom: 60px;
  }

  .testimonials-heading h2 {
    font-size: 44px;
  }

  .testimonial blockquote {
    font-size: 24px;
  }

  .testimonial-controls {
    margin-top: 28px;
  }

}

/* =========================================
   CLEAN ADDITIONAL SERVICES
   ========================================= */

.moving-extras-box {
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  box-shadow: none !important;
}


/* Header */

.moving-extras-header {
  display: grid !important;
  grid-template-columns: 1fr 0.8fr !important;
  align-items: end !important;
  gap: 40px !important;

  padding: 28px 34px !important;

  border-bottom: 1px solid var(--border) !important;
}

.moving-extras-header h2 {
  margin: 8px 0 0 !important;
}

.moving-extras-header > p {
  max-width: 430px !important;
  margin: 0 !important;
  color: var(--muted) !important;
}


/* Two services */

.moving-extras-items {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.moving-extra {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  gap: 18px !important;

  min-height: 235px !important;
  padding: 32px 34px !important;

  background: transparent !important;
  border-radius: 0 !important;

  transform: none !important;
  box-shadow: none !important;
}

.moving-extra:hover {
  transform: none !important;
  box-shadow: none !important;
}


/* Divider between the two items */

.moving-extra + .moving-extra {
  border-left: 1px solid var(--border) !important;
}


/* Content */

.moving-extra-number {
  color: #ffc800 !important;
  font-weight: 800 !important;
}

.moving-extra-content {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
}

.moving-extra h3 {
  margin: 0 0 12px !important;

  font-family: "Manrope", sans-serif;
  font-size: 26px;
}

.moving-extra p {
  margin: 0 !important;
  max-width: 520px;

  color: var(--muted) !important;
  line-height: 1.6;
}

.moving-extra a {
  align-self: flex-start !important;

  margin-top: auto !important;
  padding-top: 24px !important;

  color: var(--charcoal) !important;
  font-weight: 800;
}

.moving-extra a:hover {
  color: #ffc800 !important;
}


/* Mobile */

@media (max-width: 800px) {

  .moving-extras-header {
    grid-template-columns: 1fr !important;
    gap: 18px !important;

    padding: 26px !important;
  }

  .moving-extras-items {
    grid-template-columns: 1fr !important;
  }

  .moving-extra {
    min-height: auto !important;
    padding: 28px 26px !important;
  }

  .moving-extra + .moving-extra {
    border-left: 0 !important;
    border-top: 1px solid var(--border) !important;
  }

  .moving-extra a {
    margin-top: 24px !important;
  }
}

#gallery h2 {
  color: var(--honey) !important;
}

/* Clickable hero services panel */

.hero-panel-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-panel-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(21, 21, 21, 0.18);
}

.hero-panel-link:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 5px;
}
