:root {
  --color-black: #000000;
  --color-white: #f8f6f2;
  --color-green: #10351e;
  --color-gold: #d69d40;
  --color-light: #efefed;
  --color-grey: #eaeaea;
  --color-dark-grey: #131313;
  --font-body: "Montserrat", sans-serif;
  --font-heading: "Spectral", serif;
  --container-max: 1440px;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark-grey);
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
/* Backgrounds */
.bg-black {
  background-color: var(--color-black);
}
.bg-white {
  background-color: var(--color-white);
}
.bg-green {
  background-color: var(--color-green);
}
.bg-gold,
.section--gold {
  background-color: var(--color-gold);
}
.bg-light,
.bg-linen {
  background-color: var(--color-light);
}

.bg-grey {
  background-color: var(--color-grey);
}

/* Text colors */
.text-black {
  color: var(--color-black);
}
.text-white {
  color: var(--color-white);
}
.text-green {
  color: var(--color-green);
}
.text-gold {
  color: var(--color-gold);
}
.text-light {
  color: var(--color-light);
}
.text-dark-grey {
  color: var(--color-dark-grey);
}

/* Font families */
.font-body {
  font-family: var(--font-body);
  font-weight: 400;
}

.font-heading {
  font-family: var(--font-heading);
}

/* Headings */
.h1,
h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
  padding-top: 1rem;
}

.h2,
h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.2;
  font-weight: 400;
}

.h3,
h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2.25rem);
  font-weight: 400;
}

.h4,
h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.55vw, 1.85rem);
  font-weight: 400;
}

.h5,
h5 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.75vw, 1.5rem);
  font-weight: 400;
}

.h6,
h6 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  font-weight: 400;
}

.blog-posts h2 {
  font-size: clamp(1.85rem, 3.75vw, 3rem);
  padding-top: 1rem;
}

.blog-posts h3 {
  font-size: clamp(1.15rem, 2.45vw, 2rem);
  padding-top: 1rem;
}
.blog-posts h4 {
  font-size: clamp(1rem, 2.25vw, 1.65rem);
  padding-top: 1rem;
}

/* Body text */
.text-base {
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.25rem;
}

.container {
  padding: 0 15px;
}

/* =========================
   HEADER RESPONSIVE
========================= */

.site-header--main {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Desktop top bar */
.site-header__topbar {
  display: none;
}

@media (min-width: 992px) {
  .site-header__topbar {
    display: block;
  }
}

/* Main nav */
.site-header__nav {
  background: #f3f3f1;
  min-height: 72px;
  position: relative;
}

.site-header__nav .container-fluid {
  min-height: 72px;
}

/* Logo */
.site-branding {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 120px;
  z-index: 10;
}

.site-branding__logo--full {
  width: 105px;
  position: absolute;
  top: 0;
  left: 0;
}

.site-branding__logo--icon {
  width: 48px;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* HEADER LAYOUT */
.site-header__nav .container-fluid {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
}

/* Keep logo on the left */
.site-branding {
  flex: 0 0 180px;
}

/* Desktop nav aligned left, right after logo */
.desktop-nav {
  margin-left: 0;
  margin-right: 0;
  flex: 0 1 auto;
}

/* Menu spacing */
.primary-menu {
  justify-content: flex-start;
  gap: 1.05rem;
}

/* Search icon after nav */
.header-actions {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}

.breadcrumbs {
  text-underline-offset: 4px;
}
.breadcrumbs:hover {
  text-decoration: underline;
}

/* Push mobile button to right only on mobile */
.mobile-toggle {
  margin-left: auto;
}

/* Search icon */

.header-actions {
  display: flex;
  align-items: center;
}

.header-search-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color 0.25s ease;
}

.header-search-toggle:hover {
  color: var(--color-gold);
}

/* Search dropdown */

.header-search {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2rem;
}

.header-search__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.header-search__input {
  flex: 1;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--color-green);
}

.header-search__input:focus {
  outline: none;
  border-color: var(--color-green);
}

.header-search__submit {
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--color-green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.header-search__submit:hover {
  background: var(--color-gold);
}

/* Desktop logo size */
@media (min-width: 992px) {
  .site-header__nav {
    min-height: 82px;
  }

  .site-header__nav .container-fluid {
    min-height: 82px;
  }

  .site-branding {
    min-width: 150px;
    flex: 0 0 220px;
  }

  .site-branding__logo--full {
    width: 145px;
  }

  .site-branding__logo--icon {
    width: 58px;
    left: 40px;
    top: 13px;
  }
}

/* Desktop nav */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }

  .primary-menu,
  .primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .primary-menu li {
    position: relative;
  }

  .primary-menu a {
    font-size: 1.05rem;
    color: var(--color-black);
    position: relative;
    display: inline-block;
    padding: 1rem 0;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.35s ease, transform 0.35s ease;
  }
  .primary-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .primary-menu a:hover,
  .primary-menu a:focus {
    color: var(--color-green);
    transform: translateY(-2px);
  }

  .primary-menu a:hover::after,
  .primary-menu a:focus::after {
    width: 100%;
  }

  /* Current page */
  .primary-menu .current-menu-item > a,
  .primary-menu .current-menu-ancestor > a {
    color: var(--color-green);
  }

  .primary-menu .current-menu-item > a::after,
  .primary-menu .current-menu-ancestor > a::after {
    width: 100%;
  }

  .primary-menu a:hover,
  .primary-menu a:focus {
    color: var(--color-green);
  }

  /* Desktop dropdowns */
  .primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    padding: 0.75rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
  }

  .primary-menu li:hover > .sub-menu,
  .primary-menu li:focus-within > .sub-menu {
    display: block;
  }

  .primary-menu .sub-menu li {
    width: 100%;
  }

  .primary-menu .sub-menu a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }
}

/* Mobile toggle */
.mobile-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  z-index: 20;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-green);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

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

.site-header__topbar {
  background: #1f1f1f;
  color: #fff;
  padding: 0.65rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-branding {
  top: -41px !important;
}

.site-header__topbar li {
  position: relative;
}

/* Add divider line */
.site-header__topbar li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem; /* controls spacing between items */
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px; /* adjust height */
  background: rgba(255, 255, 255, 0.6); /* white line */
}

.mobile-menu {
  width: min(90vw, 420px);
  background: var(--color-light);
}

.mobile-menu .offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .offcanvas-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-green);
}

.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

/* Mobile main nav */
.mobile-menu__list,
.mobile-menu__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__list li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu__list a {
  display: block;
  padding: 1rem 3rem 1rem 0;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 6vw, 1.7rem);
  color: var(--color-green);
}

.mobile-menu__list a:hover,
.mobile-menu__list a:focus {
  color: var(--color-gold);
}

/* Mobile submenu */
.mobile-menu__list .sub-menu {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.75rem;
}

.mobile-menu__list li.is-open > .sub-menu {
  display: block;
}

.mobile-menu__list .sub-menu a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  color: var(--color-dark-grey);
}

.mobile-menu__list .sub-menu .sub-menu {
  padding-left: 1rem;
}

/* Mobile submenu toggle */
.mobile-submenu-toggle {
  position: absolute;
  top: 0.85rem;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--color-green);
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-menu__list li.is-open > .mobile-submenu-toggle {
  transform: rotate(180deg);
}

/* Bottom top bar links inside mobile */
.mobile-menu__bottom {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu__topbar {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__topbar li + li {
  margin-top: 0.75rem;
}

.mobile-menu__topbar a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
}

.mobile-menu__topbar a:hover,
.mobile-menu__topbar a:focus {
  color: var(--color-gold);
}

/* Scrolled header */
.site-header--main.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.site-header--main.is-scrolled .site-header__nav,
.site-header--main.is-scrolled .site-header__nav .container-fluid {
  min-height: 60px;
}

.site-header--main.is-scrolled .site-branding__logo--full {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.site-header--main.is-scrolled .site-branding__logo--icon {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.site-header__nav .container-fluid {
  min-height: 82px;
}

.is-scrolled .site-header__nav .container-fluid {
  min-height: 60px;
}

/* Scrolled state */
.site-header--main.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.site-header--main.is-scrolled .site-header__nav {
  min-height: 60px;
  position: reltive;
}

.site-header--main.is-scrolled .site-branding__logo--full {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.site-header--main.is-scrolled .site-branding__logo--icon {
  opacity: 1;
  transform: scale(1);
}

/* Mobile */

.mobile-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-green);
}

.mobile-menu {
  background: var(--color-light);
}

.mobile-menu .offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .offcanvas-title {
  font-family: var(--font-heading);
  color: var(--color-green);
  font-size: 1.75rem;
}

.mobile-menu__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu__list a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-green);
}

.mobile-menu__list a:hover,
.mobile-menu__list a:focus {
  color: var(--color-gold);
}

/*Mobile*/
@media (max-width: 991.98px) {
  .site-header__topbar {
    display: none;
  }

  .site-header__nav {
    min-height: 72px;
  }

  .site-branding__logo--full {
    width: 105px;
    margin-top: -12px;
  }

  .site-branding__logo--icon {
    width: 48px;
    left: 20px;
  }
}

.home-hero-container {
  height: 80vh;
  min-height: 400px;
}

.home-hero__content {
  position: absolute;
  top: 48%;
  max-width: 75%;
}

.home-hero {
  background: var(--color-green);
  color: var(--color-white);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.65rem);
  padding: 0px 8px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.home-hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 2rem);
  padding: 0px 8px;
  color: var(--color-gold);
}
.home-hero__media {
  position: relative;
  overflow: hidden;
}

.pickup-video {
  width: 60%;
  aspect-ratio: 11 / 16;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.home-hero__video {
  width: 100%;
  object-fit: cover;
}

/* Make the absolute positioning relative to this container */
.home-hero-container {
  position: relative;
}

/* Wide desktop overlap layout */
@media (min-width: 1200px) {
  .home-hero__content {
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    max-width: 65%;
    transform: translateY(-50%);
  }

  .home-hero__media {
    margin-top: -16rem;
  }
}

/* Narrow desktop, tablet and mobile */
@media (max-width: 1199.98px) {
  .home-hero-container {
    height: auto;
    min-height: 0;
    padding-top: clamp(4rem, 10vw, 7rem);
    padding-bottom: clamp(5rem, 12vw, 9rem);
  }

  .home-hero__content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .home-hero__media {
    margin-top: 0;
  }
}
/* =================================
   Mobile
================================= */
@media (max-width: 767.98px) {
  .home-hero-container {
    height: auto;
    padding: 3rem 0;
  }

  .home-hero__content {
    position: relative;
    transform: none;
    max-width: 100%;
  }

  .home-hero__media {
    margin-top: -12rem; /* or 0 if you don't want overlap */
  }
}
/* =================================
   HERO RESPONSIVE HEIGHT FIX
================================= */

.home-hero-container {
  position: relative;
}

/*
 * Only use the overlapping layout when the
 * screen is both wide enough and tall enough.
 */
@media (min-width: 1200px) and (min-height: 700px) {
  .home-hero-container {
    height: 80vh;
    min-height: 650px;
  }

  .home-hero__content {
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    max-width: 70%;
    transform: translateY(-50%);
  }

  .home-hero__media {
    margin-top: -18rem;
  }
}

/*
 * Short desktops and tablets:
 * return everything to normal document flow.
 */
@media ((min-width: 768px) and (max-width: 1199.98px)),
  (min-width: 768px) and (max-height: 699px) {
  .home-hero-container {
    height: auto;
    min-height: 0;
    padding-top: clamp(3rem, 8vw, 6rem);
    padding-bottom: clamp(3rem, 8vw, 6rem);
  }

  .home-hero__content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 75%;
    transform: none;
  }

  .home-hero__media {
    margin-top: -8rem;
  }

  .home-hero__title {
    max-width: 100%;
    font-size: clamp(3rem, 7vw, 5.25rem);
    padding: 0px 4px;
  }
}

/* Default short-screen layout */
.hero-animate {
  width: 100%;
  left: auto;
  transform: none;
  text-align: left;
}

/* Center-to-left animation only on large, tall screens */
@media (min-width: 1200px) and (min-height: 700px) {
  .hero-animate {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .site-ready .hero-animate {
    animation: heroContentLeft 1.6s cubic-bezier(0.22, 1, 0.36, 1) 2.25s
      forwards;
  }
}

/* Do not horizontally animate on short screens */
@media (max-width: 1199.98px), (max-height: 699px) {
  .site-ready .hero-animate {
    animation: none;
  }
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.75vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.section-space-sm {
  padding: 1rem 0;
}

.section-space-s {
  padding: 1.25rem 0;
}

.section-space {
  padding: 2.5rem 0;
}

.section-space-l {
  padding: 3.5rem 0;
}

.section-space-xl {
  padding: 4.75rem 0;
}

/**Home services**/
.home-expertise {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0;
  min-height: 750px;
  position: relative;
  display: flex;
  align-items: center;
}

.home-expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.home-expertise .container-fluid {
  position: relative;
  z-index: 2;
}

/* FLEX ROW */
.home-expertise__cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

/* COLUMN RESET */
.home-expertise__cards > [class*="col-"] {
  flex: 1 1 0;
  transition: flex 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
}

/* EXPAND ACTIVE */
.home-expertise__cards > [class*="col-"]:hover {
  flex: 1.8 1 0;
}

/* CARD */
.expertise-card {
  width: 100%;
  min-height: 320px;

  background: rgba(245, 245, 242, 0.94);

  padding: 2rem 1.75rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.expertise-card:hover,
.expertise-card.is-active,
.expertise-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

/* TITLE */
.expertise-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-green);

  text-align: center;

  position: relative;

  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.expertise-card__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  background: var(--color-green);
  transform: translateX(-50%);
}

.expertise-card__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 70px;
  height: 2px;

  background: var(--color-green);

  transform: translateX(-50%) scaleX(1);
  transform-origin: center;

  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover .expertise-card__title::after,
.expertise-card.is-active .expertise-card__title::after,
.expertise-card:focus-within .expertise-card__title::after {
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}

/* HOVER CONTENT */
.expertise-card__hover {
  opacity: 0;
  max-height: 0;
  overflow: hidden;

  transform: translateY(10px);

  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.4s ease;
}

.expertise-card:hover .expertise-card__hover,
.expertise-card.is-active .expertise-card__hover,
.expertise-card:focus-within .expertise-card__hover {
  opacity: 1;
  max-height: 220px;
  transform: translateY(0);
}

.expertise-card__hover p {
  margin-bottom: 1.25rem;
}

.expertise-card__hover a {
  color: var(--color-black);
  text-underline-offset: 4px;
}

/* MOBILE */
@media (max-width: 991.98px) {
  .home-expertise__cards {
    flex-wrap: wrap;
  }

  .home-expertise__cards > [class*="col-"] {
    flex: 1 1 100%;
  }

  .home-expertise__cards > [class*="col-"]:hover {
    flex: 1 1 100%;
  }

  .expertise-card {
    min-height: 260px;
  }
}

.gform-theme--framework .gf_progressbar .percentbar_blue,
.gform-theme--framework input[type="radio"]::before {
  background-color: var(--color-green) !important;
}

.testimonial-slide__content {
  background: var(--color-green);
  color: var(--color-white);
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slide__content cite {
  font-style: normal !important;
  font-size: clamp(1.15rem, 1.75vw, 1.35rem);
}
.testimonial-slide__content blockquote {
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  line-height: 1.5;
  margin-bottom: 1rem;
  width: 90%;
  margin: 0 auto;
}
.testimonial-slide__image,
.restore-image,
.showroom-main-image,
.showroom-side-image {
  object-fit: cover;
}

.global-testimonials .swiper-horizontal > .swiper-pagination-bullets,
.global-testimonials .swiper-pagination-bullets.swiper-pagination-horizontal,
.global-testimonials .swiper-pagination-custom,
.global-testimonials .swiper-pagination-fraction {
  width: 98%;
  bottom: 4%;
}

.global-testimonials .swiper-pagination-bullet-active {
  background: white;
}
.site-footer {
  background: #efefed;
  padding: 4rem 0 2rem;
}
.site-footer__title {
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.site-footer__links li + li {
  margin-top: 0.75rem;
}

.site-footer__links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer__logo {
  max-width: 140px;
  margin: 0 auto;
}

.footer-business {
  display: block;
  max-width: 120px;
  width: 100%;
  height: 120px;
  object-fit: contain;
  object-position: center;
}
/* ensure full height */
.mobile-menu .offcanvas-body {
  height: 100%;
}

/* bottom section */
.mobile-menu__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* style topbar links */
.mobile-menu__topbar li + li {
  margin-top: 0.75rem;
}

.mobile-menu__topbar a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
}

.mobile-menu__topbar a:hover {
  color: var(--color-gold);
}

/* Mobile: always show description, no hover effect */
@media (max-width: 767.98px) {
  .home-expertise {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .home-expertise::before {
    display: none;
  }

  .expertise-card {
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
  }

  .expertise-card:hover,
  .expertise-card.is-active,
  .expertise-card:focus-within {
    transform: none !important;
    box-shadow: none !important;
  }

  .expertise-card__hover {
    opacity: 1;
    max-height: none;
    overflow: visible;
  }

  .expertise-card:hover .expertise-card__hover,
  .expertise-card.is-active .expertise-card__hover,
  .expertise-card:focus-within .expertise-card__hover {
    opacity: 1;
    max-height: none;
  }

  .expertise-card__title::after {
    width: 75px;
  }

  .expertise-card__title::after {
    width: 100% !important;
  }
}

@media (max-width: 991.98px) {
  .site-branding img {
    width: 125px;
  }

  .site-header--main.is-scrolled .site-branding__logo--icon {
    width: 90px;
  }
  .site-header__nav {
    padding: 0.75rem 0;
  }
  .home-hero__title {
    max-width: 100%;
  }
  .home-expertise {
    min-height: auto;
  }
  .expertise-card {
    min-height: auto;
  }
  .site-footer__logo {
    margin-left: auto;
  }
}

/* Slider Home page*/
.restore-slider-shell {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  /*overflow: hidden;*/
}

.js-restore-slider {
  overflow: visible;
  padding: 1rem 0 3rem;
}

.js-restore-slider .swiper-wrapper {
  align-items: center;
}

.js-restore-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.restore-slide-card {
  position: relative;
  width: min(100%, 380px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform;
}

.restore-image {
  display: block;
  width: 100%;
  aspect-ratio: 7/10;
  object-fit: cover;
}

/* Resources & Guides */
/* Resources & Guides */

.resources-hero__image img,
.blog-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.resources-hero__text {
  margin-top: 24px;
  color: var(--color-dark-grey);
  max-width: 760px;
}

/* Feature cards */
.resources-feature-cards .row {
  align-items: stretch;
}

.resources-feature-cards [class*="col-"] {
  display: flex;
}

.resources-feature-cards .resource-card {
  background: var(--color-green);
  color: var(--color-white);
  padding: clamp(2rem, 4vw, 4rem);
  min-height: 280px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.resource-card p {
  color: var(--color-white);
  margin-bottom: 25px;
  max-width: 620px;
}
/* Base Button Styles */
.btn-gold,
.btn-white,
.button-primary,
.button-secondary,
.gform_next_button,
.gform_button_select_files,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 245px;
  padding: 0.875rem 2.25rem;
  border-radius: 0 !important;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.03em;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease,
    background-color 0.25s ease, color 0.25s ease;
}

.gform_previous_button {
  color: #fff !important;
}

/* Gold */
.btn-gold,
.button-secondary {
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
}

.btn-gold:hover,
.button-secondary:hover {
  background: var(--color-dark-grey);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* White */
.btn-white {
  background: var(--color-white);
  color: var(--color-dark-grey);
  border: none;
}

.btn-white:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Green */
.button-primary,
.gform_next_button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.gform_button_select_files,
.btn-green {
  background: var(--color-green) !important;
  color: var(--color-white);
}

.button-primary:hover,
.gform_next_button:hover,
.btn-green:hover,
input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
/* Category filter bar */
.blog-category-bar {
  background: var(--color-green);
  color: var(--color-white);
  padding: 18px 0;
}

.blog-category-bar .container {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.blog-filter {
  position: relative;
  background: transparent;
  border: 0;
  color: var(--color-white);
  padding: 0.25rem;
  cursor: pointer;
  text-transform: capitalize;
}

/* animated underline */
.blog-filter::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0%;
  height: 1px;
  background-color: var(--color-white);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* hover + active */
.blog-filter:hover::after,
.blog-filter.is-active::after {
  width: 90%;
}

/* Blog cards */
.blog-card h3 {
  margin-top: 22px;
  margin-bottom: 12px;
}

.blog-card h3 a {
  color: var(--color-dark-grey);
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card h3 a:hover {
  color: var(--color-green);
}

.blog-card p {
  color: var(--color-dark-grey);
  margin-bottom: 16px;
}

.blog-card__link {
  color: var(--color-dark-grey);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}

.text-decoration-underline {
  text-underline-offset: 4px;
}

.blog-card__link:hover {
  color: var(--color-green);
}

.blog-card__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* No results */
.blog-no-results {
  color: var(--color-dark-grey);
}

/* Testimonial arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.js-testimonials-slider {
  position: relative;
  overflow: hidden;
}

.js-testimonials-slider .swiper-button-prev,
.js-testimonials-slider .swiper-button-next {
  position: absolute;
  bottom: -40%;
  width: auto;
  height: auto;
  margin: 0;
  border: none;
  background: transparent;
  color: #d69d40;
  font-size: 18px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}

.showroom-fabric .js-restore-slider .swiper-button-prev,
.showroom-fabric .js-restore-slider .swiper-button-next {
  color: white;
  font-size: 22px;
}

.showroom-fabric .js-restore-slider .swiper-button-prev {
  left: -6rem;
}
.showroom-fabric .js-restore-slider .swiper-button-next {
  right: -3rem;
}

.js-testimonials-slider .swiper-button-next {
  left: 90%;
  right: auto;
}

.js-testimonials-slider .swiper-button-prev {
  left: 5%;
}

.js-testimonials-slider .swiper-button-prev:hover,
.js-testimonials-slider .swiper-button-next:hover {
  color: #ffffff;
}

/* Prevent slide stacking issues */
.js-testimonials-slider .swiper-slide {
  height: auto;
}

.testimonial-slide {
  min-height: 650px;
  align-items: center;
}

/* Keep all image containers same size */
.testimonial-slide__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images fill evenly */
.testimonial-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TESTIMONIAL SLIDER ANIMATION */

.js-testimonials-slider {
  overflow: hidden;
}

/* Base state */
.testimonial-slide__content,
.testimonial-slide__media {
  opacity: 0;
  will-change: transform, opacity;
}

/* Starting positions */
.swiper-slide .testimonial-slide__content {
  transform: translateX(-80px);
}

.swiper-slide .testimonial-slide__media {
  transform: translateX(80px);
}

/* Active slide animation */
.swiper-slide-active .testimonial-slide__content {
  animation: testimonialContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

.swiper-slide-active .testimonial-slide__media {
  animation: testimonialMediaIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.35s;
}

/* Fade out inactive slides */
.swiper-slide-prev .testimonial-slide__content,
.swiper-slide-prev .testimonial-slide__media,
.swiper-slide-next .testimonial-slide__content,
.swiper-slide-next .testimonial-slide__media {
  opacity: 0;
}

/* KEYFRAMES */

@keyframes testimonialContentIn {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

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

@keyframes testimonialMediaIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

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

.js-testimonials-slider .swiper-slide-prev,
.js-testimonials-slider .swiper-slide-next {
  opacity: 0 !important;
}
/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  position: relative;
  padding-top: 4rem;
}

.about-hero__content {
  min-height: 45vh;
  padding-bottom: 3rem;
}

.about-hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.about-hero__subheading {
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  max-width: 850px;
}

.about-hero__image-wrap {
  width: min(100% - 2rem, 1320px);
  margin: -2rem auto 0;
  overflow: hidden;
}

.about-hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-intro__image,
.about-people__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-people__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-people__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-cta__text {
  max-width: 720px;
  margin: 0 auto;
}

.about-cta__button {
  background: var(--color-gold);
  color: var(--color-black);
}

.why-card-title {
  max-width: 95%;
}

@media (min-width: 992px) {
  .about-hero {
    padding-top: 6rem;
  }

  .about-hero__content {
    min-height: 55vh;
  }

  .about-hero__image-wrap {
    margin-top: -5rem;
  }

  .about-why-card {
    padding: 2.25rem;
    padding-left: 0;
  }

  .why-card-title {
    max-width: 95%;
  }
  .col-lg-5ths {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 767.98px) {
  .about-hero__image {
    aspect-ratio: 4 / 5;
  }

  .about-people__video,
  .about-people__image,
  .about-intro__image {
    aspect-ratio: 4 / 5;
  }
}

/* =========================
   ABOUT PAGE
========================= */

.about-page__title {
  margin-bottom: 1.5rem;
}

.about-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-hero-text {
  max-width: 920px;
  margin-top: 1.5rem;
}

.about-media-wrap {
  width: 100%;
  overflow: hidden;
}

.about-media-image,
.about-media-video {
  width: 100%;
  aspect-ratio: 7 / 10;
  object-fit: cover;
}

.owner-row {
  max-width: 1100px;
  margin: 0 auto;
}

.owner-image {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto;
}

.owner-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.owner-name span {
  font-family: var(--font-body);
  color: var(--color-black);
  font-size: 1rem;
}

.about-why-card {
  height: 100%;
  color: var(--color-white);
}

.about-why-card h3 {
  color: var(--color-gold);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.about-why-card p {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .about-hero-text {
    column-count: 2;
    column-gap: 3rem;
  }
}

/* PROCESS */
.about-process__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* PROCESS */
.about-process__image-right {
  width: 100%;
  aspect-ratio: 6.5 / 10;
  object-fit: cover;
}

/* GOLD CARDS */
.about-card {
  background: var(--color-white);
  height: 100%;
}

.about-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-card__content {
  padding: 1.5rem;
}

/* DIVISIONS */
.about-division {
  height: 100%;
  text-align: center;
}

.about-division__logo-wrap {
  height: 120px; /* equal visual area */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.about-division__logo {
  max-width: 220px;
  max-height: 95px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.about-division__text {
  max-width: 320px;
  margin: 0 auto;
}

/* =========================
  CUSTOM MODULAR TEMPLATE
========================= */
.mod-cards-grid.bg-green {
  background: var(--color-green);
  color: var(--color-white);
}

.mod-cards-grid.bg-gold {
  background: var(--color-gold);
  color: var(--color-dark-grey);
}

.mod-cards-grid.bg-light {
  background: var(--color-light);
  color: var(--color-dark-grey);
}

.mod-cards-grid.bg-linen,
.mod-cards-grid.bg-white {
  background: var(--color-white);
  color: var(--color-dark-grey);
}

/* Text-only cards */
.mod-cards-grid--text .mod-card {
  background: transparent;
  border: 0;
}

.mod-cards-grid--text .mod-card h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

/* Image cards */
.mod-cards-grid--image .mod-card {
  background: var(--color-white);
  color: var(--color-dark-grey);
  border: 0;
}

.mod-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.mod-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mod-card__content {
  padding: 1rem;
}

.mod-cards-grid--image .mod-card__content h3 {
  color: var(--color-dark-grey);
}

/* =========================
   DESIGN SHOWROOM
========================= */

.showroom-hero__image,
.showroom-quote__bg {
  width: 100%;
  object-fit: cover;
}

.showroom-hero__image {
  aspect-ratio: 16 / 9;
}

.showroom-hero__text {
  max-width: 650px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.showroom-embed,
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.showroom-embed iframe,
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showroom-card-slide {
  position: relative;
  overflow: hidden;
  background: var(--color-light);
}

.showroom-card-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.showroom-card-slide__label {
  position: absolute;
  left: 50%;
  bottom: 0rem;
  transform: translateX(-50%) translateY(12px);
  width: calc(100% - 0rem);
  background: var(--color-green);
  color: var(--color-white);
  padding: 1.15rem 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.showroom-card-slide:hover .showroom-card-slide__label,
.swiper-slide-active .showroom-card-slide__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.showroom-quote__bg {
  min-height: 750px;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.showroom-quote__content {
  max-width: 620px;
}

.showroom-quote__content h2 {
  color: var(--color-white);
}

.showroom-creative-card img {
  width: 80%;
  aspect-ratio: 8/10;
  object-fit: cover;
}

.showroom-logo-box a {
  display: block;
  transition: opacity 0.25s ease;
}

.showroom-logo-box a:hover {
  opacity: 0.7;
}

.showroom-logo-box {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.showroom-logo-box img {
  max-width: 140px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.accordion-button {
  background: var(--color-green);
  color: #fff;
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  background: var(--color-green);
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

#designerBrandsAccordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

#designerBrandsAccordion {
  margin: 0 auto;
  max-width: 800px;
  width: 80%;
}

.gallery-dropdown__toggle,
.gallery-dropdown__toggle span,
.gallery-dropdown__toggle i {
  color: #000 !important;
}
/* =========================
   Gallery
========================= */

.gallery-filters-bar {
  background: var(--color-green);
  padding: 1.25rem 0;
}

.gallery-dropdown {
  position: relative;
}

.gallery-dropdown__toggle {
  width: 100%;
  background: #fff;
  border: 0;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.gallery-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gallery-dropdown.is-open .gallery-dropdown__menu {
  display: flex;
}

.gallery-dropdown__menu button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}

.gallery-dropdown__menu button:hover,
.gallery-dropdown__menu button.is-active {
  background: var(--color-green);
  color: #fff;
}

.gallery-dropdown__menu button[hidden],
.gallery-grid__item[hidden],
.gallery-no-results[hidden] {
  display: none !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
}

/* REMOVE overlay completely */
.gallery-item::after {
  display: none !important;
}

.gallery-masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 16px;
}

.gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
}

.gallery-masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-intro__media {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gallery-intro__media img,
.gallery-intro__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Mobile */
@media (max-width: 767.98px) {
  .gallery-masonry {
    column-count: 2;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*module gallery*/
/* Gallery Modal */

.gallery-modal .modal-dialog {
  max-width: min(92vw, 1200px);
}

.gallery-modal__content {
  position: relative;
  border: 0;
  border-radius: 0;
  background: #e9e9e7;
  padding: 2rem 4.5rem 1.5rem;
}

.gallery-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--color-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal__image-wrap img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.gallery-modal__caption {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--color-green);
  padding-top: 1rem;
  font-size: 1rem;
}

.gallery-modal__arrow {
  width: 54px;
  opacity: 1;
  color: var(--color-black);
}

.gallery-modal__arrow:hover {
  color: var(--color-green);
}

.gallery-modal__arrow::after {
  display: none;
}

.gallery-modal__arrow--prev {
  left: -0.5rem;
}

.gallery-modal__arrow--next {
  right: -0.5rem;
}

.gallery-modal__arrow i {
  font-size: 1.5rem;
}

/* Optional: thumbnail strip style if you add thumbnails later */
.gallery-modal__thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-top: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-modal__thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-modal__thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-top: 1rem;
}

.gallery-modal__thumb {
  width: 120px;
  height: 80px;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  opacity: 0.65;
}

.gallery-modal__thumb.is-active {
  opacity: 1;
}

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

.gallery-modal__image-wrap {
  width: 100%;
  height: min(72vh, 720px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-modal__thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-top: 1rem;
}

.gallery-modal__thumb {
  width: 120px;
  height: 80px;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  background: transparent;
  opacity: 0.65;
  cursor: pointer;
}

.gallery-modal__thumb.is-active,
.gallery-modal__thumb:hover {
  opacity: 1;
}

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

@media (max-width: 767.98px) {
  .gallery-modal .modal-dialog {
    max-width: 100vw;
    margin: 0;
  }

  .gallery-modal__content {
    min-height: 100vh;
    padding: 4rem 1rem 1.5rem;
  }

  .gallery-modal__image-wrap {
    height: 65vh;
  }

  .gallery-modal__arrow--prev {
    left: 0.5rem;
  }

  .gallery-modal__arrow--next {
    right: 0.5rem;
  }
}

/* =========================
   COMMERCIAL PORTFOLIO
========================= */

.commercial-portfolio-hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.commercial-portfolio-hero .showroom-hero__text {
  max-width: 650px;
}

.commercial-industries__intro {
  max-width: 620px;
}

.commercial-industry-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.commercial-industry-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0;
}

.commercial-client-logo {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.commercial-client-logo:hover {
  opacity: 0.75;
  transform: translateY(-3px);
}

.commercial-client-logo img {
  max-width: 220px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.commercial-portfolio-cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.commercial-portfolio-cta p {
  margin-bottom: 2rem;
}

/* =========================
   SINGLE COMMERCIAL PORTFOLIO
========================= */

.commercial-single-hero__image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.commercial-single-meta p {
  font-size: 1rem;
  margin-bottom: 0;
}

.commercial-single-meta strong {
  font-weight: 600;
}

.commercial-scope-item {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0;
}

.commercial-scope-item::before {
  content: "•";
  position: absolute;
  left: 0;
}

.commercial-project-gallery img {
  width: 100%;
  display: block;
}

/* =========================
   Blog
========================= */

.resources-hero__image img,
.blog-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.resources-hero__text {
  margin-top: 24px;
}

.resources-feature-cards .resource-card {
  color: #fff;
  padding: 48px 40px;
  min-height: 350px;
}

.resource-card h2 {
  color: #fff;
  margin-bottom: 20px;
}

.blog-category-bar {
  background: var(--color-green);
  color: #fff;
  padding: 18px 0;
}

.blog-category-bar .container {
  display: flex;
  gap: 42px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-category-bar a {
  color: #fff;
  text-decoration: none;
}

.blog-category-bar a:hover {
  color: var(--color-gold);
}

.blog-card h3 {
  margin-top: 22px;
  margin-bottom: 12px;
}

.blog-card h3 a {
  color: #111;
  text-decoration: none;
}

.blog-card p {
  margin-bottom: 16px;
}

.blog-card__link {
  color: #111;
  text-decoration: underline;
}

.blog-card__image img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

/* =========================
   GLOBAL SHOWROOM CARD CAROUSEL (CLEAN MERGE)
========================= */

.showroom-card-carousel {
  padding-top: 2rem; /* keep your original spacing */
  padding-bottom: 4rem;
}

/* wrapper */
.showroom-card-carousel .swiper-wrapper {
  align-items: center;
}

/* default slides */
.showroom-card-carousel .swiper-slide {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.8); /* keep your exact size */
  opacity: 0.6;
  z-index: 0;
}

/* side slides */
.showroom-card-carousel .swiper-slide-prev,
.showroom-card-carousel .swiper-slide-next {
  transform: scale(0.85); /* subtle difference */
  opacity: 0.85;
  z-index: 1;
}

/* center slide */
.showroom-card-carousel .swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

/* pagination */
.showroom-card-carousel .swiper-pagination {
  bottom: -0.25rem !important; /* keep your spacing */
}

.showroom-card-carousel .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #d8d2ca;
}

.showroom-card-carousel .swiper-pagination-bullet-active {
  background: var(--color-green);
}

/* Gallery dropdown fix */
.gallery-section .gallery-dropdown {
  position: relative;
  z-index: 10;
}

.gallery-section .gallery-dropdown.is-open {
  z-index: 9999;
}

.gallery-section .gallery-dropdown__menu {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.gallery-section .gallery-dropdown.is-open .gallery-dropdown__menu {
  display: flex !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
}

.gallery-select {
  width: 100%;
  background: #fff;
  border: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}

.gallery-select-wrap {
  position: relative;
}

.gallery-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 0;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  border-radius: 0;
  box-shadow: none;
}

.gallery-select:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.gallery-select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-55%);
  pointer-events: none;
  color: var(--color-green);
  font-size: 1.2rem;
}

/* Gallery select design fix */
.gallery-section .gallery-select-wrap {
  position: relative;
  width: 100%;
}

.gallery-section .gallery-select {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  color: #333333;
  border: none;
  border-radius: 0;
  padding: 0 3rem 0 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 48px;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  box-shadow: none;
  outline: none;
}

.gallery-section .gallery-select-wrap::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-green);
  font-size: 0.8rem;
  pointer-events: none;
}

.gallery-section .gallery-select:hover,
.gallery-section .gallery-select:focus {
  background-color: #ffffff;
  color: #333333;
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.gallery-section .gallery-select option {
  color: #333333;
  background: #ffffff;
}

.gallery-modal__caption {
  text-align: center;
}

.gallery-modal .carousel-item img {
  max-width: 300px; /* adjust this (400–600px is a good range) */
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 0px;
}

.gallery-modal__dialog {
  max-width: 300px; /* 👈 main control (try 500–700px) */
  margin: 0 auto;
}

.gallery-modal .modal-content {
  padding: 20px;
  border-radius: 0px;
}

.gallery-modal .carousel-item {
  text-align: center;
}

.gallery-modal .model-content {
  border-radius: 0 !important;
}

.carousel-item img {
  text-align: center;
  margin: 0 auto;
}

.gallery-modal .modal-content {
  position: relative;
}

.gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 20px; /* 👈 moves it to the right */
  left: auto; /* 👈 overrides any left positioning */
  z-index: 10;
}

.gallery-modal .carousel-control-prev i,
.gallery-modal .carousel-control-next i {
  color: var(--color-dark-grey);
  font-size: 28px;
  transition: color 0.3s ease;
}

.gallery-modal .carousel-control-prev:hover i,
.gallery-modal .carousel-control-next:hover i {
  color: var(--color-dark-grey);
}

/**Gallery**/
.js-stacked-slider {
  width: 100%;
  max-width: 420px;
  height: 580px;
  overflow: visible;
  margin: 0 auto;
}

.js-stacked-slider .swiper-wrapper {
  align-items: center;
}

.js-stacked-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.stacked-slider-card {
  width: 100%;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.stacked-slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/**---Services---**/
/* =========================
   SERVICES
========================= */

/* Hero */

.service-hero__title {
  margin-bottom: 1rem;
}

.service-hero__media {
  position: relative;
  overflow: hidden;
}

.service-hero__media img,
.service-hero__media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.service-hero__text {
  max-width: 620px;
  margin-top: 2rem;
}

/**Services Fabrics**/
.service-fabric__heading {
  max-width: 760px;
  line-height: 1.18;
}

.service-fabric-card__title {
  margin-bottom: 1.5rem;
}

.service-fabric-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.service-fabric-card__text {
  max-width: 680px;
  color: var(--color-white);
}

.service-fabric__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}

@media (max-width: 767.98px) {
  .service-fabric__button {
    justify-content: flex-start;
    margin-top: 3rem;
  }

  .service-fabric-card__image {
    margin-bottom: 1.25rem;
  }
}
/* Service List */

.services-list__grid {
  display: grid;
  gap: 3rem;
}

.service-row {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row__content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 1rem;
}

.service-row__content p {
  max-width: 520px;
}

.service-row__content .btn-outline {
  align-self: flex-start;
}

.service-explore-card__image {
  width: 100%;
  aspect-ratio: 9 / 6;
  overflow: hidden;
}

.service-explore-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }

  .service-row--reverse .service-row__image {
    order: 2;
  }

  .service-row--reverse .service-row__content {
    order: 1;
  }

  .service-row__content {
    padding-top: 1.5rem;
  }
}

/**Single Service Areas*/
.service-hero__media,
.service-hero__video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.service-hero__image,
.service-hero__video {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  display: block;
  border: 0;
}

.service-hero__media img {
  filter: brightness(70%);
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  top: -10rem;
}

.service-hero__overlay h2 {
  max-width: 780px;
}

.service-hero__bottom {
  padding-top: 2rem;
}

.service-hero__buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.service-slider__slide {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-slider__content {
  background: var(--color-green);
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 3.5rem;
}

.service-info__images {
  margin-top: 4rem;
}

.service-info__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.service-transformation__single {
  width: 100%;
  overflow: hidden;
}

.service-transformation__image--single {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .service-hero__image,
  .service-hero__video,
  .service-slider__slide {
    height: 55vh;
  }

  .service-info__image {
    height: 360px;
  }
}
/* Buttons */

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0.7rem 1.2rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.btn-light {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.5rem;
  background: var(--color-white);
  color: var(--color-green);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

/* =========================
   SERVICE AREAS
========================= */

.services-area {
  background: var(--color-white);
}

.services-area__text {
  max-width: 720px;
}

.services-area__map {
  width: 100%;
  aspect-ratio: 22 / 8;
  overflow: hidden;
  background: var(--color-light);
}

.services-area__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.services-counties {
  margin-top: 2rem;
}

.services-counties__heading {
  font-family: var(--font-heading);
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.service-transformation__image--before {
  object-position: calc(0% + -2rem) center;
}

.service-transformation__image--after {
  object-position: calc(0% + -2rem) center;
}

/**Services Transformation Section***/
.service-transformation__heading {
  color: var(--color-green);
  max-width: 760px;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
}

.service-transformation__compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-transformation__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* After image layer */
.service-transformation__after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.service-transformation__after-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* Range input sits on top */
.service-transformation__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

/* Vertical line */
.service-transformation__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #111;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.service-transformation__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
}

.service-transformation__handle span::before,
.service-transformation__handle span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
}

.service-transformation__handle span::before {
  content: "◀";
  right: 55%;
}

.service-transformation__handle span::after {
  content: "▶";
  left: 55%;
}

/* Bootstrap Accordion Reset */

.services-counties__accordion .accordion-item {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 0;
  background: transparent;
}

.services-counties__accordion .accordion-button {
  background: transparent;
  color: var(--color-black);
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-shadow: none;
  border-radius: 0;
}

.services-counties__accordion .accordion-button:hover,
.services-counties__accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--color-green);
  box-shadow: none;
}

.services-counties__accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.services-counties__accordion .accordion-button::after {
  content: "+";
  background-image: none;
  width: auto;
  height: auto;
  margin-left: auto;
  font-size: 1.25rem;
  line-height: 1;
  transform: none;
}

.services-counties__accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}

/* Accordion Body */
.service-county__body {
  padding: 0 0 1rem;
}

.service-county__cities {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
  font-size: 0.95rem;
}

.service-county__cities li {
  margin-bottom: 0.4rem;
}

/* Mobile */

@media (max-width: 767.98px) {
  .service-county__cities {
    columns: 1;
  }

  .services-area__map {
    aspect-ratio: 4 / 3;
  }
}

/* Pickup Delivery */
.pickup-delivery {
  min-height: 720px;
  display: flex;
  align-items: stretch;
}

.pickup-delivery .container {
  display: flex;
  width: 100%;
}

.pickup-delivery__grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.pickup-delivery__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 620px;
}

.pickup-delivery__image {
  align-self: flex-start;
}

.pickup-delivery__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.btn-light {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.5rem;
  background: var(--color-white);
  color: var(--color-green);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .services-area__top,
  .pickup-delivery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-counties__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }

  .pickup-delivery__image {
    order: 2;
    align-self: flex-start;
  }
}

@media (min-width: 992px) {
  .pickup-delivery {
    min-height: 780px;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .pickup-delivery__grid {
    align-items: stretch;
  }

  .pickup-delivery__content {
    justify-content: flex-end;
    padding-bottom: 1rem;
  }

  .pickup-delivery__image {
    max-width: 520px;
    margin-left: auto;
  }
}
.delivery-card {
  border: 1px solid rgba(11, 77, 42, 0.12);
  padding: 2rem;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.delivery-card h3 {
  color: var(--color-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.delivery-card p:last-child {
  margin-bottom: 0;
}

.handling-box {
  background: var(--color-light-beige);
  padding: 2rem;
}

.handling-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.handling-list li {
  margin-bottom: 0.5rem;
}
/* =========================
   PROCESS PAGE
========================= */
.process-tabs {
  color: var(--color-white);
}

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

.process-tab {
  border: 0;
  border-right: 1px solid rgba(248, 246, 242, 0.35);
  background: transparent;
  color: var(--color-white);
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  cursor: pointer;
  background-color: var(--color-green);

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

.process-tab:hover {
  background: var(--color-grey);
  color: var(--color-dark-grey);
}

.process-tab.is-active {
  background: var(--color-grey);
  color: var(--color-dark-grey);
}

.process-panel {
  display: none;
}

.process-panel.is-active {
  display: block;
}

.process-panel__intro {
  margin-bottom: 3rem;
}

.process-panel__intro p {
  max-width: 720px;
}

.process-phase {
  padding-top: 3rem;
  margin-top: 3rem;
}

.process-phase__eyebrow {
  margin-bottom: 0.25rem;
}

.process-phase__heading {
  margin-bottom: 3rem;
}

.process-phase__heading h3 {
  max-width: 920px;
}

.process-phase__intro {
  max-width: 820px;
  margin-top: 1rem;
}

.process-phase a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.process-phase a:hover {
  color: var(--color-gold);
}

.process-steps {
  display: grid;
  gap: 4rem;
}

.process-step {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.process-step__content {
  max-width: 720px;
}

.process-step__content h4 {
  margin-bottom: 1rem;
}

.process-step__media {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.process-step__media img {
  display: block;
  width: 100%;
  height: auto;
}

.process-container {
  max-width: 1500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-tabs__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  /* Slider Home page*/
  .restore-slider-shell {
    max-width: 500px;
  }
  .process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .process-step--reverse .process-step__content {
    order: 2;
  }

  .process-step--reverse .process-step__media {
    order: 1;
  }

  .process-step__media {
    max-width: 500px;
  }
}

@media (min-width: 992px) {
  .process-panel__intro {
    margin-bottom: 4rem;
  }

  .process-phase {
    padding-top: 4rem;
    margin-top: 4rem;
  }

  .process-steps {
    gap: 5rem;
  }

  .process-step {
    border-top: 1px solid rgba(19, 19, 19, 0.55);
    padding-top: 4rem;
  }
}

/* =========================
   FABRIC GLOSSARY PAGINATION
========================= */

.fabric-glossary-hero__text {
  max-width: 880px;
}

.fabric-step {
  display: none;
}

.fabric-step.is-active {
  display: block;
}

.fabric-step__nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.fabric-step__back,
.fabric-step__next {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-dark-grey);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.fabric-step__back:disabled,
.fabric-step__next:disabled {
  opacity: 0;
  pointer-events: none;
}

.fabric-step__progress {
  height: 6px;
  background: transparent;
  border: 1px solid var(--color-dark-grey);
  position: relative;
}

.fabric-step__progress span {
  display: block;
  height: 100%;
  background: var(--color-dark-grey);
  transition: width 0.35s ease;
}

.fabric-step__count {
  white-space: nowrap;
}

.fabric-step__intro {
  max-width: 760px;
  margin-bottom: 4rem;
}

.fabric-step__intro h2 {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.1;
}

.fabric-step__text {
  max-width: 660px;
}

.fabric-step__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.fabric-step-card__image {
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--color-light);
}

.fabric-step-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fabric-step-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.fabric-step-card p {
  max-width: 420px;
}
.fabric-step--palettes .fabric-step-card__image img {
  aspect-ratio: 3 / 1;
}

@media (min-width: 768px) {
  .fabric-step__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
  }
}

@media (min-width: 992px) {
  .fabric-step__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .fabric-step--first .fabric-step__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .fabric-step__nav {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .fabric-step__next {
    grid-column: 3;
  }

  .fabric-step__intro {
    margin-bottom: 2.5rem;
  }
}

/*FAQ Page*/

/* FAQ */

.faq-hero__text {
  max-width: 760px;
  margin: 0 auto;
}

.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-faq .faq-card {
  border: 1px solid rgba(11, 77, 42, 0.12);
  background: var(--color-linen);
  overflow: hidden;
}

.accordion-faq .accordion-button {
  background: var(--color-linen);
  color: var(--color-green);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.3;
  padding: 1.35rem 1.5rem;
  box-shadow: none;
}

.accordion-faq .accordion-button:not(.collapsed) {
  background: var(--color-green);
  color: #ffffff;
  box-shadow: none;
}

.accordion-faq .accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(11, 77, 42, 0.15);
  border-color: transparent;
}

.accordion-faq .accordion-button::after {
  filter: none;
  transition: transform 0.25s ease;
}

.accordion-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-faq .faq-card__body {
  background: #ffffff;
  color: var(--color-green);
  padding: 1.5rem;
  border-top: 1px solid rgba(11, 77, 42, 0.1);
}

.accordion-faq .faq-card__body p:last-child {
  margin-bottom: 0;
}

.accordion-faq .faq-card__body a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.accordion-item,
.accordion-header {
  border-radius: 0;
}

.faq-section:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 3rem;
}

.faq-section__header .section-title {
  color: var(--color-green);
}

.accordion-faq a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--color-green);
}

@media (min-width: 768px) {
  .accordion-faq .accordion-button {
    padding: 1.5rem 2rem;
  }

  .accordion-faq .faq-card__body {
    padding: 1.75rem 2rem;
  }
}

/* Active image */
.js-stacked-slider .swiper-slide-active {
  z-index: 5;
}

/* Image underneath */
.js-stacked-slider .swiper-slide-next {
  z-index: 3;
}

/* Image moving out */
.js-stacked-slider .swiper-slide-prev {
  z-index: 6;
  pointer-events: none;
}

/* Hide extra loop duplicates */
.js-stacked-slider
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(
    .swiper-slide-prev
  ) {
  opacity: 0 !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-white);
}

.js-stacked-slider .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

/* Gravity Forms focus styles */
.gform-theme--framework input:focus,
.gform-theme--framework textarea:focus,
.gform-theme--framework select:focus {
  border-color: var(--color-green) !important;
  outline-color: var(--color-green) !important;
  box-shadow: 0 0 0 1.5px rgba(11, 77, 42, 0.18) !important;
}
/* =========================
   CARD (unchanged, already global)
========================= */

.showroom-card-slide {
  position: relative;
  overflow: hidden;
  background: var(--color-light);
}

.showroom-card-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.showroom-card-slide__label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(12px);
  width: 100%;
  background: var(--color-green);
  color: var(--color-white);
  padding: 1.15rem 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.showroom-card-slide:hover .showroom-card-slide__label,
.showroom-card-carousel .swiper-slide-active .showroom-card-slide__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/**Modular Template**/
.mod-text-image__media,
.mod-gallery-card,
.mod-gallery-slide {
  width: 100%;
  overflow: hidden;
}

.mod-text-image__media {
  aspect-ratio: 4 / 5;
}

.mod-gallery-card {
  aspect-ratio: 4 / 3;
}

.mod-gallery-slide {
  aspect-ratio: 16 / 9;
}

.mod-text-image__media img,
.mod-gallery-card img,
.mod-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mod-card,
.mod-process-step {
  background: var(--color-white);
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mod-process-step__number {
  display: block;
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-pagination__button {
  border: 1px solid currentColor;
  background: transparent;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.gallery-pagination__button.is-active,
.gallery-pagination__button:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.gallery-pagination__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

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

@media (max-width: 767.98px) {
  .showroom-card-carousel {
    overflow: hidden;
  }

  .showroom-card-carousel .swiper-slide,
  .showroom-card-carousel .swiper-slide-prev,
  .showroom-card-carousel .swiper-slide-next,
  .showroom-card-carousel .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
}

.js-showroom-guide-slider .swiper-pagination {
  bottom: -0.25rem !important;
}

.showroom-appointment-card img {
  width: 100%;
  aspect-ratio: 10/6;
  object-fit: cover;
}

.showroom-appointment-card p {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.showroom-cta {
  background: var(--color-gold);
}
.secondary-header__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.secondary-header__video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Mobile query*/
@media (max-width: 767.98px) {
  .showroom-hero__image {
    aspect-ratio: 4 / 5;
  }

  .showroom-quote__bg {
    min-height: 360px;
  }
}

.secondary-hero__media {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .secondary-hero__media {
    height: 450px;
  }
}

@media (min-width: 1200px) {
  .secondary-hero__media {
    height: 550px;
  }
}

/**TOOLS**/
/*** Image Hover ****/
/* [1] The container */
.img-hover-zoom {
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform 0.5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.25);
}

.img-hover-zoom-s {
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom-s img {
  transition: transform 0.35s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom-s:hover img {
  transform: scale(1.15);
}
/* Keyframes */
@keyframes testimonialTextIn {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonialImageIn {
  0% {
    opacity: 0;
    transform: translateX(100px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 991.98px) {
  .home-restore .restore-slide-card {
    width: 100%;
  }

  .home-restore .js-restore-slider {
    overflow: hidden;
  }
}

/* Small devices (phones ≥ 576px) */
@media (min-width: 576px) {
}

/* Medium devices (tablets ≥ 768px) */
@media (min-width: 768px) {
  /* Headings */
  .h1,
  h1 {
    padding-top: 1.5rem;
  }

  .showroom-logo-box img {
    max-width: 200px;
    max-height: 120px;
  }
}

/* Large devices (desktops ≥ 992px) */
@media (min-width: 992px) {
  .primary-menu {
    display: flex;
    align-items: center;
  }
  .testimonial-slide__image {
    max-width: 500px;
  }
  .js-testimonials-slider .swiper-button-prev {
    position: absolute;
    bottom: -30%;
    left: 6px;
  }

  .js-testimonials-slider .swiper-button-next {
    position: absolute;
    bottom: -30%;
    right: 55%;
  }

  .js-testimonials-slider .swiper-button-prev,
  .js-testimonials-slider .swiper-button-next {
    top: 60%;
  }

  .js-testimonials-slider .swiper-button-prev {
    left: 3rem;
  }

  .js-testimonials-slider .swiper-button-next {
    left: calc(50% - 3rem);
    right: auto;
  }

  .global-testimonials .swiper-horizontal > .swiper-pagination-bullets,
  .global-testimonials .swiper-pagination-bullets.swiper-pagination-horizontal,
  .global-testimonials .swiper-pagination-custom,
  .global-testimonials .swiper-pagination-fraction {
    width: 50%;
  }

  .site-footer__logo {
    float: right;
  }
  .section-space-sm {
    padding: 1.5rem 0;
  }

  .section-space-s {
    padding: 2rem 0;
  }

  .section-space {
    padding: 3.75rem 0;
  }

  .section-space-l {
    padding: 4.75rem 0;
  }

  .section-space-xl {
    padding: 6rem 0;
  }

  .site-header__nav .container-fluid {
    max-width: 1500px;
  }

  .container {
    max-width: 1500px; /* or 1700px / 1800px */
    padding: 0 3rem;
  }

  .container-s {
    max-width: 1400px;
  }

  .section-title {
    margin-top: 2rem;
  }

  .gallery-modal .carousel-item img {
    max-width: 510px; /* adjust this (400–600px is a good range) */
  }

  .gallery-modal__dialog {
    max-width: 650px; /* 👈 main control (try 500–700px) */
    margin: 0 auto;
  }

  .gallery-modal .modal-content {
    padding: 40px;
  }

  .home-expertise {
    padding: 3rem 0 4rem;
  }

  .showroom-card-carousel {
    padding-top: 5rem; /* keep your original spacing */
    padding-bottom: 7rem;
  }

  .js-showroom-guide-slider .swiper-pagination {
    bottom: 1.5rem !important;
  }

  .home-hero__media {
    margin-top: -16rem;
  }

  .resource-card p {
    margin-bottom: 50px;
  }

  .service-fabric__button {
    margin-top: 8rem;
  }
}

/* Extra large (≥ 1200px) */
@media (min-width: 1200px) {
  .primary-menu {
    gap: 2.5rem;
  }
}

/* XXL screens (≥ 1400px) */
@media (min-width: 1400px) {
}
