/*
 * ============================================================
 * THE LEATHER RESTORATORS - MAIN STYLESHEET
 * ============================================================
 * 
 * TABLE OF CONTENTS:
 * ------------------
 * 1.  FONTS & CUSTOM FONT FACES
 * 2.  CSS VARIABLES (Root/Theme Colors)
 * 3.  HEADER & NAVIGATION
 * 4.  MOBILE MENU (Burger & Slide-out)
 * 5.  HERO SECTION (Full-screen video banner)
 * 6.  HERITAGE/ABOUT SECTION (Craftsmanship intro)
 * 7.  MARQUEE/SCROLLING TEXT STRIP
 * 8.  ANIMATIONS (Fade-up, Reveal, Card effects)
 * 9.  BEFORE/AFTER IMAGE SLIDER (Transformations)
 * 10. SERVICES GRID (Recoloring, Repair, Cleaning cards)
 * 11. OUR WORK SECTION HEADER
 * 12. ATELIER BAG/SOFA/SHOE RESTORATION SECTIONS
 * 13. SPARKLE CURSOR EFFECT
 * 14. PARTNER/HOSPITALITY STRIP
 * 15. WHY CHOOSE US / TRUST SECTION
 * 16. FOOTER
 * 17. MUSIC TOGGLE BUTTON
 * 18. POPUP CONSULTATION FORM
 * 19. THANK YOU SCREEN
 * 20. FLOATING WHATSAPP BUTTON
 * 
 * ============================================================
 */


/* ============================================================
   1. FONTS & CUSTOM FONT FACES
   - fontto: Display/heading font
   - fontct: Cinzel-style serif for titles
   - fontfm: Body/UI font (similar to Futura)
   ============================================================ */
@font-face {
      font-family: 'fontto';
      src: url('assets/fontto.ttf') format('truetype'),
        url('assets/fontto.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

@font-face {
      font-family: "fontct";
      src: url("assets/fontct.woff2") format("woff2");
      font-display: swap;
    }

    @font-face {
      font-family: "fontfm";
      src: url("assets/fontfm.woff2") format("woff2");
      font-display: swap;
    }

    @font-face {
      font-family: "fontto";
      src: url("assets/fontto.ttf") format("truetype");
      font-display: swap;
    }

    :root {
      --mo: #FBF8F4;
      --gold-a: #A47149;
      --gold-b: #E0C9A6;
      --bg-dark: #1A120E;
      --ease: cubic-bezier(.22, .61, .36, 1);
    }

    .tlr-header {
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 50;
      padding: 0.8rem 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent);
    }

    .tlr-header__inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 2vw;
      transition: transform 0.4s var(--ease);
    }

    .tlr-nav {
      display: flex;
      align-items: center;
      gap: 1.6rem;
    }

    .tlr-nav-left {
      justify-self: start;
    }

    .tlr-nav-right {
      justify-self: end;
    }

    .tlr-nav a {
      font-family: "fontfm";
      letter-spacing: .12em;
      color: var(--mo);
      text-decoration: none;
      opacity: .9;
      position: relative;
      padding: .3rem 0;
      transition: color .35s var(--ease);
    }

    .tlr-nav a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -2px;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--gold-a), var(--gold-b));
      transition: all .35s var(--ease);
      transform: translateX(-50%);
      opacity: 0;
    }

    .tlr-nav a:hover {
      color: var(--gold-b);
      opacity: 1;
    }

    .tlr-nav a:hover::after {
      width: 60%;
      opacity: 1;
    }

    .tlr-logo {
      font-family: "fontfm";
      font-size: clamp(1.2rem, 2.1vw, 1.6rem);
      letter-spacing: .22em;
      color: var(--mo);
      text-decoration: none;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
      margin: 0;
      text-align: center;
    }

    /* ===== BURGER (unchanged) ===== */
    .tlr-burger {
      display: none;
      background: none;
      border: 0;
      cursor: pointer;
      position: absolute;
      right: 2vw;
      top: 50%;
      transform: translateY(-70%);
      z-index: 60;
    }

    .tlr-burger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--mo);
      margin: 5px 0;
      border-radius: 1px;
      transition: all 0.3s var(--ease);
    }

    .tlr-burger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .tlr-burger.active span:nth-child(2) {
      opacity: 0;
    }

    .tlr-burger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ===== MOBILE MENU (unchanged) ===== */
    .tlr-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100vh;
      background: #1A120E;
      color: var(--mo);
      z-index: 100;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 3rem 2rem;
      transition: left 0.45s var(--ease);
      box-shadow: 8px 0 30px rgba(0, 0, 0, 0.4);
    }

    .tlr-menu.open {
      left: 0;
    }

    .tlr-menu__close {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: var(--gold-b);
      font-size: 2rem;
      cursor: pointer;
    }

    .tlr-menu__nav {
      display: flex;
      flex-direction: column;
      gap: 1.6rem;
      text-align: left;
    }

    .tlr-menu__nav a {
      font-family: "fontfm";
      font-size: 1.15rem;
      color: var(--mo);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      transition: color .3s var(--ease);
    }

    .tlr-menu__nav a:hover {
      color: var(--gold-b);
    }

    /* ===== RESPONSIVE bits that affect HEADER (unchanged) ===== */
    @media(max-width:992px) {
      .tlr-header__inner {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
      }

      .tlr-nav {
        display: none;
      }

      .tlr-burger {
        display: block;
        right: 5vw;
        top: 50%;
        transform: translateY(-50%);
      }

      .tlr-logo {
        font-size: 1.1rem;
        text-align: center;
      }
    }

    @media(min-width:1200px) {
      .tlr-nav {
        gap: 2rem;
      }
    }

    /* ==== FIX HEADER OVERLAP ON SMALL SCREENS ==== */
    @media (max-width: 600px) {
      .tlr-header__inner {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.6rem 0;
      }

      .tlr-logo {
        font-size: 0.95rem;
        line-height: 1.2;
        text-align: center;
        max-width: 90%;
        white-space: normal;
      }

      .tlr-burger {
        position: absolute;
        top: 0.5rem;
        right: 5vw;
        transform: none;
      }
    }

.tlr-hero {
      position: relative;
      height: 100vh;
      background: #1A120E;
      overflow: hidden;
      color: #FBF8F4;
      display: flex;
      align-items: center;
      padding-top: 80px;
      /* keeps hero below header */
    }

    #bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.82) contrast(1.05) saturate(1.2);
    }

    .tlr-hero__veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(26, 18, 14, 0.25) 0%, rgba(26, 18, 14, 0.45) 35%, rgba(26, 18, 14, 0.65) 100%);
      z-index: 2;
    }

    .tlr-hero__grain {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(rgba(224, 201, 166, .06), transparent 40%) 0 0/4px 4px,
        repeating-linear-gradient(90deg, rgba(224, 201, 166, .03) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(0deg, rgba(224, 201, 166, .03) 0 1px, transparent 1px 3px);
      opacity: .45;
      z-index: 3;
    }

    .tlr-hero__copy {
      position: relative;
      z-index: 10;
      margin-left: 8vw;
      max-width: 700px;
    }

    .tlr-hero__copy h1 {
      font-family: "fontfm";
      font-size: clamp(2.5rem, 6vw, 5rem);
      line-height: 1.05;
      background: linear-gradient(135deg, #A47149, #E0C9A6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .tlr-hero__copy p {
      font-family: "fontfm";
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .88);
      margin-bottom: 2rem;
    }

    .tlr-cta {
      display: inline-block;
      font-family: "fontfm";
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: .8rem 1.8rem;
      border: 1px solid #A47149;
      border-radius: 999px;
      color: #FBF8F4;
      text-decoration: none;
      transition: all .35s cubic-bezier(.22, .61, .36, 1);
    }

    .tlr-cta:hover {
      border-color: #E0C9A6;
      background: linear-gradient(135deg, #A47149, #E0C9A6);
      color: #2E2219;
      box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
    }

    @media(max-width:992px) {
      .tlr-hero__copy {
        text-align: center;
        margin: 0 auto;
        padding: 0 6vw;
      }


    }

/* ==================== FONT ==================== */
    @font-face {
      font-family: "fontfm";
      src: url("assets/fontfm.woff2") format("woff2");
      font-display: swap;
    }

    /* ==================== COLORS ==================== */
    :root {
      --heritage-bg: #FBF8F4;
      --heritage-ink: #2E2219;
      --heritage-gold-a: #A47149;
      --heritage-gold-b: #E0C9A6;
      --heritage-ease: cubic-bezier(.22, .61, .36, 1);
    }

    /* ==================== SECTION ==================== */
    .heritage-lux-section {
      background: var(--heritage-bg);
      color: var(--heritage-ink);
      padding: 14vh 8vw;
      font-family: "fontfm", sans-serif;
    }

    .heritage-lux-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8vw;
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ==================== TEXT ==================== */
    .heritage-lux-text {
      flex: 1;
      max-width: 560px;
    }

    .heritage-lux-sub {
      font-size: 0.85rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--heritage-gold-a);
      margin-bottom: 1.2rem;
    }

    .heritage-lux-title {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      line-height: 1.15;
      font-weight: 400;
      color: var(--heritage-ink);
      margin-bottom: 1.5rem;
    }

    .heritage-lux-title span {
      background: linear-gradient(135deg, var(--heritage-gold-a), var(--heritage-gold-b));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .heritage-lux-line {
      width: 80px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--heritage-gold-a), var(--heritage-gold-b));
      margin: 2rem 0;
      position: relative;
      overflow: hidden;
    }

    .heritage-lux-line::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
      animation: heritageGoldShine 3.5s linear infinite;
      opacity: 0.4;
    }

    @keyframes heritageGoldShine {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(100%);
      }
    }

    .heritage-lux-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      color: #3A2F28;
      margin-bottom: 2.6rem;
    }

    /* ==================== CERTIFICATION ==================== */
    .heritage-lux-cert {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
      align-items: center;
    }

    /* ==================== BUTTON ==================== */
    .heritage-lux-btn {
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      padding: 0.9rem 2.4rem;
      border-radius: 999px;
      border: 1px solid var(--heritage-gold-a);
      color: var(--heritage-ink);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.45s var(--heritage-ease);
    }

    .heritage-lux-btn:hover {
      background: linear-gradient(135deg, var(--heritage-gold-a), var(--heritage-gold-b));
      color: #fff;
      box-shadow: 0 8px 28px rgba(164, 113, 73, 0.35);
    }

    /* ==================== IMAGE SIDE ==================== */
    .heritage-lux-media {
      flex: 1;
      position: relative;
    }

    .heritage-lux-frame {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(164, 113, 73, 0.25);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
      transition: transform 1.2s var(--heritage-ease);
    }

    .heritage-lux-frame:hover {
      transform: translateY(-6px);
    }

    .heritage-lux-img {
      width: 100%;
      display: block;
      border-radius: 18px;
      transition: transform 1.2s var(--heritage-ease);
    }

    .heritage-lux-frame:hover .heritage-lux-img {
      transform: scale(1.04);
    }

    /* ==================== STATS ==================== */
    .heritage-lux-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2vw;
      margin-top: 2.8rem;
      padding-top: 1.6rem;
      border-top: 1px solid rgba(164, 113, 73, 0.25);
    }

    .heritage-lux-stat {
      text-align: center;
      flex: 1;
    }

    .heritage-lux-stat h3 {
      font-size: 2.3rem;
      background: linear-gradient(135deg, var(--heritage-gold-a), var(--heritage-gold-b));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.3rem;
    }

    .heritage-lux-stat p {
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #3A2F28;
    }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 992px) {
      .heritage-lux-inner {
        flex-direction: column;
        text-align: center;
      }

      .heritage-lux-line {
        margin: 1.5rem auto;
      }

      .heritage-lux-btn {
        margin: 0 auto;
      }

      .heritage-lux-cert {
        justify-content: center;
      }

      .heritage-lux-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
      }
    }

    @media (max-width: 600px) {
      .heritage-lux-section {
        padding: 10vh 6vw;
      }

      .heritage-lux-title {
        font-size: 2.1rem;
      }

      .heritage-lux-stat {
        flex: 1 1 45%;
      }
    }

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap');

    .luxury-marquee {
      width: 100%;
      overflow: hidden;
      background: #1b1b1b;
      padding: 1.2rem 0;
      border-top: 1px solid #a47149;
      border-bottom: 1px solid #a47149;
    }

    .luxury-track {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      width: fit-content;
      animation: scroll-marquee 28s linear infinite;
    }

    .marquee-item {
      white-space: nowrap;
      font-size: 1.4rem;
      font-weight: 600;
      font-family: 'Outfit', sans-serif;
      background: linear-gradient(to right, #f8e2c0, #caa87a, #a47149);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      letter-spacing: 2px;
    }

    .gola {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(45deg, #f8e2c0, #a47149);
      flex-shrink: 0;
    }

    @keyframes scroll-marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

/* ===== General Animation Styles ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Heading Reveal */
    .reveal-text {
      opacity: 0;
      transform: translateY(100%);
      display: inline-block;
      transition: all 1s ease;
    }

    .reveal-text.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Underline Grow */
    .underline-grow {
      width: 0;
      transition: width 1s ease;
    }

    .underline-grow.show {
      width: 5rem;
      /* ~80px underline */
    }

    /* Card Animation */
    .card-animate {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .card-animate.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Button Glow */
    .premium-btn {
      transition: all 0.4s ease;
    }

    .premium-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 30px rgba(164, 113, 73, 0.4);
    }

    /* ===== Responsive ===== */
    @media (max-width: 640px) {
      .process-header h2 {
        font-size: 1.75rem;
        line-height: 2.25rem;
      }

      .process-header p,
      .fade-up {
        font-size: 0.95rem;
      }

      .card-animate {
        padding: 1rem;
      }
    }

/* --- Work Section --- */
    .image-compare {
      padding: 70px 15px;
      /* reduced from 140px */
      background: linear-gradient(180deg, #faf8f6, #f3efea);
      text-align: center;
    }

    .image-compare h2 {
      font-family: "fontfm", serif;
      font-size: 2.6rem;
      /* reduced from 3rem */
      color: #2e2219;
      margin-bottom: 15px;
      /* reduced */
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .image-compare .underline {
      width: 100px;
      height: 4px;
      margin: 0 auto 40px;
      /* reduced from 80px */
      background: linear-gradient(90deg, #a47149, #e0c9a6);
      border-radius: 2px;
    }

    .slider-container {
      max-width: 900px;
      margin: 0 auto 45px;
      /* reduced from 90px */
    }

    /* ===== Luxury Blur Placeholder ===== */

    .slider::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg,
          #f5efe9 25%,
          #ede4d8 37%,
          #f5efe9 63%);
      background-size: 400% 100%;
      animation: shimmer 1.6s infinite linear;
      filter: blur(14px);
      z-index: 0;
    }

    .slider.loaded::before {
      display: none;
    }

    @keyframes shimmer {
      0% {
        background-position: 100% 0;
      }

      100% {
        background-position: -100% 0;
      }
    }


    .slider-container h3 {
      margin-top: 15px;
      /* reduced from 25px */
      font-family: "Lato", sans-serif;
      font-size: 1.1rem;
      color: #5a4b3c;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .load-more-btn {
      margin: 50px auto 0;
      display: block;
      padding: 14px 36px;
      border-radius: 40px;
      border: 1px solid #a47149;
      background: linear-gradient(135deg, #a47149, #e0c9a6);
      color: #fff;
      font-size: 14px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s ease;
    }

    .load-more-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    }



    .compare-hint {
      margin-top: 4px;
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #7A6652;
      opacity: 0.85;
      pointer-events: none;
    }


    /* Slider Core */
    .slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .slider img {
      width: 100%;
      height: auto;
      display: block;
      pointer-events: none;
      user-select: none;
    }

    .before {
      position: relative;
      z-index: 1;
    }

    .after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 2;
      clip-path: inset(0 50% 0 0);
    }

    /* Handle */
    .slider-handle {
      position: absolute;
      top: 0;
      left: 50%;
      width: 3px;
      height: 100%;
      background: #a47149;
      z-index: 3;
      cursor: ew-resize;
    }

    .slider-handle::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 32px;
      height: 32px;
      background: #a47149;
      border: 3px solid #fff;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }


    /* --- SVG arrows inside slider handle (visual only) --- */
    .slider-handle::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);

      width: 18px;
      height: 10px;

      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 20'%3E%3Cpath d='M14 2 L6 10 L14 18' fill='none' stroke='%23e6c89a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 2 L30 10 L22 18' fill='none' stroke='%23e6c89a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;

      pointer-events: none;
      /* CRITICAL: no behaviour change */
    }


    /* Labels */
    .slider::before,
    .slider::after {
      position: absolute;
      top: 12px;
      font-size: 0.85rem;
      font-family: "Lato", sans-serif;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      padding: 4px 8px;
      border-radius: 4px;
      z-index: 5;
    }

    .slider::before {
      content: "BEFORE";
      left: 12px;
    }

    .slider::after {
      content: "AFTER";
      right: 12px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .image-compare h2 {
        font-size: 2.2rem;
      }

      .slider-container {
        margin-bottom: 50px;
      }

      .slider-handle::before {
        width: 28px;
        height: 28px;
      }
    }

/* ==================== FONTS ==================== */
    @font-face {
      font-family: "fontfm";
      src: url("assets/fontfm.woff2") format("woff2");
      font-display: swap;
    }

    @font-face {
      font-family: "fontto";
      src: url("assets/fontto.ttf") format("truetype");
      font-display: swap;
    }

    /* ==================== THEME ==================== */
    :root {
      --lux-bg: #FBF8F4;
      --lux-ink: #2E2219;
      --lux-gold-a: #A47149;
      --lux-gold-b: #E0C9A6;
      --lux-ease: cubic-bezier(.22, .61, .36, 1);
    }

    /* ==================== SECTION ==================== */
    .atelierLux-section {
      background: var(--lux-bg);
      color: var(--lux-ink);
      padding: 9.8vh 8vw;
      /* 30% reduced top & bottom spacing */
      position: relative;
      overflow: hidden;
      font-family: "fontfm", sans-serif;
    }

    .atelierLux-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("assets/pattern.svg") repeat;
      opacity: 0.02;
      pointer-events: none;
    }

    /* ==================== HEAD ==================== */
    .atelierLux-head {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 8vh;
      /* reduced bottom spacing */
    }

    .atelierLux-subtitle {
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: var(--lux-gold-a);
      margin-bottom: 0.6rem;
      /* tighter gap to heading */
    }

    .atelierLux-heading {
      font-family: "fontct", serif;
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 400;
      letter-spacing: 0.03em;
      line-height: 1.1;
      /* slightly tighter */
      margin-bottom: 1.1rem;
      /* added for precise spacing */
    }

    .atelierLux-heading span {
      background: linear-gradient(135deg, var(--lux-gold-a), var(--lux-gold-b));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .atelierLux-line {
      width: 90px;
      height: 2px;
      margin: 1.2rem auto;
      /* reduced from 2rem */
      background: linear-gradient(90deg, var(--lux-gold-a), var(--lux-gold-b));
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }

    .atelierLux-line::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
      animation: atelierLux-glint 3s linear infinite;
      opacity: 0.5;
    }

    @keyframes atelierLux-glint {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(100%);
      }
    }

    .atelierLux-caption {
      font-size: 1.05rem;
      color: #3A2F28;
      opacity: 0.9;
      max-width: 600px;
      margin: 0.5rem auto 0;
      /* tightened gap from line */
      line-height: 1.6;
    }

    /* ==================== GRID ==================== */
    .atelierLux-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ==================== CARD ==================== */
    .atelierLux-card {
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(164, 113, 73, 0.25);
      border-radius: 28px;
      overflow: hidden;
      transition: transform 0.7s var(--lux-ease), box-shadow 0.7s var(--lux-ease);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
      backdrop-filter: blur(6px);
    }

    .atelierLux-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
    }

    /* ==================== IMAGE ==================== */
    .atelierLux-imgwrap {
      position: relative;
      overflow: hidden;
    }

    .atelierLux-imgwrap img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 1.2s var(--lux-ease), opacity 1.2s var(--lux-ease);
    }

    .atelierLux-card:hover img {
      transform: scale(1.08);
      opacity: 0.9;
    }

    /* ICON */
    .atelierLux-icon {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 48px;
      height: 48px;
      opacity: 0;
      transform: translateY(15px);
      transition: all 0.6s var(--lux-ease);
    }

    .atelierLux-card:hover .atelierLux-icon {
      opacity: 1;
      transform: translateY(0);
    }

    .atelierLux-icon svg {
      width: 100%;
      height: 100%;
      fill: url(#luxGradGold);
    }

    /* ==================== TEXT ==================== */
    .atelierLux-text {
      padding: 2.2rem 2rem 2.4rem;
    }

    .atelierLux-text h3 {
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: linear-gradient(135deg, var(--lux-gold-a), var(--lux-gold-b));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.7rem;
    }

    .atelierLux-text p {
      font-size: 0.9rem;
      line-height: 1.75;
      color: #3E3126;
      opacity: 0.95;
    }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 768px) {
      .atelierLux-heading {
        font-size: 2.3rem;
      }

      .atelierLux-caption {
        font-size: 1rem;
      }

      .atelierLux-text {
        padding: 1.8rem;
      }

      .atelierLux-text p {
        font-size: 0.7rem;

      }

    }

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap');

    .luxury-marquee {
      width: 100%;
      overflow: hidden;
      background: #1b1b1b;
      padding: 1.2rem 0;
      border-top: 1px solid #a47149;
      border-bottom: 1px solid #a47149;
    }

    .luxury-track {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      width: fit-content;
      animation: scroll-marquee 28s linear infinite;
    }

    .marquee-item {
      white-space: nowrap;
      font-size: 1.4rem;
      font-weight: 600;
      font-family: 'Outfit', sans-serif;
      background: linear-gradient(to right, #f8e2c0, #caa87a, #a47149);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      letter-spacing: 2px;
    }

    .gola {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(45deg, #f8e2c0, #a47149);
      flex-shrink: 0;
    }

    @keyframes scroll-marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

/* ====================== OUR WORK SECTION ====================== */
    .tlrWork-section {
      background: linear-gradient(to bottom, #FBF8F4 0%, #F7F4EE 60%, #F5F1E9 100%);
      padding: 5vh 6vw 3vh;
      text-align: center;
      position: relative;
      overflow: hidden;
      font-family: "fontfm", sans-serif;
      margin: 0;
    }

    /* Subtle gold luminance overlay */
    .tlrWork-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("assets/pattern.svg") repeat, radial-gradient(circle at 50% 10%, rgba(224, 201, 166, 0.15), transparent 60%);
      background-blend-mode: soft-light;
      opacity: 0.25;
      pointer-events: none;
      z-index: 0;
    }

    .tlrWork-inner {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      z-index: 2;
      animation: tlrFadeUp 1.2s cubic-bezier(.22, .61, .36, 1) both;
    }

    /* ====================== TYPOGRAPHY ====================== */
    .tlrWork-subtitle {
      letter-spacing: 0.28em;
      text-transform: uppercase;
      font-size: 0.92rem;
      color: #A47149;
      margin-bottom: 0.8rem;
      opacity: 0.88;
      font-weight: 500;
      animation: fadeIn 1.2s ease-in both;
    }

    .tlrWork-heading {
      font-family: "fontfm", serif;
      font-size: clamp(2.8rem, 6vw, 4.2rem);
      font-weight: 400;
      letter-spacing: 0.02em;
      line-height: 1.08;
      color: #2E2219;
      margin-bottom: 1.2rem;
      position: relative;
      display: inline-block;
      animation: shimmerIn 1.4s ease both;
    }

    .tlrWork-heading span {
      background: linear-gradient(120deg, #A47149 10%, #E0C9A6 40%, #A47149 90%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: shimmerMove 6s linear infinite;
    }

    /* Caption with calm rhythm */
    .tlrWork-caption {
      font-size: 1.08rem;
      color: #3A2F28;
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.75;
      opacity: 0.92;
      font-weight: 400;
      animation: fadeIn 1.4s ease-in 0.3s both;
    }

    /* ====================== ANIMATIONS ====================== */
    @keyframes shimmerMove {
      0% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 200% 50%;
      }
    }

    @keyframes shimmerIn {
      0% {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(15px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes tlrFadeUp {
      0% {
        opacity: 0;
        transform: translateY(25px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ====================== DECORATIVE LINE ====================== */
    .tlrWork-heading::after {
      content: "";
      display: block;
      width: 90px;
      height: 2px;
      margin: 1.2rem auto 0;
      background: linear-gradient(90deg, #A47149, #E0C9A6, #A47149);
      border-radius: 2px;
      opacity: 0.8;
    }

    /* ====================== RESPONSIVE ====================== */
    @media (max-width: 992px) {
      .tlrWork-section {
        padding: 4vh 5vw 2.5vh;
      }

      .tlrWork-heading {
        font-size: clamp(2.2rem, 5vw, 3rem);
      }

      .tlrWork-caption {
        font-size: 1rem;
        line-height: 1.6;
      }
    }

    @media (max-width: 600px) {
      .tlrWork-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.22em;
      }

      .tlrWork-heading {
        font-size: 2.1rem;
      }
    }

/* ==========================================================
   ATELIER BAG RESTORATION SERIES LUXURY SECTION STYLES
   Fixed spacing, seamless section joins, cinematic balance
========================================================== */

    /* ---------- FONTS ---------- */
    @font-face {
      font-family: "fontfm";
      src: url("assets/fontfm.woff2") format("woff2");
      font-display: swap;
    }

    @font-face {
      font-family: "fontto";
      src: url("assets/fontto.ttf") format("truetype");
      font-display: swap;
    }

    /* ---------- THEME COLORS ---------- */
    :root {
      --bag-bg: #FBF8F4;
      --bag-ink: #2E2219;
      --bag-gold-a: #A47149;
      --bag-gold-b: #E0C9A6;
      --bag-soft-grad: linear-gradient(145deg, #F6EFE7, #EDE1D4);
      --bag-ease: cubic-bezier(.22, .61, .36, 1);
    }

    /* ---------- BASE SECTION ---------- */
    .atelierBag-section {
      width: 100%;
      background: var(--bag-bg);
      color: var(--bag-ink);
      position: relative;
      margin: 0;
      padding: 0;
      overflow: hidden;
      border-top: 1px solid rgba(224, 201, 166, 0.2);
    }

    /* remove gaps between sections */
    .atelierBag-section+.atelierBag-section {
      margin-top: -1px;
    }

    /* ---------- INNER GRID ---------- */
    .atelierBag-inner {
      display: flex;
      align-items: stretch;
      justify-content: center;
      width: 100%;
      min-height: 88vh;
    }

    /* alternate layout */
    .atelierBag-section.reverse .atelierBag-inner {
      flex-direction: row-reverse;
    }

    /* ---------- VIDEO PANEL ---------- */
    .atelierBag-media {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .atelierBag-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(1) contrast(1.05) saturate(1.1);
      transition: transform 2s var(--bag-ease);
    }

    .atelierBag-media:hover video {
      transform: scale(1.03);
    }

    .atelierBag-overlay {
      position: absolute;
      inset: 0;
      background: transparent;
      z-index: 1;
    }

    /* ---------- TEXT PANEL ---------- */
    .atelierBag-content {
      flex: 1;
      background: var(--bag-soft-grad);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6vh 4vw;
      z-index: 2;
    }

    .atelierBag-text {
      max-width: 580px;
      position: relative;
    }

    .atelierBag-text::before {
      content: "";
      position: absolute;
      left: -40px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, #A47149 30%, #E0C9A6 70%, transparent);
      opacity: 0.6;
    }

    /* ---------- TYPOGRAPHY ---------- */
    .atelierBag-subtitle {
      font-family: "fontfm";
      font-size: 0.85rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #A47149;
      margin-bottom: 1rem;
    }

    .atelierBag-text h2 {
      font-family: "fontct", serif;
      font-size: clamp(2.6rem, 4vw, 3.8rem);
      line-height: 1.2;
      margin-bottom: 1.8rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      background: linear-gradient(135deg, var(--bag-gold-a), var(--bag-gold-b));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .atelierBag-text p {
      font-family: "fontfm", sans-serif;
      font-size: 1.05rem;
      line-height: 1.85;
      color: #3A2F28;
      opacity: 0.92;
      margin-bottom: 2.6rem;
    }

    /* ---------- BUTTON ---------- */
    .atelierBag-btn {
      display: inline-block;
      padding: 0.9rem 2.6rem;
      font-family: "fontfm", sans-serif;
      font-size: 0.92rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #2E2219;
      background: linear-gradient(135deg, var(--bag-gold-a), var(--bag-gold-b));
      border-radius: 999px;
      text-decoration: none;
      box-shadow: 0 10px 28px rgba(164, 113, 73, 0.25);
      transition: all 0.4s var(--bag-ease);
    }

    .atelierBag-btn:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, var(--bag-gold-b), var(--bag-gold-a));
      box-shadow: 0 12px 40px rgba(164, 113, 73, 0.35);
    }

    /* ---------- MOBILE ---------- */
    .atelierBag-mobileText {
      display: none;
    }

    @media (max-width: 992px) {
      .atelierBag-inner {
        flex-direction: column;
        min-height: auto;
      }

      .atelierBag-content {
        display: none;
      }

      .atelierBag-mobileText {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 55px 25px 65px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 70%);
        z-index: 2;
      }

      .atelierBag-mobileText h2 {
        font-family: "fontct", serif;
        font-size: 2.2rem;
        letter-spacing: 0.12em;
        color: #fff;
        margin-bottom: 1rem;
      }

      .atelierBag-mobileText p {
        font-family: "fontfm", sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        color: #f5f5f5;
        margin-bottom: 1.6rem;
      }

      .atelierBag-mobileText .atelierBag-btn {
        background: linear-gradient(135deg, var(--bag-gold-a), var(--bag-gold-b));
        color: #2E2219;
        font-weight: 500;
        border-radius: 999px;
        padding: 12px 32px;
        font-size: 0.85rem;
        box-shadow: 0 8px 24px rgba(164, 113, 73, 0.3);
      }
    }

    @media (max-width: 600px) {
      .atelierBag-mobileText {
        padding: 38px 20px 55px;
      }

      .atelierBag-mobileText h2 {
        font-size: 1.8rem;
      }

      .atelierBag-mobileText p {
        font-size: 0.9rem;
      }
    }

.sparkle {
      position: absolute;
      width: 6px;
      height: 6px;
      background: radial-gradient(circle, #f8e2c0 0%, #caa87a 60%, transparent 100%);
      border-radius: 50%;
      opacity: 0.8;
      pointer-events: none;
      animation: sparkle-fade 0.8s ease-out forwards;
      filter: drop-shadow(0 0 4px #f8e2c0);
    }

    @keyframes sparkle-fade {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      100% {
        transform: scale(0.2);
        opacity: 0;
      }
    }

/* ================== LUXURY PARTNER STRIP ================== */

    .tlr-partner-strip {
      position: relative;
      background:
        radial-gradient(1200px 360px at 20% 0%, rgba(255, 255, 255, 0.45), transparent 65%),
        linear-gradient(180deg, #f7f3ed, #f2ede6);
      border-top: 1px solid rgba(164, 113, 73, 0.15);
      border-bottom: 1px solid rgba(164, 113, 73, 0.15);
      overflow: hidden;
    }

    /* ---------- FULL BACKGROUND SVG (FIXED) ---------- */

    .tlr-partner-strip::before {
      content: "";
      position: absolute;
      inset: 0;

      background-image: url("/assets/ssscribble.svg");
      background-repeat: no-repeat;
      background-size: cover;
      /* 🔑 FULL WIDTH */
      background-position: center center;
      /* 🔑 CENTERED */

      opacity: 0.18;
      /* 🔑 LUXURY SUBTLE */
      z-index: 1;
      pointer-events: none;
    }

    /* ---------- CONTENT CONTAINER ---------- */

    .tlr-partner-inner {
      position: relative;
      z-index: 2;
      /* 🔑 ABOVE SVG */
      max-width: 1280px;
      margin: 0 auto;
      padding: 76px 32px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 72px;
    }

    /* ---------- TEXT ---------- */

    .tlr-partner-text {
      max-width: 620px;
    }

    .tlr-partner-eyebrow {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: #9b7a5a;
      margin-bottom: 16px;
    }

    .tlr-partner-text h4 {
      font-family: "fontct", serif;
      font-size: 2.2rem;
      line-height: 1.25;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #2e2219;
      margin-bottom: 18px;
    }

    .tlr-partner-text p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #6a584b;
      margin: 0;
    }

    /* ---------- LOGO ---------- */

    .tlr-partner-logo-wrap {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .tlr-partner-logo {
      height: 170px;
      max-width: 540px;
      width: auto;
      object-fit: contain;
      opacity: 0.95;
      filter: saturate(0.9);
    }

    /* ---------- MOBILE (REDUCED HEIGHT) ---------- */

    @media (max-width: 768px) {
      .tlr-partner-inner {
        grid-template-columns: 1fr;
        padding: 28px 18px;
        /* ⬇️ was 58px → ~50% */
        gap: 18px;
        /* ⬇️ was 38px */
        text-align: center;
      }

      .tlr-partner-logo-wrap {
        justify-content: center;
      }

      .tlr-partner-logo {
        height: 85px;
        /* ⬇️ was 120px */
        max-width: 260px;
      }

      .tlr-partner-text h4 {
        font-size: 1.35rem;
        /* subtle scale-down */
        line-height: 1.2;
      }

      .tlr-partner-text p {
        font-size: 0.88rem;
        line-height: 1.55;
      }

      .tlr-partner-strip::before {
        background-size: 150%;
        background-position: center top;
        opacity: 0.1;
      }
    }

@font-face {
      font-family: "fontct";
      src: url("assets/fontct.woff2") format("woff2");
      font-display: swap;
    }

    @font-face {
      font-family: "fontfm";
      src: url("assets/fontfm.woff2") format("woff2");
      font-display: swap;
    }

    @font-face {
      font-family: "fontto";
      src: url("assets/fontto.ttf") format("truetype");
      font-display: swap;
    }

    :root {
      --ink: #2E2219;
      --bg: #FBF8F4;
      --gold-a: #A47149;
      --gold-b: #E0C9A6;
      --ease: cubic-bezier(.22, .61, .36, 1);
    }

    /* ========== SECTION BASE ========== */
    .tlr-trust-section {
      position: relative;
      background: var(--bg);
      overflow: hidden;
      padding: 12vh 8vw;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ========== BACKGROUND LAYERS ========== */
    .trust-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, #FFF7EE 0%, #FBF8F4 80%);
      z-index: 0;
    }

    .trust-gradient {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 40%, rgba(164, 113, 73, 0.15), transparent 70%);
      z-index: 1;
    }

    .trust-noise {
      position: absolute;
      inset: 0;
      background: url('assets/texture.webp');
      mix-blend-mode: soft-light;
      opacity: 0.05;
      z-index: 2;
    }

    .trust-orb {
      position: absolute;
      right: 10%;
      bottom: -15%;
      width: 600px;
      height: 600px;
      background: radial-gradient(closest-side, rgba(224, 201, 166, 0.18), transparent 70%);
      filter: blur(60px);
      z-index: 1;
    }

    /* ========== LAYOUT GRID ========== */
    .trust-container {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 8vw;
      align-items: center;
      max-width: 1600px;
      z-index: 3;
    }

    /* ========== TEXT SIDE ========== */
    .trust-text {
      color: var(--ink);
    }


    .trust-kicker {
      display: block;
      font-family: "fontfm";
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(46, 34, 25, 0.55);
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
    }

    .trust-divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-a), var(--gold-b));
      margin-bottom: 1.5rem;
    }

    .trust-title {
      font-family: "fontct";
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1.08;
      margin-bottom: 1.5rem;
    }

    .liquid-gold {
      background: linear-gradient(100deg, var(--gold-a), var(--gold-b));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .trust-desc {
      font-family: "fontfm";
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(46, 34, 25, 0.85);
      max-width: 55ch;
      margin-bottom: 1.8rem;
    }

    /* POINTS */
    .trust-points {
      font-family: "fontfm";
      color: rgba(46, 34, 25, 0.85);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .trust-points div {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .trust-points span {
      color: var(--gold-a);
      font-size: 1.2rem;
    }

    /* BUTTON */
    .trust-btn {
      display: inline-block;
      font-family: "fontfm";
      letter-spacing: 0.05em;
      padding: 0.9rem 2rem;
      border-radius: 40px;
      border: 1px solid var(--gold-a);
      background: linear-gradient(145deg, var(--gold-a), var(--gold-b));
      color: #FBF8F4;
      text-decoration: none;
      transition: all 0.4s var(--ease);
    }

    .trust-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(164, 113, 73, 0.35);
    }

    /* ========== VIDEO SIDE ========== */
    .trust-media {
      position: relative;
      text-align: center;
    }

    .trust-frame {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      box-shadow: 0 40px 80px rgba(46, 34, 25, 0.25);
      border: 1px solid rgba(164, 113, 73, 0.25);
      aspect-ratio: 16/10;
    }

    .trust-frame video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 2s var(--ease);
    }

    .trust-frame:hover video {
      transform: scale(1.05);
    }

    .trust-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 30%, rgba(224, 201, 166, 0.25), transparent 70%);
      opacity: 0.5;
      pointer-events: none;
    }

    .trust-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(46, 34, 25, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .trust-media figcaption {
      font-family: "fontfm";
      font-size: 0.9rem;
      margin-top: 0.75rem;
      color: rgba(46, 34, 25, 0.6);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 960px) {
      .trust-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }

      .trust-desc {
        margin: 0 auto;
        font-size: 0.9rem;

      }

      .trust-points {

        font-size: 0.79rem;
        text-align: justify;
        text-justify: inter-word;
        list-style-position: inside;

      }

      .trust-title br {
        display: none;
      }

      .trust-btn {
        margin-top: 1rem;
      }
    }

/* ========================= LUXURY FOOTER ========================= */
    .tlr-footer {
      position: relative;
      background: radial-gradient(900px 600px at 50% 0%, #231A15 0%, #120E0B 100%);
      color: #F7F4EF;
      font-family: "fontfm", sans-serif;
      padding: 10vh 6vw 5vh;
      overflow: hidden;
      isolation: isolate;
    }

    /* Subtle linen texture + glow overlay */
    .tlr-footer::before,
    .tlr-footer::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .tlr-footer::before {
      background: url('/assets/texture.webp');
      opacity: 0.05;
      mix-blend-mode: soft-light;
    }

    .tlr-footer::after {
      background: radial-gradient(circle at 50% -10%, rgba(214, 184, 143, 0.15), transparent 70%);
      filter: blur(60px);
    }

    /* ========================= LAYOUT ========================= */
    .footer-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 4rem;
      max-width: 1320px;
      margin: 0 auto;
    }

    @media (min-width: 992px) {
      .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }
    }

    /* ========================= BRANDING ========================= */
    .footer-brand {
      flex: 1;
      max-width: 440px;
    }

    .footer-logo {
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      letter-spacing: 0.18em;
      color: transparent;
      background: linear-gradient(120deg, #C9A873, #E3CC9C, #A88354);
      -webkit-background-clip: text;
      background-clip: text;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer-desc {
      font-size: 0.97rem;
      line-height: 1.7;
      color: rgba(240, 235, 229, 0.9);
      margin-bottom: 2rem;
      max-width: 360px;
    }

    /* ========================= SOCIAL ICONS ========================= */
    .footer-social {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .footer-social a {
      font-size: 1.3rem;
      color: #E9E5DF;
      transition: color 0.4s ease, transform 0.4s ease;
    }

    .footer-social a:hover {
      color: #C9A873;
      transform: translateY(-3px);
    }

    /* ========================= CONTACT ========================= */
    .footer-contact {
      font-size: 0.9rem;
      color: #CFC8C1;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .footer-contact a {
      color: #E9E5DF;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-contact a:hover {
      color: #C9A873;
    }

    .footer-contact strong {
      color: #E5D9C3;
      font-weight: 500;
    }

    .footer-contact .contact-head {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #C9A873;
      font-size: 0.9rem;
      margin-bottom: 0.6rem;
    }

    /* ========================= BACK TO TOP ========================= */
    .back-top {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid #C9A873;
      color: #C9A873;
      padding: 0.6rem 1.2rem;
      border-radius: 100px;
      font-size: 0.85rem;
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
    }

    .back-top:hover {
      background: linear-gradient(135deg, #C9A873, #E3CC9C);
      color: #1A120E;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(201, 168, 115, 0.25);
    }

    /* ========================= NAVIGATION ========================= */
    .footer-nav {
      flex: 1.2;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2.5rem;
    }

    .footer-col h4 {
      text-transform: uppercase;
      color: #C9A873;
      letter-spacing: 0.15em;
      font-size: 0.9rem;
      margin-bottom: 0.8rem;
    }

    .footer-col a {
      display: block;
      color: #E9E5DF;
      font-size: 0.9rem;
      line-height: 1.9;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-col a:hover {
      color: #C9A873;
      transform: translateX(3px);
    }

    /* ========================= COPYRIGHT ========================= */
    .footer-copy {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 5rem;
      padding-top: 1.6rem;
      text-align: center;
      font-size: 0.8rem;
      color: rgba(220, 215, 205, 0.65);
      letter-spacing: 0.04em;
    }

    /* ========================= RESPONSIVE ========================= */
    @media (max-width: 768px) {
      .tlr-footer {
        padding: 6vh 1.5rem 4vh;
      }

      .footer-inner {
        gap: 3rem;
      }

      .footer-logo {
        font-size: 1.4rem;
      }

      .footer-desc {
        font-size: 0.9rem;
        max-width: 100%;
      }

      .footer-col h4 {
        font-size: 0.85rem;
      }

      .footer-col a {
        font-size: 0.85rem;
      }
    }

#music-toggle {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      cursor: pointer;
      z-index: 10000;
      padding: 8px;
      border-radius: 8px;
      backdrop-filter: blur(5px);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid #a47149;
    }

    .bar {
      width: 4px;
      background: linear-gradient(to top, #f8e2c0, #caa87a, #a47149);
      animation: wave 1s infinite ease-in-out;
      border-radius: 2px;
      transform-origin: bottom;
    }

    .bar1 {
      animation-delay: 0s;
      height: 20%;
    }

    .bar2 {
      animation-delay: 0.2s;
      height: 50%;
    }

    .bar3 {
      animation-delay: 0.4s;
      height: 30%;
    }

    @keyframes wave {

      0%,
      100% {
        height: 20%;
      }

      50% {
        height: 100%;
      }
    }

    #click-doodle {
      position: fixed;
      bottom: 70px;
      left: 10px;
      z-index: 9999;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      color: white;
      background: linear-gradient(135deg, #a47149, #caa87a);
      padding: 6px 12px;
      border-radius: 14px;
      border: none;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
      animation: wiggle 2s infinite ease-in-out, pulse 3s infinite ease-in-out;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #click-doodle:hover {
      transform: scale(1.1);
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    }

    @keyframes wiggle {

      0%,
      100% {
        transform: rotate(0deg);
      }

      25% {
        transform: rotate(-2deg);
      }

      50% {
        transform: rotate(2deg);
      }

      75% {
        transform: rotate(-1deg);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.7;
      }
    }

/* Popup Animations */
    @keyframes fadeInScale {
      0% {
        opacity: 0;
        transform: scale(0.95);
      }

      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .animate-fade-in {
      animation: fadeInScale 0.5s forwards;
    }

    /* Fallback image height for very small phones */
    @media (max-width: 768px) {
      #popup-form img {
        max-height: 220px;
      }
    }

    /* Close button color tweak for smaller screens */
    @media (max-width: 1024px) {
      #popup-form button[aria-label="Close consultation form"] {
        color: white !important;
      }
    }

