/* ======================================================
   ROOT VARIABLES
====================================================== */
:root {
    --gold: #b38e59;
    --gold-hover: #b3946b;
    --dark-bg: #091613;
    --dark-secondary: #0d1d19;
    --dark-light: #122520;
    --white: #ffffff;
    --text-muted: #9ca7a3;
    --paper: #eee6d8;
    --paper-light: #f7f2e9;
    /* --paper: #EDE8DF; */
    --line: rgba(247, 245, 240, 0.14);
    --line-dark: rgba(27, 29, 30, 0.14);
    --border-color: rgba(179, 142, 89, 0.25);
    --transition: all 0.35s ease;
}


/* ======================================================
   GENERAL STYLING
====================================================== */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {

    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background-color: var(--paper-light) !important;
    /* background-color: var(--dark-bg) !important; */
    color: var(--dark-bg);
    font-family: "Montserrat", sans-serif;
}

body,
button,
input,
textarea,
select {
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
}

a {
    transition: var(--transition);
    color: inherit;
    text-decoration: none;
}

.font-serif {
    font-family: "Cormorant Garamond", serif;
}

.font-sans {
    font-family: "Montserrat", sans-serif;
}

.text-gold {
    color: var(--gold) !important;
}

.tracking {
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fs-7 {
    font-size: 0.75rem;
}

.max-w-550 {
    max-width: 550px;
}


/* ======================================================
   HEADER
====================================================== */
.main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 24px 0;
    background-color: transparent !important;
    transition: background-color 0.35s ease, padding 0.35s ease;
}

.main-header.nav-scrolled,
.site-inner-page .main-header {
    padding: 14px 0;
    background-color: #091613 !important;
    border-bottom: 1px solid rgba(179, 142, 89, 0.22);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.site-inner-page {
    padding-top: 78px;
}

.site-inner-page>.custom-suits-page,
.site-inner-page>.fabrics-page {
    padding-top: 0;
}

.logo-img {
    width: 60px;
    height: auto;
    transition: width 0.35s ease;
}

.main-header.nav-scrolled .logo-img {
    width: 50px;
}

.logo-text {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.4px;
}

.logo-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.main-header .desktop-navigation>ul>li>a {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.main-header .desktop-navigation>ul>li>a:hover,
.main-header .desktop-navigation>ul>li>a.active {
    color: var(--gold) !important;
}

.desktop-navigation a {
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.desktop-navigation>ul>li>a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    margin: auto;
    content: "";
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.desktop-navigation>ul>li>a:hover::after,
.desktop-navigation>ul>li>a.active::after {
    width: 100%;
}

.hover-gold:hover {
    color: var(--gold) !important;
}


/* ======================================================
   DESKTOP SERVICES DROPDOWN
====================================================== */
.nav-dropdown {
    padding-bottom: 0;
}

.services-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 20;
    min-width: 250px;
    padding: 12px 0;
    visibility: hidden;
    background-color: rgba(9, 22, 19, 0.98);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: var(--transition);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.services-dropdown::before {
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    content: "";
}

.nav-dropdown:hover .services-dropdown,
.nav-dropdown:focus-within .services-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.services-dropdown li {
    width: 100%;
}

.services-dropdown li a {
    display: block;
    width: 100%;
    padding: 11px 20px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.73rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.services-dropdown li a:hover {
    padding-left: 25px;
    color: var(--gold);
    background-color: rgba(179, 142, 89, 0.08);
}


/* ======================================================
   BUTTONS
====================================================== */
.btn {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-outline-gold {
    color: var(--gold);
    background-color: transparent;
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
    color: var(--dark-bg);
    background-color: var(--gold);
    border-color: var(--gold);
    box-shadow: none;
}

.btn-solid-gold {
    color: var(--dark-bg);
    background-color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-solid-gold:hover,
.btn-solid-gold:focus {
    color: var(--dark-bg);
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow: none;
}


/* ======================================================
   MOBILE MENU BUTTON
====================================================== */
.mobile-menu-button {
    width: 45px;
    height: 45px;
    padding: 0;
    color: var(--gold);
    background-color: rgba(9, 22, 19, 0.45);
    border: 1px solid var(--gold);
    border-radius: 0;
    font-size: 1.15rem;
    transition: var(--transition);
}

.mobile-menu-button:hover {
    color: var(--dark-bg);
    background-color: var(--gold);
}


/* ======================================================
   MOBILE OFFCANVAS
====================================================== */
.mobile-offcanvas {
    width: min(390px, 88vw) !important;
    color: var(--white);
    background:
        linear-gradient(rgba(9, 22, 19, 0.97),
            rgba(9, 22, 19, 0.97)),
        url("/assets/img/ChatGPT Image Jul 13, 2026, 01_58_18 PM.png") center / cover no-repeat;
    border-left: 1px solid var(--border-color);
}

.mobile-offcanvas .offcanvas-header {
    min-height: 100px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-logo {
    width: 48px;
    height: auto;
}

.mobile-brand-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.63rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.mobile-close-button {
    width: 40px;
    height: 40px;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    transition: var(--transition);
}

.mobile-close-button:hover {
    color: var(--dark-bg);
    background-color: var(--gold);
    border-color: var(--gold);
}

.mobile-offcanvas .offcanvas-body {
    padding: 16px 24px 28px;
}

.mobile-navigation>ul>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.7px;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
}

.mobile-dropdown-button i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-button.is-open i {
    transform: rotate(180deg);
}

.mobile-submenu {
    padding: 0 0 14px 16px;
}

.mobile-submenu li a {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-submenu li a:hover {
    color: var(--gold);
}

.mobile-menu-bottom {
    padding-top: 40px;
}

.mobile-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.mobile-contact-details a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    text-decoration: none;
}

.mobile-contact-details a i {
    width: 15px;
    color: var(--gold);
}

.mobile-contact-details a:hover {
    color: var(--gold);
}

.mobile-social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.mobile-social-links a {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.mobile-social-links a:hover {
    color: var(--dark-bg);
    background-color: var(--gold);
    border-color: var(--gold);
}


/* ======================================================
   HERO SECTION
====================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(9, 22, 19, 0.98) 40%,
            rgba(9, 22, 19, 0.75) 65%,
            rgba(9, 22, 19, 0.1) 100%);
}

.hero-container {
    padding: 0;
}

.hero-content-column {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    width: 100%;
    padding: 145px 40px 65px 5rem;
}

.hero-heading {
    max-width: 750px;
    color: var(--white);
    font-size: clamp(3.25rem, 5.3vw, 6.2rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -1px;
}

.hero-divider {
    width: min(50%, 430px);
    margin: 6px 0 20px;
}

.hero-divider img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-description {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    white-space: nowrap;
}

.hero-features {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.hero-features>div {
    font-size: 0.7rem;
}

.hero-footer-content>p:first-child {
    font-size: 1.15rem;
}

.hero-footer-content>p:last-child {
    max-width: 750px;
    line-height: 1.7;
}

.right-img {
    position: relative;
    z-index: 0;
    min-height: 100vh;
    background:
        url("/assets/img/ChatGPT Image Jul 13, 2026, 01_58_18 PM.png") no-repeat center center;
    background-size: cover;
}

/* ---other sections- */




/* =====================================================
   BESPOKE INTRO SECTION
===================================================== */

.bespoke-intro {
    overflow: hidden;
    color: var(--white);
    background-color: var(--dark-bg);
}

.bespoke-copy {
    width: 100%;
}




.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    width: 25px;
    height: 1px;
    content: "";
    background-color: var(--gold);
}


/* Main heading */

.bespoke-title {
    max-width: 700px;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.bespoke-title em {
    display: inline;
    color: var(--gold-hover);
    font-weight: 400;
}


/* Description */

.bespoke-description {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}


/* Buttons */

.btn-gold {
    color: var(--dark-bg);
    background-color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.btn-gold:hover {
    color: var(--dark-bg);
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-outline-gold {
    color: var(--gold);
    background-color: transparent;
    border: 1px solid var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    color: var(--dark-bg);
    background-color: var(--gold);
    border-color: var(--gold);
}


/* Statistics */

.bespoke-stats {
    max-width: 700px;
    border-top: 1px solid var(--line);
}

.bespoke-stats strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.bespoke-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =====================================================
   PATTERN ILLUSTRATION
===================================================== */

.pattern-art {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-left: 1px solid var(--line);
    background-color: var(--dark-secondary);
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            var(--line) 40px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            var(--line) 40px
        );
}

.pattern-art svg {
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.pattern-label {
    position: absolute;
    top: 12%;
    left: 8%;
    z-index: 2;
    color: var(--gold-hover);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.pattern-note {
    position: absolute;
    right: 8%;
    bottom: 8%;
    z-index: 2;
    max-width: 190px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.6rem;
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
}


/* =====================================================
   FABRIC MARQUEE
===================================================== */

.fabric-marquee {
    overflow: hidden;
    padding: 17px 0;
    color: var(--gold-hover);
    background-color: var(--dark-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.fabric-track {
    display: inline-flex;
    width: max-content;
    animation: fabricScroll 35s linear infinite;
}

.fabric-track span {
    display: inline-block;
    margin: 0 30px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    opacity: 0.85;
    text-transform: uppercase;
}

@keyframes fabricScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
    .bespoke-copy {
        padding-bottom: 45px;
    }

    .bespoke-title {
        max-width: 800px;
    }

    .pattern-art {
        min-height: 470px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .pattern-art svg {
        min-height: 470px;
    }

    .pattern-label,
    .pattern-note {
        display: none;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
    .bespoke-intro {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .section-eyebrow {
        font-size: 0.6rem;
        line-height: 1.6;
    }

    .bespoke-title {
        font-size: clamp(2.5rem, 12vw, 3.6rem);
    }

    .bespoke-description {
        font-size: 0.9rem;
    }

    .bespoke-stats strong {
        font-size: 0.9rem;
    }

    .bespoke-stats span {
        font-size: 0.6rem;
    }

    .pattern-art {
        min-height: 390px;
    }

    .pattern-art svg {
        min-height: 390px;
    }

    .fabric-track span {
        margin: 0 22px;
        font-size: 0.64rem;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
    .bespoke-title {
        font-size: 2.55rem;
    }

    .btn-gold,
    .btn-outline-gold {
        width: 100%;
    }

    .pattern-art {
        min-height: 330px;
    }

    .pattern-art svg {
        min-height: 330px;
    }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .fabric-track {
        animation: none;
    }
}


/* -----services----------- */

/* =====================================================
   FABRIC MARQUEE
===================================================== */

.fabric-marquee {
  overflow: hidden;
  padding: 16px 0;
  color: var(--gold-hover);
  background-color: var(--dark-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.fabric-track {
  display: inline-flex;
  width: max-content;
  animation: fabricScroll 34s linear infinite;
}

.fabric-track span {
  margin: 0 28px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

@keyframes fabricScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {
  color: #1b1d1e;
  background-color: var(--paper-light);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background-color: var(--gold);
}

.services-title {
  max-width: 650px;
  color: #1b1d1e;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.services-intro {
  max-width: 600px;
  color: #5c5c54;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}


/* =====================================================
   SERVICE CARDS
===================================================== */

.services-grid {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.services-grid > div {
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.docket {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 38px 30px;
  background-color: var(--paper-light);
  transition: var(--transition);
}

.docket:hover {
  background-color: var(--paper-light);
}

.docket-punch {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.docket-number {
  padding-right: 30px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.docket h3 {
  margin: 18px 0 10px;
  color: #1b1d1e;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.docket p {
  max-width: 36ch;
  margin-bottom: 24px;
  color: #5c5c54;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

.docket-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.docket-link span {
  transition: transform 0.3s ease;
}

.docket-link:hover {
  color: var(--gold-hover);
}

.docket-link:hover span {
  transform: translateX(5px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .docket {
    min-height: 280px;
    padding: 34px 26px;
  }

  .services-title {
    max-width: 700px;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .services-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .services-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .services-intro {
    font-size: 0.92rem;
  }

  .docket {
    min-height: auto;
    padding: 32px 24px;
  }

  .docket h3 {
    font-size: 1.55rem;
  }

  .fabric-track span {
    margin: 0 22px;
    font-size: 0.65rem;
  }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .fabric-track {
    animation: none;
  }
}



/* =====================================================
   PROCESS SECTION
===================================================== */

.process-section {
  color: var(--white);
  background-color: var(--dark-secondary);
}

.process-title {
  max-width: 760px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.process-intro {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}


/* Eyebrow */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background-color: var(--gold);
}


/* =====================================================
   TAPE LAYOUT
===================================================== */

.process-tape {
  position: relative;
  padding-top: 12px;
}

.process-line {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 30px 24px 25px;
  border-left: 1px solid var(--line);
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: -1px;
  width: 1px;
  height: 10px;
  content: "";
  background-color: var(--gold);
}

.process-step::after {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 5px;
  height: 5px;
  content: "";
  background-color: var(--gold);
  border-radius: 50%;
}

.process-tape .row > div:first-child .process-step {
  border-left: 0;
}

.process-tape .row > div:first-child .process-step::before,
.process-tape .row > div:first-child .process-step::after {
  left: 0;
}


/* Process Content */

.process-mark {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.process-step p {
  max-width: 32ch;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.7;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .process-tape {
    padding-top: 0;
  }

  .process-tape .row {
    row-gap: 24px;
  }

  .process-step {
    min-height: 230px;
    padding: 28px 24px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-step::before {
    top: -1px;
    left: 24px;
    width: 18px;
    height: 1px;
  }

  .process-step::after {
    top: -3px;
    left: 22px;
  }

  .process-tape .row > div:first-child .process-step {
    border-left: 1px solid var(--line);
  }

  .process-tape .row > div:first-child .process-step::before {
    left: 24px;
  }

  .process-tape .row > div:first-child .process-step::after {
    left: 22px;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .process-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .process-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .process-intro {
    font-size: 0.92rem;
  }

  .process-tape .row {
    row-gap: 16px;
  }

  .process-step {
    min-height: auto;
    padding: 26px 22px;
  }

  .process-step h3 {
    font-size: 1.5rem;
  }

  .process-step p {
    max-width: 100%;
  }
}
/* =====================================================
   FABRICS SECTION
===================================================== */

.fabrics-section {
  color: var(--dark-bg);
  background-color: var(--paper-light);
}

.fabrics-title {
  max-width: 650px;
  /* color: var(--white); */
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.fabrics-intro {
  max-width: 620px;
  /* color: var(--text-muted); */
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}


/* =====================================================
   FABRIC SWATCHES
===================================================== */

.fabric-strip {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fabric-strip > div {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fabric-swatch {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: flex-end;
  overflow: hidden;
  padding: 18px;
}

.fabric-swatch::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.95;
  transition: transform 0.45s ease;
}

.fabric-swatch::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    transparent 60%
  );
}

.fabric-swatch:hover::before {
  transform: scale(1.05);
}

.fabric-swatch span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* Fabric Patterns */

.swatch-one::before {
  background:
    repeating-linear-gradient(
      115deg,
      #2b2f2a,
      #2b2f2a 6px,
      #33372f 6px,
      #33372f 12px
    );
}

.swatch-two::before {
  background:
    repeating-linear-gradient(
      70deg,
      #3a2f2a,
      #3a2f2a 5px,
      #4a3c33 5px,
      #4a3c33 10px
    );
}

.swatch-three::before {
  background:
    repeating-linear-gradient(
      100deg,
      #2a2e33,
      #2a2e33 7px,
      #33383f 7px,
      #33383f 14px
    );
}

.swatch-four::before {
  background:
    repeating-linear-gradient(
      60deg,
      #4a3327,
      #4a3327 4px,
      #5a4030 4px,
      #5a4030 9px
    );
}

.swatch-five::before {
  background:
    repeating-linear-gradient(
      120deg,
      #22221f,
      #22221f 8px,
      #2c2b26 8px,
      #2c2b26 16px
    );
}

.swatch-six::before {
  background:
    repeating-linear-gradient(
      80deg,
      #33302a,
      #33302a 5px,
      #403c33 5px,
      #403c33 11px
    );
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .fabric-swatch {
    min-height: 220px;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .fabrics-section {
    padding-top: 55px !important;
  }

  .fabrics-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .fabrics-intro {
    font-size: 0.92rem;
  }

  .fabric-swatch {
    min-height: 190px;
    padding: 15px;
  }

  .fabric-swatch span {
    font-size: 0.6rem;
    line-height: 1.5;
  }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
  .fabric-swatch {
    min-height: 165px;
  }
}

/* =====================================================
   COVERAGE SECTION
===================================================== */

.coverage-section {
  color: #1b1d1e;
  background-color: var(--paper-light);
}

.coverage-title {
  max-width: 550px;
  color: #1b1d1e;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.coverage-description {
  max-width: 520px;
  color: #4b4b45;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}


/* =====================================================
   COVERAGE LOCATIONS
===================================================== */

.coverage-list {
  max-width: 560px;
  border-top: 1px solid var(--line-dark);
}

.coverage-list > div:nth-child(odd) {
  padding-right: 18px;
}

.coverage-list > div:nth-child(even) {
  padding-left: 18px;
}

.coverage-item {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  color: #353630;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.coverage-item::before {
  content: "—";
  color: var(--gold);
}


/* =====================================================
   COVERAGE ARTWORK
===================================================== */

.coverage-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background-color: var(--dark-secondary);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      var(--line) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      var(--line) 40px
    );
  border: 1px solid var(--line-dark);
}

.coverage-art svg {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.coverage-art-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--gold-hover);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .coverage-art {
    min-height: 430px;
  }

  .coverage-art svg {
    min-height: 430px;
  }

  .coverage-title {
    max-width: 700px;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .coverage-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .coverage-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .coverage-description {
    font-size: 0.92rem;
  }

  .coverage-list > div:nth-child(odd) {
    padding-right: 10px;
  }

  .coverage-list > div:nth-child(even) {
    padding-left: 10px;
  }

  .coverage-item {
    min-height: 54px;
    font-size: 0.75rem;
  }

  .coverage-art {
    min-height: 360px;
  }

  .coverage-art svg {
    min-height: 360px;
  }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
  .coverage-list > div {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .coverage-art {
    min-height: 310px;
  }

  .coverage-art svg {
    min-height: 310px;
  }

  .coverage-art-label {
    right: 15px;
    bottom: 14px;
    font-size: 0.55rem;
  }
}

/* =====================================================
   GOOGLE REVIEWS
===================================================== */

.google-reviews {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 154, 94, 0.1), transparent 38%),
    #111413;
  border-top: 1px solid rgba(199, 154, 94, 0.2);
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.reviews-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-rating > span:last-child {
  display: grid;
  gap: 3px;
}

.google-rating strong {
  color: var(--white);
  font-weight: 500;
}

.google-g {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #4285f4;
  background: #fff;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.reviews-viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.reviews-viewport.is-dragging {
  cursor: grabbing;
}

.reviews-viewport::before,
.reviews-viewport::after {
  display: none;
}

.reviews-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #111413 20%, rgba(17, 20, 19, 0));
}

.reviews-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, #111413 20%, rgba(17, 20, 19, 0));
}

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.review-card {
  display: grid;
  width: min(620px, 72vw);
  height: 290px;
  min-height: 0;
  overflow: hidden;
  grid-template-columns: 46% 54%;
  background: #191d1b;
  border: 1px solid rgba(199, 154, 94, 0.26);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.review-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #0d100f;
  isolation: isolate;
}

.review-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 70%, rgba(17, 20, 19, 0.34)),
    linear-gradient(0deg, rgba(7, 10, 9, 0.18), transparent 35%);
}

.review-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 32%;
  filter: saturate(0.76) contrast(1.04);
  transition: transform 0.7s ease, filter 0.7s ease;
  -webkit-user-drag: none;
}

.review-card:nth-child(3n + 1) .review-image img {
  object-position: 50% 24%;
}

.review-card:nth-child(3n + 2) .review-image img {
  object-position: 52% 38%;
}

.review-card:nth-child(3n + 3) .review-image img {
  object-position: 58% 28%;
}

.review-card:hover .review-image img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.04);
}

.review-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
  overflow: hidden;
}

.review-stars {
  color: #e2ad63;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
}

.review-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 17px 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-copy footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-copy footer > div {
  display: grid;
  gap: 3px;
}

.review-copy footer strong {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-copy footer span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-read-more {
  padding: 0 0 3px;
  color: var(--gold-hover);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(199, 154, 94, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.review-read-more i {
  margin-left: 5px;
  font-size: 0.5rem;
}

.review-read-more:hover,
.review-read-more:focus-visible {
  color: #f0c98d;
  border-color: #f0c98d;
  outline: none;
}

.review-modal .modal-dialog {
  padding: 18px;
}

.review-modal .modal-content {
  overflow: hidden;
  color: var(--white);
  background: #151917;
  border: 1px solid rgba(199, 154, 94, 0.34);
  border-radius: 0;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65);
}

.review-modal-close {
  position: absolute;
  z-index: 5;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: rgba(7, 12, 10, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.review-modal-layout {
  display: grid;
  min-height: 540px;
  grid-template-columns: 40% 60%;
}

.review-modal-gallery {
  display: grid;
  min-width: 0;
  padding: 20px;
  gap: 12px;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #0d100f;
}

.review-modal-main-image {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  background: #090c0b;
}

.review-modal-main-image img {
  width: auto;
  height: calc(100% - 28px);
  max-width: 84%;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.46);
}

.review-modal-thumbnails {
  display: grid;
  grid-auto-columns: minmax(72px, 110px);
  grid-auto-flow: column;
  gap: 10px;
  justify-content: center;
}

.review-modal-thumb {
  height: 68px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.55;
}

.review-modal-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.review-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-modal-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 94, 0.12), transparent 38%),
    #191d1b;
}

.review-modal-source {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-modal-copy blockquote {
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-style: italic;
  line-height: 1.35;
}

.review-modal-copy h3 {
  margin: 0;
  padding-top: 20px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* =====================================================
   CLIENT QUOTE
===================================================== */

.quote-band {
  color: var(--white);
  background-color: #351b1d;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.quote-band blockquote {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}

.quote-band cite {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =====================================================
   FINAL CTA
===================================================== */

.cta-band {
  color: var(--white);
  background-color: var(--dark-secondary);
}

.cta-title {
  max-width: 650px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .google-reviews {
    padding: 56px 0 60px;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .review-card {
    width: min(520px, 84vw);
    height: 250px;
    min-height: 0;
    grid-template-columns: 43% 57%;
  }

  .review-image {
    height: 250px;
    min-height: 0;
  }

  .review-copy {
    padding: 24px 22px;
  }

  .review-copy p {
    margin: 13px 0 18px;
    font-size: 1.05rem;
    -webkit-line-clamp: 4;
  }

  .review-copy footer {
    gap: 10px;
  }

  .review-modal-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .review-modal-gallery {
    min-height: 390px;
  }

  .review-modal-copy {
    padding: 38px 30px;
  }

  .quote-band {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .quote-band blockquote {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .quote-band cite {
    margin-top: 22px;
    font-size: 0.62rem;
    line-height: 1.7;
  }

  .cta-band {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .cta-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .cta-band .btn {
    width: 100%;
  }
}




/* ======================================================
   FOOTER
====================================================== */
.site-footer {
    position: relative;
    overflow: hidden;
    background-color: #07110f;
}

.site-footer::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: linear-gradient(to right,
            transparent,
            var(--gold),
            transparent);
}

.footer-top {
    position: relative;
    padding: 85px 0 0;
}

.footer-top::after {
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    content: "";
    background: radial-gradient(circle,
            rgba(179, 142, 89, 0.08),
            transparent 68%);
    pointer-events: none;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 65px;
    height: auto;
}

.footer-logo-text {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.15;
}

.footer-logo-text small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-description {
    max-width: 390px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.9;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.footer-social-links a:hover {
    color: var(--dark-bg);
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 13px;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 600;
}

.footer-heading::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    content: "";
    background-color: var(--gold);
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links li a {
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-links li a::before {
    display: inline-block;
    width: 0;
    height: 1px;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    background-color: var(--gold);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold);
}

.footer-links li a:hover::before {
    width: 13px;
    margin-right: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-contact li i {
    width: 15px;
    margin-top: 5px;
    color: var(--gold);
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-contact li a:hover {
    color: var(--gold);
}


/* Footer CTA */
.footer-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    padding: 35px 40px;
    background-color: rgba(179, 142, 89, 0.07);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.footer-cta-small {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-cta h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}


/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 0;
}

.site-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.72rem;
    font-weight: 400;
}

.footer-copyright a {
    color: var(--gold);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--white);
}

.footer-credit-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-policy-links {
    display: flex;
    gap: 25px;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    text-decoration: none;
}

.footer-policy-links a:hover {
    color: var(--gold);
}


/* ======================================================
   FLOATING WHATSAPP
====================================================== */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    background-color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-size: 1.65rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp:hover {
    color: var(--dark-bg);
    background-color: var(--gold-hover);
    transform: translateY(-4px);
}


/* ======================================================
   LARGE LAPTOPS
====================================================== */
@media (max-width: 1399px) {
    .header-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .desktop-navigation ul {
        gap: 1.25rem !important;
    }

    .hero-content {
        padding-left: 3.5rem;
        padding-right: 25px;
    }

    .hero-heading {
        font-size: clamp(3.1rem, 5vw, 5.5rem);
    }

    .hero-actions {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .hero-actions .btn {
        min-width: 320px;
    }
}


/* ======================================================
   TABLET AND SMALL LAPTOP
====================================================== */
@media (max-width: 1199px) {
    .hero-content {
        padding-left: 2.5rem;
    }

    .hero-heading {
        font-size: clamp(3rem, 5.2vw, 4.8rem);
    }

    .hero-divider {
        width: 65%;
    }
}


/* ======================================================
   TABLET / MOBILE HERO
====================================================== */
@media (max-width: 991.98px) {
    .main-header {
        padding: 18px 0;
    }

    .main-header.nav-scrolled,
    .site-inner-page .main-header {
        padding: 12px 0;
    }

    .site-inner-page {
        padding-top: 68px;
    }

    .logo-img {
        width: 50px;
    }

    .main-header.nav-scrolled .logo-img {
        width: 44px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-overlay {
        z-index: 1;
        background: linear-gradient(to bottom,
                rgba(9, 22, 19, 0.95) 0%,
                rgba(9, 22, 19, 0.89) 56%,
                rgba(9, 22, 19, 0.35) 100%);
    }

    .hero-container {
        position: relative;
        background:
            linear-gradient(rgba(9, 22, 19, 0.64),
                rgba(9, 22, 19, 0.88));
            /* url("/assets/img/ChatGPT Image Jul 13, 2026, 01_58_18 PM.png") center top / cover no-repeat; */
    }

    .hero-content-column {
        min-height: auto;
    }

    .hero-content {
        padding: 145px 40px 70px;
    }

    .hero-heading {
        max-width: 750px;
        font-size: clamp(3.2rem, 8vw, 5rem);
        line-height: 0.94;
    }

    .hero-description {
        max-width: 620px;
    }

    .hero-actions {
        flex-direction: row !important;
        align-items: stretch;
    }

    .hero-actions .btn {
        min-width: auto;
    }

    .right-img {
        z-index: 2;
        min-height: 600px;
        background-position: center top;
    }

    .footer-top {
        padding-top: 70px;
    }

    .footer-cta {
        margin-top: 55px;
    }
}


/* ======================================================
   MOBILE PHONES
====================================================== */
@media (max-width: 767.98px) {
    .header-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .logo-img {
        width: 46px;
    }

    .logo-text {
        font-size: 0.84rem;
    }

    .logo-text small {
        font-size: 0.56rem;
        letter-spacing: 1px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

    .hero-content {
        padding: 130px 22px 55px;
    }

    .hero-heading {
        font-size: clamp(2.65rem, 12vw, 4.2rem);
        line-height: 0.95;
    }

    .hero-divider {
        width: 80%;
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column !important;
        margin-bottom: 2.2rem !important;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 54px;
        padding-right: 15px !important;
        padding-left: 15px !important;
        font-size: 0.68rem;
        white-space: normal;
    }

    .hero-features {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 14px !important;
    }

    .hero-features>div {
        font-size: 0.68rem;
    }

    .hero-footer-content>p:first-child {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero-footer-content>p:last-child {
        font-size: 0.73rem;
    }

    .right-img {
        min-height: 520px;
        background-position: 62% top;
    }

    .footer-top {
        padding-top: 60px;
    }

    .footer-heading {
        margin-bottom: 22px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 45px;
        padding: 30px 24px;
    }

    .footer-cta .btn {
        width: 100%;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-policy-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .floating-whatsapp {
        right: 17px;
        bottom: 17px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}


/* ======================================================
   SMALL MOBILE PHONES
====================================================== */
@media (max-width: 480px) {
    .main-header {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-wrapper {
        gap: 10px !important;
    }

    .logo-img {
        width: 42px;
    }

    .logo-text {
        max-width: 145px;
        font-size: 0.78rem;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .hero-content {
        padding: 115px 17px 50px;
    }

    .hero-heading {
        font-size: clamp(2.35rem, 12.7vw, 3.5rem);
        line-height: 0.96;
    }

    .hero-divider {
        width: 90%;
    }

    .hero-description {
        font-size: 0.88rem;
    }

    .hero-actions .btn {
        font-size: 0.62rem;
        letter-spacing: 1.1px;
    }

    .right-img {
        min-height: 440px;
        background-position: 64% top;
    }

    .footer-logo {
        width: 55px;
    }

    .footer-logo-text {
        font-size: 1.05rem;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
    }
}


/* ======================================================
   VERY SMALL MOBILE PHONES
====================================================== */
@media (max-width: 360px) {
    .logo-text {
        max-width: 120px;
        font-size: 0.7rem;
    }

    .logo-text small {
        font-size: 0.5rem;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-actions .btn {
        font-size: 0.58rem;
    }

    .mobile-offcanvas .offcanvas-header,
    .mobile-offcanvas .offcanvas-body {
        padding-right: 18px;
        padding-left: 18px;

    }
}

.offcanvas-body {

    /* position: absolute; */
    z-index: 9999;
}

/* ======================================================
   REDUCED MOTION ACCESSIBILITY
====================================================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 520px) {
  .reviews-viewport::before,
  .reviews-viewport::after {
    display: none;
  }

  .reviews-track {
    gap: 14px;
    padding-inline: 18px;
  }

  .review-card {
    width: calc(100vw - 36px);
    max-width: 390px;
    height: 420px;
    min-height: 420px;
    flex: 0 0 auto;
    grid-template-columns: 1fr;
  }

  .review-image {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .review-image::after {
    background: linear-gradient(0deg, rgba(7, 10, 9, 0.3), transparent 45%);
  }

  .review-image img,
  .review-card:nth-child(n) .review-image img {
    min-height: 180px;
    object-position: 50% 28%;
  }

  .review-copy {
    height: 240px;
    min-height: 240px;
  }

  .review-copy footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-modal .modal-dialog {
    padding: 8px;
    margin: 0;
  }

  .review-modal-gallery {
    min-height: 315px;
    padding: 12px;
  }

  .review-modal-main-image {
    min-height: 220px;
  }

  .review-modal-main-image img {
    height: calc(100% - 18px);
    max-width: 90%;
  }

  .review-modal-thumb {
    height: 56px;
  }

  .review-modal-copy {
    padding: 32px 24px;
  }

  .review-modal-copy blockquote {
    margin: 22px 0 26px;
    font-size: 1.45rem;
  }
}
