/*
Theme Name: Bagus Design Child
Theme URI: https://mezzocurtain.com/
Description: Custom child theme for Mezzo Curtain House. Built for Hello Elementor with sticky responsive header, footer, home hero and page templates.
Author: Bagus Web Solutions
Template: bagus-design
Version: 1.1.5
Text Domain: bagus-design-child
*/


    :root {
      /* ═══════════════════════════════════════════════
         GLOBAL DESIGN CONTROL
         Change font, font size and font colour here.
         The whole page will follow these variables.
      ═══════════════════════════════════════════════ */
      --font-heading: "Cormorant Garamond", serif;
      --font-body: "Raleway", sans-serif;

      /* Global font sizes */
      --fs-body: 1.6rem;
      --fs-small: 1.35rem;
      --fs-menu: 1.35rem;
      --fs-button: 1.35rem;
      --fs-eyebrow: 1.15rem;
      --fs-hero-title: clamp(4.6rem, 7vw, 8.6rem);
      --fs-section-title: clamp(3.4rem, 4vw, 5rem);
      --fs-card-title: 2.6rem;
      --fs-footer-title: clamp(3rem, 3vw, 4rem);
      --fs-footer-link: 1.65rem;

      /* Global font colours */
      --text-main: #333333;
      --text-muted: #6b5b52;
      --text-light: rgba(255,248,241,0.72);
      --text-light-muted: rgba(255,248,241,0.58);
      --text-white: #ffffff;
      --text-heading-dark: #241209;
      --text-nav: #5b4a42;
      --text-footer: #f6e6d7;
      --text-footer-muted: #e2c4a3;
      --header-bg: #ffffff;
      --header-bg-scrolled: #ffffff;
      --header-menu-color: #4f423a;
      --header-menu-hover: #A0522D;
      --footer-heading-color: #ffffff;

      --c-primary: #A0522D;
      --c-primary-dk: #6F341B;
      --c-primary-lt: #D28A61;
      --c-accent: #6B1A1A;
      --c-gold: #C99A5E;
      --yellow-dark: #B8843F;
      --c-cream: #FFF8F1;
      --c-cream-2: #F6E6D7;
      --c-tan: #DEC09A;
      --c-dark: #241209;
      --c-dark-2: #2B170F;
      --c-text: var(--text-main);
      --c-muted: var(--text-muted);
      --c-white: var(--text-white);
      --c-wa: #25D366;
      --c-whatsapp: var(--c-wa);

      /* Standard colour aliases for new sections and future global control */
      --primary-color: var(--c-primary);
      --primary-dark-color: var(--c-primary-dk);
      --accent-color: var(--c-accent);
      --white-color: var(--c-white);
      --heading-color: var(--text-heading-dark);
      --body-color: var(--text-main);
      --muted-color: var(--text-muted);
      --cream-color: var(--c-cream);

      /* Global colour / gradient controls */
      --c-primary-gradient: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
      --c-primary-gradient-mobile: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
      --c-primary-glow: radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.18), transparent 30%);
      --c-accent-gradient: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary-dk) 100%);
      --c-warm-surface-gradient: linear-gradient(135deg, var(--c-white) 0%, var(--c-cream) 48%, var(--c-white) 100%);
      --c-warm-section-bg: radial-gradient(circle at 12% 18%, rgba(160, 82, 45, 0.14), transparent 28rem), radial-gradient(circle at 86% 12%, rgba(201, 154, 94, 0.16), transparent 30rem), var(--c-warm-surface-gradient);
      --c-card-glass-bg: rgba(255, 255, 255, 0.96);
      --c-on-primary: #ffffff;
      --shadow: 0 2.4rem 4.8rem rgba(0,0,0,0.16);
      --shadow-soft: 0 1.4rem 3.4rem rgba(96,48,20,0.14);
      --r: 1.1rem;
      --r-lg: 2.4rem;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      font-size: 62.5%;
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-main);
      font-size: var(--fs-body);
      background: linear-gradient(180deg, var(--c-cream), #F9EBDD);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
    }

    p, a, li, span, small, strong, button, input, textarea, select {
      font-family: var(--font-body);
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 7rem;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      background: rgba(255, 248, 241, 0.92);
      backdrop-filter: blur(1.4rem);
      -webkit-backdrop-filter: blur(1.4rem);
      border-bottom: 1px solid rgba(222, 192, 154, 0.65);
      transition: box-shadow 0.25s ease, background 0.25s ease;
    }

    .site-header.scrolled {
      background: rgba(255, 248, 241, 0.98);
      box-shadow: 0 0.8rem 2.4rem rgba(43, 23, 15, 0.1);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      text-decoration: none;
      min-width: 0;
    }

    .brand-logo {
      display: block;
      width: clamp(18rem, 22vw, 26rem);
      height: auto;
      max-height: 5.6rem;
      object-fit: contain;
      object-position: left center;
      image-rendering: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav a {
      font-size: var(--fs-menu);
      font-weight: 700;
      color: var(--text-nav);
      padding: 0.9rem 1.35rem;
      border-radius: 999px;
      transition: 0.22s ease;
    }

    .nav a:hover {
      color: var(--c-primary);
      background: var(--c-cream-2);
    }

    .nav .nav-cta {
      color: var(--text-white);
      background: var(--c-primary);
      margin-left: 0.5rem;
      box-shadow: 0 1rem 2.4rem rgba(160,82,45,0.25);
    }

    .nav .nav-cta:hover {
      color: var(--text-white);
      background: var(--c-primary-dk);
      transform: translateY(-0.2rem);
    }

    .mobile-toggle {
      display: none;
      width: 4.2rem;
      height: 4.2rem;
      border: 0;
      background: var(--c-cream-2);
      border-radius: 1rem;
      cursor: pointer;
    }

    .mobile-toggle span {
      display: block;
      width: 2.2rem;
      height: 0.2rem;
      background: var(--c-dark);
      margin: 0.45rem auto;
      border-radius: 999px;
    }

    .mobile-panel {
      display: none;
      position: fixed;
      top: 7rem;
      left: 0;
      right: 0;
      z-index: 998;
      padding: 1.6rem;
      background: rgba(255,248,241,0.98);
      box-shadow: var(--shadow-soft);
      border-bottom: 1px solid var(--c-tan);
    }

    .mobile-panel.open {
      display: grid;
      gap: 0.6rem;
    }

    .mobile-panel a {
      padding: 1.2rem 1.4rem;
      border-radius: var(--r);
      font-size: var(--fs-body);
      font-weight: 700;
      color: var(--text-heading-dark);
      background: rgba(246,230,215,0.65);
    }

    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      isolation: isolate;
      background:
        radial-gradient(circle at 12% 18%, rgba(201,154,94,0.26), transparent 25%),
        radial-gradient(circle at 84% 22%, rgba(160,82,45,0.22), transparent 26%),
        linear-gradient(135deg, #180b06 0%, #241209 42%, #4b2114 100%);
      padding: 12rem 5vw 6rem;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(
          90deg,
          transparent 0,
          transparent 7rem,
          rgba(255,255,255,0.025) 7rem,
          rgba(255,255,255,0.025) 7.15rem
        );
      pointer-events: none;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 64rem;
      height: 64rem;
      right: -18rem;
      bottom: -20rem;
      border-radius: 50%;
      background: rgba(201,154,94,0.16);
      filter: blur(1px);
      z-index: -2;
    }

    /* Curtain open/close overlay effect removed for better performance. */
    .curtain, .curtain-left, .curtain-right { display: none !important; }

    .hero-grid {
      width: min(118rem, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: clamp(3rem, 5vw, 7rem);
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-copy {
      max-width: 66rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      color: var(--text-light);
      font-size: var(--fs-eyebrow);
      font-weight: 800;
      letter-spacing: 0.28rem;
      text-transform: uppercase;
      margin-bottom: 2rem;
    }

    .eyebrow::before {
      content: "";
      width: 4rem;
      height: 0.1rem;
      background: var(--c-gold);
    }

    h1 {
      font-family: var(--font-heading);
      font-size: var(--fs-hero-title);
      line-height: 0.94;
      letter-spacing: -0.08rem;
      color: var(--text-white);
      font-weight: 700;
      margin-bottom: 2.4rem;
    }

    h1 em {
      color: var(--c-primary-lt);
      font-style: italic;
    }

    .hero-copy p {
      max-width: 54rem;
      color: var(--text-light);
      font-size: clamp(var(--fs-body), 1.4vw, 1.85rem);
      line-height: 1.8;
      margin-bottom: 3rem;
    }

    .hero-copy p strong {
      color: #fff1df;
      font-weight: 700;
    }

    .hero-benefits {
      display: grid;
      gap: 1rem;
      max-width: 57rem;
      margin: -1rem 0 3rem;
      padding: 0;
      list-style: none;
    }

    .hero-benefits li {
      display: grid;
      grid-template-columns: 2.6rem 1fr;
      align-items: start;
      gap: 1rem;
      color: rgba(255,248,241,0.88);
      font-size: clamp(1.45rem, 1.25vw, 1.72rem);
      line-height: 1.55;
      font-weight: 700;
    }

    .hero-benefits .benefit-icon {
      width: 2.2rem;
      height: 2.2rem;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.16);
      color: var(--c-wa);
      font-size: 1.25rem;
      box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.32);
      margin-top: 0.08rem;
    }


    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1.4rem;
      margin-bottom: 3rem;
    }

    .hero-actions-after-trust {
      margin-top: 2.4rem;
      margin-bottom: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      min-height: 5.2rem;
      padding: 1.35rem 2.5rem;
      border-radius: 999px;
      font-size: var(--fs-button);
      font-weight: 800;
      letter-spacing: 0.06rem;
      text-transform: uppercase;
      transition: 0.24s ease;
      cursor: pointer;
      border: 0;
      white-space: nowrap;
    }

    .btn-main {
      color: var(--text-white);
      background: var(--c-wa);
      box-shadow: 0 1.4rem 3rem rgba(37, 211, 102, 0.26);
    }

    .btn-main:hover {
      transform: translateY(-0.25rem) scale(1.02);
      box-shadow: 0 1.8rem 3.8rem rgba(37, 211, 102, 0.34);
    }

    .btn-outline {
      color: var(--text-white);
      border: 1px solid rgba(255,255,255,0.28);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(1rem);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.16);
      transform: translateY(-0.25rem);
    }

    .hero-trust {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      max-width: 56rem;
    }

    .trust-pill {
      padding: 1.25rem 1.4rem;
      border: 1px solid rgba(255,255,255,0.13);
      background: rgba(255,255,255,0.075);
      border-radius: 1.6rem;
      backdrop-filter: blur(1rem);
    }

    .trust-pill strong {
      display: block;
      color: var(--text-white);
      font-family: var(--font-heading);
      font-size: var(--fs-card-title);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .trust-pill span {
      color: var(--text-light-muted);
      font-size: 1.12rem;
      font-weight: 700;
      letter-spacing: 0.08rem;
      text-transform: uppercase;
    }

    .hero-visual {
      position: relative;
      min-height: 58rem;
    }

    .polygon-wrap {
      position: absolute;
      inset: 4rem 1rem 2rem 4rem;
      filter: drop-shadow(0 3rem 5rem rgba(0,0,0,0.36));
    }

    .polygon-photo {
      width: 100%;
      height: 100%;
      border-radius: 3.2rem;
      overflow: hidden;
      clip-path: polygon(14% 0, 100% 0, 100% 76%, 78% 100%, 0 100%, 0 18%);
      background:
        linear-gradient(135deg, rgba(43,23,15,0.08), rgba(107,26,26,0.15)),
        url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=1200&q=80");
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(255,255,255,0.18);
      position: relative;
    }

    .polygon-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(36,18,9,0.15), transparent 38%),
        linear-gradient(0deg, rgba(36,18,9,0.22), transparent 42%);
    }


    .hero-review-video-card {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 3.2rem;
      overflow: hidden;
      clip-path: polygon(14% 0, 100% 0, 100% 76%, 78% 100%, 0 100%, 0 18%);
      background:
        radial-gradient(circle at 18% 0%, rgba(201,154,94,0.2), transparent 36%),
        linear-gradient(135deg, rgba(255,248,241,0.13), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: inset 0 0 0 1px rgba(201,154,94,0.16);
    }

    .hero-review-video-card video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.04) contrast(1.02);
    }

    .hero-review-video-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(to top, rgba(36,18,9,0.58), transparent 55%),
        rgba(0,0,0,0.16);
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .video-play-overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      border: 0;
      background: transparent;
      display: grid;
      place-items: center;
      cursor: pointer;
      color: var(--text-white);
    }

    .play-icon {
      position: relative;
      z-index: 2;
      width: 7.2rem;
      height: 7.2rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.95);
      color: var(--c-accent);
      font-size: 2.4rem;
      padding-left: 0.4rem;
      box-shadow: 0 1.4rem 3rem rgba(0,0,0,0.32);
      transition: transform 0.25s ease;
    }

    .play-ring {
      position: absolute;
      width: 9.6rem;
      height: 9.6rem;
      border-radius: 50%;
      background: rgba(201,154,94,0.35);
      animation: videoPulse 1.6s ease-out infinite;
    }

    .video-play-overlay small {
      position: absolute;
      bottom: 4rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 0.9rem 1.6rem;
      border-radius: 999px;
      background: rgba(255,248,241,0.92);
      color: var(--c-dark);
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: 0.06rem;
      white-space: nowrap;
      box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,0.18);
    }

    .video-play-overlay:hover .play-icon {
      transform: scale(1.08);
    }

    .hero-review-video-card.is-playing::after,
    .hero-review-video-card.is-playing .video-play-overlay {
      opacity: 0;
      pointer-events: none;
    }

    @keyframes videoPulse {
      0% { transform: scale(0.8); opacity: 0.75; }
      100% { transform: scale(1.45); opacity: 0; }
    }


    .shape-outline {
      position: absolute;
      inset: 0 2rem 4rem 0;
      border: 1px solid rgba(201,154,94,0.55);
      clip-path: polygon(14% 0, 100% 0, 100% 76%, 78% 100%, 0 100%, 0 18%);
      transform: translate(2.2rem, 2.2rem);
      border-radius: 3.2rem;
      pointer-events: none;
    }

    .floating-card {
      position: absolute;
      min-width: 18rem;
      padding: 1.5rem 1.6rem;
      border-radius: 1.8rem;
      background: rgba(255, 248, 241, 0.94);
      color: var(--text-heading-dark);
      box-shadow: var(--shadow);
      border: 1px solid rgba(222,192,154,0.75);
      backdrop-filter: blur(1rem);
      z-index: 3;
    }

    .floating-card small {
      display: block;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 0.18rem;
      color: var(--c-primary);
      text-transform: uppercase;
      margin-bottom: 0.45rem;
    }

    .floating-card strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 2.4rem;
      line-height: 1.05;
      color: var(--text-heading-dark);
    }

    .floating-card span {
      display: block;
      margin-top: 0.45rem;
      color: var(--c-muted);
      font-size: 1.22rem;
      line-height: 1.45;
      font-weight: 600;
    }

    .card-1 {
      left: 0;
      top: 7rem;
    }

    .card-2 {
      right: 0;
      top: 20rem;
    }

    .card-3 {
      left: 5rem;
      bottom: 4rem;
    }

    .gold-orb {
      position: absolute;
      width: 10rem;
      height: 10rem;
      right: 3rem;
      bottom: 0;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 28%, #ffe0a7, #c99a5e 42%, #6f341b 100%);
      box-shadow: 0 2rem 4rem rgba(201,154,94,0.2);
      opacity: 0.9;
    }

    .scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 2.6rem;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
      color: rgba(255,248,241,0.5);
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.18rem;
      text-transform: uppercase;
      z-index: 4;
    }

    .scroll-cue i {
      width: 0.2rem;
      height: 4.2rem;
      border-radius: 999px;
      background: linear-gradient(to bottom, var(--c-gold), transparent);
      display: block;
    }

    .section {
      padding: 8rem 5vw;
    }

    .container {
      width: min(114rem, 100%);
      margin: 0 auto;
    }

    .section-heading {
      text-align: center;
      max-width: 72rem;
      margin: 0 auto 4.2rem;
    }

    .section-heading span {
      display: block;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: 0.24rem;
      text-transform: uppercase;
      color: var(--c-primary);
      margin-bottom: 1rem;
    }

    .section-heading h2 {
      font-family: var(--font-heading);
      font-size: var(--fs-section-title);
      line-height: 1.08;
      color: var(--text-heading-dark);
      margin-bottom: 1.4rem;
    }

    .section-heading p {
      color: var(--c-muted);
      font-size: var(--fs-body);
      line-height: 1.8;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.8rem;
    }

    .service-card {
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(222,192,154,0.75);
      border-radius: 2rem;
      padding: 2.4rem;
      min-height: 23rem;
      box-shadow: 0 1.4rem 3rem rgba(96,48,20,0.08);
      transition: 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 11rem;
      height: 11rem;
      border-radius: 50%;
      right: -5rem;
      top: -5rem;
      background: rgba(160,82,45,0.08);
      transition: 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-0.6rem);
      box-shadow: 0 2rem 4rem rgba(96,48,20,0.14);
      border-color: rgba(160,82,45,0.42);
    }

    .service-card:hover::before {
      transform: scale(1.35);
      background: rgba(160,82,45,0.12);
    }

    .service-card .icon {
      font-size: 3.2rem;
      margin-bottom: 1.4rem;
    }

    .service-card h3 {
      font-family: var(--font-heading);
      font-size: var(--fs-card-title);
      line-height: 1.1;
      color: var(--text-heading-dark);
      margin-bottom: 1rem;
    }

    .service-card p {
      color: var(--c-muted);
      font-size: 1.42rem;
      line-height: 1.7;
    }

    /* What We Offer - picture flip cards */
    .flip-services {
      perspective: 1200px;
      align-items: stretch;
    }

    .flip-card {
      min-height: 34rem;
      perspective: 1200px;
      cursor: pointer;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 34rem;
      transition: transform 0.78s cubic-bezier(.2,.75,.25,1);
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner,
    .flip-card:focus-within .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      inset: 0;
      border-radius: 2.4rem;
      overflow: hidden;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border: 1px solid rgba(222,192,154,0.78);
      box-shadow: 0 1.6rem 3.8rem rgba(96,48,20,0.13);
    }

    .flip-card-front {
      background-size: cover;
      background-position: center;
    }

    .flip-card-front::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(36,18,9,0.82) 0%, rgba(36,18,9,0.38) 45%, rgba(36,18,9,0.06) 100%),
        radial-gradient(circle at 15% 0%, rgba(201,154,94,0.22), transparent 36%);
    }

    .front-label {
      position: absolute;
      left: 2.2rem;
      right: 2.2rem;
      bottom: 4.7rem;
      z-index: 1;
      color: var(--text-white);
      font-family: var(--font-heading);
      font-size: clamp(2.7rem, 2.5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.05;
      text-shadow: 0 0.6rem 1.6rem rgba(0,0,0,0.35);
    }

    .tap-hint {
      position: absolute;
      left: 2.2rem;
      bottom: 2.2rem;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      color: #fff4e6;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.14rem;
      text-transform: uppercase;
      backdrop-filter: blur(0.8rem);
    }

    .flip-card-back {
      transform: rotateY(180deg);
      background:
        radial-gradient(circle at 100% 0%, rgba(201,154,94,0.22), transparent 35%),
        linear-gradient(135deg, var(--c-cream), var(--c-cream-2));
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .flip-kicker {
      display: inline-block;
      color: var(--c-primary);
      font-size: 1.08rem;
      font-weight: 900;
      letter-spacing: 0.22rem;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
    }

    .flip-card-back h3 {
      color: var(--text-heading-dark);
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 2.4vw, 3.5rem);
      line-height: 1.05;
      margin-bottom: 1.2rem;
    }

    .flip-card-back p {
      color: var(--c-muted);
      font-size: var(--fs-body);
      line-height: 1.72;
      margin-bottom: 2.2rem;
    }

    .flip-link {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      justify-content: center;
      padding: 1.1rem 1.9rem;
      border-radius: 999px;
      color: var(--text-white);
      background: var(--c-primary);
      font-size: 1.18rem;
      font-weight: 900;
      letter-spacing: 0.08rem;
      text-transform: uppercase;
      box-shadow: 0 1rem 2.4rem rgba(160,82,45,0.22);
      transition: 0.22s ease;
    }

    .flip-link:hover {
      background: var(--c-primary-dk);
      transform: translateY(-0.2rem);
    }


    .cta-strip {
      padding: 6.5rem 5vw;
      background:
        radial-gradient(circle at 20% 0%, rgba(201,154,94,0.2), transparent 24%),
        linear-gradient(135deg, var(--c-accent), var(--c-primary-dk));
      color: var(--text-white);
    }

    .cta-inner {
      width: min(114rem, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
    }

    .cta-inner h2 {
      font-family: var(--font-heading);
      font-size: clamp(3rem, 4vw, 4.8rem);
      line-height: 1.05;
      margin-bottom: 0.8rem;
    }

    .cta-inner p {
      color: rgba(255,248,241,0.72);
      font-size: 1.55rem;
      line-height: 1.7;
      max-width: 56rem;
    }


    @media (max-width: 1080px) {
      .nav a:not(.nav-cta) {
        display: none;
      }

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

      .hero-visual {
        min-height: 48rem;
      }

      .polygon-wrap {
        inset: 2rem 0 2rem 4rem;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      html {
        font-size: 58%;
      }

      :root {
        --fs-body: 1.55rem;
        --fs-menu: 1.55rem;
        --fs-button: 1.35rem;
        --fs-eyebrow: 1rem;
        --fs-hero-title: clamp(4.2rem, 14vw, 5.8rem);
        --fs-card-title: 2.4rem;
        --fs-footer-link: 1.55rem;
      }

      .site-header {
        height: 6.4rem;
        padding: 0 1.6rem;
        justify-content: center;
      }

      .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
      }

      .brand-logo {
        width: clamp(16rem, 54vw, 22rem);
        max-height: 4.8rem;
        object-position: center center;
      }

      .mobile-toggle {
        position: absolute;
        right: 1.6rem;
      }

      .nav {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .mobile-panel {
        top: 6.4rem;
      }

      .hero {
        padding: 10rem 1.6rem 5rem;
        align-items: flex-start;
      }

      .eyebrow {
        font-size: var(--fs-eyebrow);
        letter-spacing: 0.2rem;
      }

      .eyebrow::before {
        width: 2.8rem;
      }

      h1 {
        font-size: var(--fs-hero-title);
      }

      .hero-copy p {
        font-size: var(--fs-body);
      }

      .hero-benefits {
        margin: -0.8rem 0 2.6rem;
        gap: 0.9rem;
      }

      .hero-benefits li {
        grid-template-columns: 2.4rem 1fr;
        font-size: 1.5rem;
      }

      .hero-benefits .benefit-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.12rem;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
        min-height: 5.4rem;
      }

      .hero-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
      }

      .trust-pill {
        padding: 1.2rem 0.8rem;
        border-radius: 1.3rem;
        text-align: center;
      }

      .trust-pill strong {
        font-size: 2.1rem;
        margin-bottom: 0.25rem;
      }

      .trust-pill span {
        font-size: 0.92rem;
        letter-spacing: 0.05rem;
      }

      .hero-visual {
        min-height: 43rem;
        margin-top: 1rem;
      }

      .polygon-wrap {
        inset: 3rem 0 2rem 0;
      }

      .polygon-photo {
        border-radius: 2.2rem;
        clip-path: polygon(10% 0, 100% 0, 100% 80%, 82% 100%, 0 100%, 0 14%);
      }

      .hero-review-video-card {
        border-radius: 2.2rem;
        clip-path: polygon(10% 0, 100% 0, 100% 80%, 82% 100%, 0 100%, 0 14%);
      }

      .play-icon {
        width: 6.2rem;
        height: 6.2rem;
        font-size: 2rem;
      }

      .play-ring {
        width: 8.4rem;
        height: 8.4rem;
      }

      .video-play-overlay small {
        bottom: 2.4rem;
        font-size: 1.15rem;
      }

      .shape-outline {
        display: none;
      }

      .floating-card {
        min-width: 14rem;
        padding: 1.2rem;
      }

      .floating-card strong {
        font-size: 2rem;
      }

      .floating-card span {
        font-size: 1.1rem;
      }

      .card-1 {
        left: 0;
        top: 0.8rem;
      }

      .card-2 {
        right: 0;
        top: 16rem;
      }

      .card-3 {
        left: 1rem;
        bottom: 0.4rem;
      }

      .gold-orb {
        width: 7rem;
        height: 7rem;
        right: 1rem;
      }

      .scroll-cue {
        display: none;
      }

      .section {
        padding: 6rem 1.6rem;
      }

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

      .flip-card,
      .flip-card-inner {
        min-height: 30rem;
      }

      .flip-card:hover .flip-card-inner,
      .flip-card:focus-within .flip-card-inner {
        transform: none;
      }

      .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
      }

      .tap-hint {
        display: inline-flex;
      }

      .flip-card-back {
        padding: 2.4rem;
      }

      .flip-card-back p {
        font-size: 1.5rem;
      }

      .cta-strip {
        padding: 5.2rem 1.6rem;
      }

      .cta-inner {
        flex-direction: column;
        align-items: flex-start;
      }

    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
      }

      .curtain {
        display: none;
      }
    }



    /* ═══════════════════════════════════════════════
       NEW HOMEPAGE SECTIONS — Mezzo redesigned blocks
    ═══════════════════════════════════════════════ */
    .section-alt {
      background:
        radial-gradient(circle at 10% 0%, rgba(201,154,94,0.16), transparent 28%),
        linear-gradient(180deg, #fffaf5 0%, var(--c-cream-2) 100%);
    }

    .section-dark {
      position: relative;
      overflow: hidden;
      color: var(--text-white);
      background:
        radial-gradient(circle at 18% 18%, rgba(201,154,94,0.18), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(107,26,26,0.34), transparent 30%),
        linear-gradient(135deg, #180b06 0%, var(--c-dark) 48%, #4b2114 100%);
    }

    .section-dark::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, transparent 0, transparent 7rem, rgba(255,255,255,0.025) 7rem, rgba(255,255,255,0.025) 7.1rem);
      pointer-events: none;
    }

    .section-dark > .container {
      position: relative;
      z-index: 1;
    }

    .section-heading.light h2,
    .section-heading.light p {
      color: var(--text-white);
    }

    .section-heading.light p {
      color: var(--text-light);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.8rem;
    }

    .why-card {
      position: relative;
      min-height: 27rem;
      padding: 2.8rem 2.4rem;
      border-radius: 2.4rem;
      overflow: hidden;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(222,192,154,0.78);
      box-shadow: 0 1.6rem 3.8rem rgba(96,48,20,0.09);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .why-card::before {
      content: "";
      position: absolute;
      width: 13rem;
      height: 13rem;
      right: -5rem;
      top: -5rem;
      border-radius: 50%;
      background: rgba(160,82,45,0.08);
    }

    .why-card:hover {
      transform: translateY(-0.7rem);
      border-color: rgba(160,82,45,0.4);
      box-shadow: 0 2.4rem 4.8rem rgba(96,48,20,0.15);
    }

    .why-number {
      display: inline-grid;
      place-items: center;
      width: 4.4rem;
      height: 4.4rem;
      border-radius: 50%;
      color: var(--text-white);
      background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dk));
      font-size: 1.2rem;
      font-weight: 900;
      margin-bottom: 2rem;
      box-shadow: 0 1rem 2.4rem rgba(160,82,45,0.24);
    }

    .why-card h3 {
      font-family: var(--font-heading);
      font-size: var(--fs-card-title);
      line-height: 1.08;
      color: var(--text-heading-dark);
      margin-bottom: 1.2rem;
      position: relative;
    }

    .why-card p {
      color: var(--text-muted);
      font-size: var(--fs-body);
      line-height: 1.72;
      position: relative;
    }

    .comfort-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: clamp(3rem, 5vw, 7rem);
      align-items: center;
    }

    .comfort-visual {
      position: relative;
      min-height: 48rem;
    }

    .comfort-photo {
      position: absolute;
      inset: 0;
      border-radius: 3.2rem;
      clip-path: polygon(0 0, 86% 0, 100% 20%, 100% 100%, 14% 100%, 0 78%);
      background:
        linear-gradient(135deg, rgba(36,18,9,0.08), rgba(107,26,26,0.18)),
        url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=1200&q=80");
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: var(--shadow);
    }

    .comfort-mini-card {
      position: absolute;
      right: -1rem;
      bottom: 3rem;
      width: min(28rem, 76%);
      padding: 1.8rem;
      border-radius: 2rem;
      background: rgba(255,248,241,0.94);
      color: var(--text-heading-dark);
      box-shadow: var(--shadow);
      border: 1px solid rgba(222,192,154,0.8);
    }

    .comfort-mini-card strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 2.8rem;
      line-height: 1;
      margin-bottom: 0.6rem;
    }

    .comfort-mini-card span {
      color: var(--text-muted);
      font-size: 1.25rem;
      line-height: 1.55;
      font-weight: 700;
    }

    .comfort-copy .eyebrow {
      color: var(--c-gold);
    }

    .comfort-copy h2 {
      color: var(--text-white);
      font-family: var(--font-heading);
      font-size: var(--fs-section-title);
      line-height: 1.05;
      margin-bottom: 1.6rem;
    }

    .comfort-copy p {
      color: var(--text-light);
      font-size: var(--fs-body);
      line-height: 1.82;
      margin-bottom: 2.4rem;
    }

    .comfort-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.4rem;
      margin-bottom: 2.8rem;
    }

    .comfort-point {
      padding: 1.5rem;
      border-radius: 1.6rem;
      background: rgba(255,255,255,0.075);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text-white);
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1.4;
    }

    .customers-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: clamp(3rem, 5vw, 6rem);
      align-items: start;
    }

    .customers-intro {
      position: sticky;
      top: 10rem;
      padding: 3rem;
      border-radius: 2.8rem;
      background:
        radial-gradient(circle at 0 0, rgba(201,154,94,0.22), transparent 30%),
        linear-gradient(135deg, var(--c-dark), #4b2114);
      color: var(--text-white);
      box-shadow: var(--shadow);
    }

    .customers-intro span {
      display: block;
      color: var(--c-gold);
      font-size: var(--fs-eyebrow);
      font-weight: 900;
      letter-spacing: 0.24rem;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .customers-intro h2 {
      font-family: var(--font-heading);
      font-size: var(--fs-section-title);
      line-height: 1.05;
      margin-bottom: 1.4rem;
    }

    .customers-intro p {
      color: var(--text-light);
      font-size: var(--fs-body);
      line-height: 1.78;
    }

    .review-stack {
      display: grid;
      gap: 1.8rem;
    }

    .review-card {
      padding: 2.4rem;
      border-radius: 2.2rem;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(222,192,154,0.75);
      box-shadow: 0 1.4rem 3rem rgba(96,48,20,0.08);
    }

    .review-stars {
      color: var(--c-gold);
      font-size: 1.35rem;
      letter-spacing: 0.22rem;
      margin-bottom: 1.1rem;
    }

    .review-card h3 {
      font-family: var(--font-heading);
      font-size: 2.6rem;
      line-height: 1.08;
      color: var(--text-heading-dark);
      margin-bottom: 1rem;
    }

    .review-card p {
      color: var(--text-muted);
      font-size: var(--fs-body);
      line-height: 1.75;
      margin-bottom: 1.4rem;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: var(--text-heading-dark);
      font-size: 1.3rem;
      font-weight: 900;
    }

    .review-avatar {
      width: 3.8rem;
      height: 3.8rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--c-cream-2);
      border: 1px solid var(--c-tan);
      color: var(--c-primary);
      font-weight: 900;
    }

    .partnership-wrap {
      position: relative;
      padding: clamp(3rem, 5vw, 5rem);
      border-radius: 3.2rem;
      overflow: hidden;
      background:
        radial-gradient(circle at 8% 20%, rgba(201,154,94,0.18), transparent 26%),
        linear-gradient(135deg, #2b170f 0%, #35190e 42%, #210f08 100%);
      color: var(--text-white);
      box-shadow: var(--shadow);
    }

    .partnership-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, transparent 0, transparent 7rem, rgba(255,255,255,0.026) 7rem, rgba(255,255,255,0.026) 7.1rem);
      pointer-events: none;
    }

    .partnership-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 4rem;
      align-items: center;
    }

    .partnership-copy span {
      display: block;
      color: var(--c-gold);
      font-size: var(--fs-eyebrow);
      font-weight: 900;
      letter-spacing: 0.24rem;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .partnership-copy h2 {
      font-family: var(--font-heading);
      font-size: var(--fs-section-title);
      line-height: 1.05;
      margin-bottom: 1.4rem;
    }

    .partnership-copy p {
      color: var(--text-light);
      font-size: var(--fs-body);
      line-height: 1.78;
    }

    .partner-showcase {
      min-width: 0;
    }

    .partner-marquee {
      position: relative;
      overflow: hidden;
      padding: 1.4rem 0;
      border-radius: 2.4rem;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .partner-marquee::before,
    .partner-marquee::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 10rem;
      z-index: 2;
      pointer-events: none;
    }

    .partner-marquee::before {
      left: 0;
      background: linear-gradient(90deg, #2b170f, rgba(43,23,15,0));
    }

    .partner-marquee::after {
      right: 0;
      background: linear-gradient(270deg, #210f08, rgba(33,15,8,0));
    }

    .partner-track {
      display: flex;
      width: max-content;
      gap: 1.4rem;
      animation: partnerLoop 24s linear infinite;
    }

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

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

    .partner-logo-card {
      width: 18.5rem;
      min-height: 10.5rem;
      flex: 0 0 18.5rem;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 1.6rem 1.4rem;
      border-radius: 1.8rem;
      background:
        linear-gradient(180deg, rgba(255,248,241,0.98), rgba(246,230,215,0.92));
      border: 1px solid rgba(222,192,154,0.9);
      box-shadow: 0 1.2rem 2.8rem rgba(0,0,0,0.14);
    }

    .partner-logo-mark {
      width: 4.4rem;
      height: 4.4rem;
      display: grid;
      place-items: center;
      margin-bottom: 0.9rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-accent), var(--c-primary));
      color: var(--text-white);
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
    }

    .partner-logo-card strong {
      display: block;
      color: var(--text-heading-dark);
      font-size: 1.38rem;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 0.35rem;
    }

    .partner-logo-card small {
      display: block;
      color: var(--text-muted);
      font-size: 1.08rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .partner-note {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.6rem;
    }

    .partner-note span {
      padding: 1.2rem;
      border-radius: 1.4rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,248,241,0.75);
      font-size: 1.18rem;
      font-weight: 800;
      text-align: center;
    }

    @media (prefers-reduced-motion: reduce) {
      .partner-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    @media (max-width: 1080px) {
      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .comfort-grid,
      .customers-layout,
      .partnership-grid {
        grid-template-columns: 1fr;
      }

      .customers-intro {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 760px) {
      .why-grid,
      .comfort-points,
      .partner-cloud {
        grid-template-columns: 1fr;
      }

      .why-card {
        min-height: auto;
      }

      .comfort-visual {
        min-height: 36rem;
      }

      .comfort-mini-card {
        right: 1rem;
        bottom: 1rem;
      }

      .customers-intro,
      .review-card,
      .partnership-wrap {
        border-radius: 2.2rem;
      }
    }



    /* Real partner logo loop - extracted from Mezzo partnership assets */
    .partner-logo-card.real-logo {
      width: 21rem;
      min-height: 13.5rem;
      flex: 0 0 21rem;
      padding: 1.4rem;
      gap: 0.8rem;
    }

    .partner-img-wrap {
      width: 100%;
      height: 7.2rem;
      display: grid;
      place-items: center;
      padding: 1rem 1.2rem;
      border-radius: 1.4rem;
      background: var(--white-color, #ffffff);
      border: 1px solid rgba(222,192,154,0.55);
      overflow: hidden;
    }

    .partner-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(1) contrast(0.92);
      opacity: 0.78;
      transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    }

    .partner-logo-card.real-logo:hover .partner-img-wrap img {
      filter: grayscale(0) contrast(1);
      opacity: 1;
      transform: scale(1.04);
    }

    .partner-logo-card.real-logo strong {
      margin-top: 0.25rem;
    }

    .partner-wordmark {
      width: 100%;
      height: 7.2rem;
      display: grid;
      place-items: center;
      border-radius: 1.4rem;
      background:
        radial-gradient(circle at 20% 10%, rgba(201,154,94,0.22), transparent 28%),
        linear-gradient(135deg, #fffaf3, #f6e6d7);
      border: 1px solid rgba(222,192,154,0.7);
      color: var(--text-heading-dark);
      text-align: center;
      padding: 0.8rem;
    }

    .partner-wordmark b {
      display: block;
      font-family: var(--font-heading);
      font-size: 2.2rem;
      line-height: 1;
      color: var(--c-primary-dk);
      letter-spacing: 0.02rem;
    }

    .partner-wordmark i {
      display: block;
      margin-top: 0.35rem;
      font-style: normal;
      font-size: 0.92rem;
      font-weight: 900;
      letter-spacing: 0.18rem;
      color: var(--c-gold);
      text-transform: uppercase;
    }

    .partner-source-line {
      margin-top: 1.2rem;
      color: rgba(255,248,241,0.5);
      font-size: 1.1rem;
      line-height: 1.55;
    }

    @media (max-width: 760px) {
      .partner-logo-card.real-logo {
        width: 17.5rem;
        flex-basis: 17.5rem;
        min-height: 12.2rem;
      }

      .partner-img-wrap,
      .partner-wordmark {
        height: 6.4rem;
      }

      .partner-wordmark b {
        font-size: 1.85rem;
      }

      .partner-marquee::before,
      .partner-marquee::after {
        width: 4.5rem;
      }
    }

    /* Mezzo responsive footer */
    .mezzo-footer {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 78% 0%, rgba(107,26,26,0.38), transparent 30%),
        radial-gradient(circle at 12% 10%, rgba(201,154,94,0.12), transparent 28%),
        linear-gradient(135deg, #2b170f 0%, #35190e 46%, #210f08 100%);
      color: var(--text-footer);
      padding: 4.2rem 5vw 2.6rem;
      border-top: 1px solid rgba(201,154,94,0.22);
    }

    .mezzo-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(90deg, transparent 0, transparent 6.8rem, rgba(255,255,255,0.028) 6.8rem, rgba(255,255,255,0.028) 6.9rem),
        repeating-linear-gradient(0deg, transparent 0, transparent 6.8rem, rgba(255,255,255,0.018) 6.8rem, rgba(255,255,255,0.018) 6.9rem);
      pointer-events: none;
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      width: min(130rem, 100%);
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr auto;
      gap: 2.4rem;
      align-items: center;
      padding-bottom: 4rem;
      border-bottom: 1px solid rgba(255,255,255,0.16);
    }

    .footer-kicker {
      display: block;
      color: var(--c-gold);
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.46rem;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer-top h2 {
      color: var(--text-white);
      font-family: var(--font-heading);
      font-size: clamp(3.2rem, 4vw, 4.8rem);
      line-height: 1.05;
      margin: 0 0 1.2rem;
    }

    .footer-top p {
      margin: 0;
      max-width: 76rem;
      color: #dec09a;
      font-size: 1.8rem;
      line-height: 1.6;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.35fr 0.85fr 0.85fr 1.1fr;
      gap: 5.8rem;
      padding: 1.2rem 0 4rem;
    }

    .footer-brand-title {
      color: var(--text-white);
      font-family: var(--font-heading);
      font-size: clamp(3rem, 3vw, 4rem);
      line-height: 1.12;
      margin: 0 0 1.6rem;
    }

    .footer-desc {
      color: var(--text-footer-muted);
      font-size: 1.7rem;
      line-height: 1.75;
      margin: 0 0 2.4rem;
      max-width: 43rem;
    }

    .footer-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.8rem;
    }

    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.9rem 1.5rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      color: #fff4e6;
      font-size: var(--fs-button);
      font-weight: 800;
      white-space: nowrap;
    }

    .footer-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
    }

    .footer-actions .btn {
      min-height: 4.2rem;
      padding: 1.2rem 2.3rem;
      font-size: 1.2rem;
    }

    .footer-title {
      color: var(--c-gold);
      font-size: 1.25rem;
      letter-spacing: 0.34rem;
      text-transform: uppercase;
      margin: 0 0 2.4rem;
      font-weight: 900;
    }

    .footer-list {
      display: grid;
      gap: 1.7rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-list a,
    .footer-list span {
      color: #fff1e0;
      text-decoration: none;
      font-size: var(--fs-footer-link);
      line-height: 1.35;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-list a:hover {
      color: var(--c-gold);
      transform: translateX(0.25rem);
    }

    .new-tag {
      display: inline-flex;
      align-items: center;
      padding: 0.2rem 0.8rem;
      margin-left: 0.6rem;
      border-radius: 0.35rem;
      background: #dec09a;
      color: #5a2a18;
      font-size: 1.1rem;
      font-weight: 900;
      letter-spacing: 0.06rem;
      vertical-align: middle;
    }

    .contact-list {
      display: grid;
      gap: 2.1rem;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 2.4rem 1fr;
      gap: 1rem;
      align-items: start;
    }

    .contact-icon {
      color: var(--c-gold);
      font-size: 1.55rem;
      line-height: 1.5;
      text-align: center;
    }

    .contact-item strong,
    .contact-item a {
      display: block;
      color: var(--text-white);
      font-size: var(--fs-footer-link);
      font-weight: 900;
      text-decoration: none;
      line-height: 1.35;
      word-break: break-word;
    }

    .contact-item small {
      display: block;
      color: #d6a168;
      font-size: 1.42rem;
      margin-top: 0.4rem;
      line-height: 1.45;
    }

    .footer-note {
      margin-top: 2.4rem;
      padding: 1.6rem 1.8rem;
      border: 1px solid rgba(255,255,255,0.17);
      border-radius: 1rem;
      background: rgba(255,255,255,0.07);
      color: #e2c4a3;
      font-size: 1.45rem;
      line-height: 1.55;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.6rem;
      padding-top: 2.6rem;
      border-top: 1px solid rgba(255,255,255,0.16);
      color: #d6a168;
      font-size: 1.35rem;
    }

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

    @media (max-width: 1024px) {
      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 3rem;
      }
    }

    @media (max-width: 767px) {
      .mezzo-footer {
        padding: 4rem 1.6rem 2.4rem;
      }

      .footer-top {
        text-align: left;
        padding-bottom: 3.2rem;
      }

      .footer-top .btn {
        width: 100%;
      }

      .footer-top p,
      .footer-desc {
        font-size: 1.55rem;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 3.8rem;
        padding: 2rem 0 3.4rem;
      }

      .footer-badges,
      .footer-actions {
        align-items: stretch;
      }

      .footer-badge,
      .footer-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .footer-list {
        gap: 1.2rem;
      }

      .footer-list a,
      .footer-list span,
      .contact-item strong,
      .contact-item a {
        font-size: 1.55rem;
      }

      .contact-item small,
      .footer-note {
        font-size: 1.35rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1.28rem;
      }

      /* Mobile footer: center each column block, keep text left */
      .footer-top,
      .footer-main,
      .footer-bottom {
        width: 100%;
      }

      .footer-top > div,
      .footer-top > .btn,
      .footer-col,
      .footer-bottom > * {
        width: min(100%, 35rem);
        margin-left: auto;
        margin-right: auto;
        text-align: left;
      }

      .footer-main {
        justify-items: center;
      }

      .footer-brand-title,
      .footer-title {
        text-align: left;
      }

      .footer-badges,
      .footer-actions {
        justify-content: flex-start;
        align-items: flex-start;
      }

      .footer-badge {
        width: auto;
        max-width: 100%;
        justify-content: flex-start;
      }

      .footer-actions .btn,
      .footer-top .btn {
        width: 100%;
        justify-content: center;
      }

      .footer-actions .btn-main {
        display: none;
      }

      .contact-item {
        text-align: left;
      }
    }


    /* Partner logo only loop - extracted from Mezzo partnership carousel */
    .partner-logo-only-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 0%, rgba(201,154,94,0.16), transparent 30%),
        linear-gradient(180deg, var(--cream-color, #FFF8F1) 0%, #f6e6d7 100%);
    }

    .partner-logo-only-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 7rem,
        rgba(160,82,45,0.035) 7rem,
        rgba(160,82,45,0.035) 7.1rem
      );
      pointer-events: none;
    }

    .partner-logo-only-wrap {
      position: relative;
      z-index: 1;
      padding: 2rem 0;
    }

    .partner-logo-heading {
      margin-bottom: 3rem;
    }

    .partner-logo-marquee {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 1rem 0 1.6rem;
      mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
    }

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

    .partner-logo-track {
      display: flex;
      align-items: center;
      gap: 2rem;
      width: max-content;
      animation: partnerLogoOnlyLoop 28s linear infinite;
      will-change: transform;
    }

    @keyframes partnerLogoOnlyLoop {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 1rem)); }
    }

    .partner-logo-only-card {
      flex: 0 0 auto;
      width: clamp(16rem, 17vw, 23rem);
      height: 11rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 2.4rem;
      border-radius: 2rem;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(222,192,154,0.8);
      box-shadow: 0 1.4rem 3rem rgba(96,48,20,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .partner-logo-only-card:hover {
      transform: translateY(-0.4rem);
      border-color: rgba(160,82,45,0.42);
      box-shadow: 0 2rem 4rem rgba(96,48,20,0.14);
    }

    .partner-logo-only-card img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: saturate(0.95) contrast(1.03);
    }

    @media (max-width: 760px) {
      .partner-logo-only-wrap {
        padding: 0.4rem 0;
      }

      .partner-logo-heading {
        margin-bottom: 2rem;
      }

      .partner-logo-track {
        gap: 1.2rem;
        animation-duration: 22s;
      }

      .partner-logo-only-card {
        width: 14.5rem;
        height: 8.4rem;
        border-radius: 1.4rem;
        padding: 1.4rem 1.6rem;
      }
    }



    /* Desktop header refinement: transparent background + clearer menu text */
    @media (min-width: 761px) {
      .site-header {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 0;
        box-shadow: none;
      }

      .site-header.scrolled {
        background: transparent;
        box-shadow: none;
      }

      .nav a {
        color: rgba(255, 248, 241, 0.86);
        font-weight: 800;
        text-shadow: 0 0.2rem 0.9rem rgba(0, 0, 0, 0.45);
      }

      .nav a:hover {
        color: var(--white-color, #ffffff);
        background: rgba(255, 255, 255, 0.12);
      }

      .nav .nav-cta {
        color: var(--white-color, #ffffff);
        background: rgba(160, 82, 45, 0.96);
        text-shadow: none;
      }

      .nav .nav-cta:hover {
        background: var(--c-primary-dk);
      }
    }


    /* Desktop header behavior: transparent only while hero banner is visible */
    @media (min-width: 761px) {
      .site-header {
        background: rgba(255, 248, 241, 0.94);
        backdrop-filter: blur(1.4rem);
        -webkit-backdrop-filter: blur(1.4rem);
        border-bottom: 1px solid rgba(222, 192, 154, 0.65);
        box-shadow: 0 0.8rem 2.4rem rgba(43, 23, 15, 0.10);
      }

      .site-header.header-on-hero {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 0;
        box-shadow: none;
      }

      .site-header.header-on-hero .nav a {
        color: rgba(255, 248, 241, 0.9);
        font-weight: 800;
        text-shadow: 0 0.2rem 0.9rem rgba(0, 0, 0, 0.45);
      }

      .site-header.header-on-hero .nav a:hover {
        color: var(--white-color, #ffffff);
        background: rgba(255, 255, 255, 0.12);
      }

      .site-header:not(.header-on-hero) .nav a {
        color: var(--text-nav);
        text-shadow: none;
      }

      .site-header:not(.header-on-hero) .nav a:hover {
        color: var(--c-primary);
        background: var(--c-cream-2);
      }

      .site-header .nav .nav-cta,
      .site-header.header-on-hero .nav .nav-cta,
      .site-header:not(.header-on-hero) .nav .nav-cta {
        color: var(--white-color, #ffffff);
        background: var(--c-primary);
        text-shadow: none;
      }

      .site-header .nav .nav-cta:hover {
        background: var(--c-primary-dk);
      }
    }



    /* Redesigned Happy Customers section: videos + Google reviews */
    .happy-redesign {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 0%, rgba(201,154,94,0.22), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(160,82,45,0.16), transparent 24%),
        linear-gradient(180deg, var(--cream-color, #FFF8F1) 0%, #f6e6d7 100%);
    }

    .happy-redesign::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(90deg, transparent 0, transparent 7rem, rgba(43,23,15,0.035) 7rem, rgba(43,23,15,0.035) 7.1rem);
      pointer-events: none;
    }

    .happy-redesign .container {
      position: relative;
      z-index: 1;
    }

    .happy-head {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: clamp(2.4rem, 4vw, 5.2rem);
      align-items: end;
      margin-bottom: 4rem;
    }

    .happy-kicker {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      color: var(--c-primary);
      font-size: var(--fs-eyebrow);
      font-weight: 900;
      letter-spacing: 0.24rem;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .happy-kicker::before {
      content: "";
      width: 4rem;
      height: 0.1rem;
      background: var(--c-gold);
    }

    .happy-head h2 {
      color: var(--text-heading-dark);
      font-family: var(--font-heading);
      font-size: var(--fs-section-title);
      line-height: 1.05;
      margin-bottom: 1.2rem;
    }

    .happy-head p {
      color: var(--text-muted);
      font-size: var(--fs-body);
      line-height: 1.78;
      max-width: 76rem;
    }

    .happy-proof-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .happy-proof {
      padding: 1.4rem 1.6rem;
      border-radius: 1.8rem;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(222,192,154,0.78);
      box-shadow: 0 1.2rem 2.4rem rgba(96,48,20,0.06);
    }

    .happy-proof strong {
      display: block;
      color: var(--c-primary);
      font-family: var(--font-heading);
      font-size: 2.7rem;
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .happy-proof span {
      display: block;
      color: var(--text-muted);
      font-size: 1.08rem;
      font-weight: 900;
      letter-spacing: 0.08rem;
      text-transform: uppercase;
    }

    .happy-content-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: clamp(2.4rem, 4vw, 5.2rem);
      align-items: start;
    }

    .customer-video-panel {
      position: sticky;
      top: 10rem;
      padding: 2.2rem;
      border-radius: 3rem;
      background:
        radial-gradient(circle at 10% 0%, rgba(201,154,94,0.25), transparent 36%),
        linear-gradient(135deg, #241209 0%, #4b2114 100%);
      box-shadow: var(--shadow);
      color: var(--text-white);
      overflow: hidden;
    }

    .customer-video-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(90deg, transparent 0, transparent 5.8rem, rgba(255,255,255,0.035) 5.8rem, rgba(255,255,255,0.035) 5.9rem);
      pointer-events: none;
    }

    .customer-video-panel > * {
      position: relative;
      z-index: 1;
    }

    .video-panel-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.2rem;
      margin-bottom: 1.8rem;
    }

    .video-panel-title h3 {
      color: var(--text-white);
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 3vw, 3.8rem);
      line-height: 1.05;
    }

    .video-panel-title span {
      flex: 0 0 auto;
      padding: 0.8rem 1.2rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.14);
      color: #f6e6d7;
      font-size: 1.1rem;
      font-weight: 900;
      letter-spacing: 0.08rem;
      text-transform: uppercase;
    }

    .customer-video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .video-card {
      overflow: hidden;
      border-radius: 2.2rem;
      background: rgba(255,248,241,0.12);
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 1.6rem 3rem rgba(0,0,0,0.25);
    }

    .video-card video {
      display: block;
      width: 100%;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      background: #160904;
    }

    .video-caption {
      padding: 1.2rem;
      color: #f6e6d7;
      font-size: 1.2rem;
      line-height: 1.45;
      font-weight: 700;
    }

    .google-review-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.6rem;
    }

    .google-review-card {
      position: relative;
      min-height: 25rem;
      padding: 2rem;
      border-radius: 2.2rem;
      background: rgba(255,255,255,0.84);
      border: 1px solid rgba(222,192,154,0.82);
      box-shadow: 0 1.4rem 3rem rgba(96,48,20,0.08);
      overflow: hidden;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .google-review-card::before {
      content: "G";
      position: absolute;
      right: 1.7rem;
      top: 1.2rem;
      color: rgba(160,82,45,0.1);
      font-family: var(--font-heading);
      font-size: 7rem;
      font-weight: 700;
      line-height: 1;
    }

    .google-review-card:hover {
      transform: translateY(-0.45rem);
      box-shadow: 0 2rem 4rem rgba(96,48,20,0.14);
      border-color: rgba(160,82,45,0.45);
    }

    .review-topline {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .google-avatar {
      width: 4.4rem;
      height: 4.4rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
      color: #fff;
      font-size: 1.6rem;
      font-weight: 900;
      box-shadow: 0 0.8rem 1.8rem rgba(160,82,45,0.22);
    }

    .review-name {
      color: var(--text-heading-dark);
      font-size: 1.45rem;
      font-weight: 900;
      line-height: 1.2;
    }

    .review-meta {
      color: var(--text-muted);
      font-size: 1.12rem;
      font-weight: 700;
      margin-top: 0.2rem;
    }

    .google-review-card .review-stars {
      position: relative;
      z-index: 1;
      margin-bottom: 1rem;
    }

    .google-review-card p {
      position: relative;
      z-index: 1;
      color: var(--text-muted);
      font-size: 1.45rem;
      line-height: 1.72;
      margin: 0 0 1.4rem;
    }

    .review-service-tag {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      background: var(--c-cream-2);
      color: var(--c-primary-dk);
      border: 1px solid rgba(222,192,154,0.82);
      font-size: 1.08rem;
      font-weight: 900;
      letter-spacing: 0.05rem;
      text-transform: uppercase;
    }

    @media (max-width: 1024px) {
      .happy-head,
      .happy-content-grid {
        grid-template-columns: 1fr;
      }

      .customer-video-panel {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 767px) {
      .happy-redesign {
        padding-top: 5.8rem;
      }

      .happy-head,
      .happy-content-grid {
        gap: 2.4rem;
      }

      .happy-proof-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
      }

      .happy-proof {
        padding: 1rem 0.75rem;
        text-align: center;
        border-radius: 1.4rem;
      }

      .happy-proof strong {
        font-size: 2rem;
      }

      .happy-proof span {
        font-size: 0.9rem;
        letter-spacing: 0.04rem;
      }

      .customer-video-panel {
        padding: 1.4rem;
        border-radius: 2.2rem;
      }

      .video-panel-title {
        align-items: flex-start;
        flex-direction: column;
      }

      .customer-video-grid,
      .google-review-grid {
        grid-template-columns: 1fr;
      }

      .video-card video {
        aspect-ratio: 4 / 5;
      }

      .google-review-card {
        min-height: auto;
        padding: 1.7rem;
      }
    }


    /* ═══════════════════════════════════════════════
       WHITE WEBSITE BACKGROUND UPDATE
       Keep the hero/footer premium, but make all main content areas
       white, cleaner, and more spacious.
    ═══════════════════════════════════════════════ */
    body {
      background: var(--white-color, #ffffff);
    }

    main {
      background: var(--white-color, #ffffff);
    }

    .section,
    .section-alt,
    .happy-redesign,
    .partner-logo-only-section {
      background: var(--white-color, #ffffff);
    }

    .section::before,
    .section-alt::before,
    .happy-redesign::before,
    .partner-logo-only-section::before {
      display: none;
    }

    .section {
      padding-top: 10rem;
      padding-bottom: 10rem;
    }

    .section + .section {
      border-top: 1px solid rgba(222,192,154,0.35);
    }

    .section-heading {
      margin-bottom: 5.6rem;
    }

    .section-heading p,
    .happy-head p,
    .why-card p,
    .review-card p,
    .google-review-card p,
    .flip-card-back p {
      color: #6b5b52;
    }

    .service-card,
    .why-card,
    .review-card,
    .google-review-card,
    .happy-proof,
    .flip-card-back {
      background: var(--white-color, #ffffff);
      border-color: rgba(222,192,154,0.55);
      box-shadow: 0 1.2rem 3rem rgba(43,23,15,0.06);
    }

    .service-card:hover,
    .why-card:hover,
    .review-card:hover,
    .google-review-card:hover {
      box-shadow: 0 2rem 4rem rgba(43,23,15,0.10);
    }

    .section-dark {
      background: var(--white-color, #ffffff);
      color: var(--text-heading-dark);
    }

    .section-dark::before {
      display: none;
    }

    .section-dark .section-heading.light h2,
    .section-dark .section-heading.light p,
    .comfort-copy h2,
    .comfort-copy p {
      color: var(--text-heading-dark);
    }

    .comfort-copy p {
      color: var(--text-muted);
    }

    .comfort-copy .eyebrow {
      color: var(--c-primary);
    }

    .comfort-point {
      background: var(--white-color, #ffffff);
      border: 1px solid rgba(222,192,154,0.58);
      color: var(--text-heading-dark);
      box-shadow: 0 1rem 2.6rem rgba(43,23,15,0.05);
    }

    .comfort-mini-card,
    .customers-intro,
    .customer-video-panel {
      box-shadow: 0 1.8rem 4.2rem rgba(43,23,15,0.10);
    }

    .customers-intro {
      background: var(--white-color, #ffffff);
      color: var(--text-heading-dark);
      border: 1px solid rgba(222,192,154,0.55);
    }

    .customers-intro h2,
    .customers-intro p {
      color: var(--text-heading-dark);
    }

    .customers-intro p {
      color: var(--text-muted);
    }

    .customer-video-panel {
      background: var(--white-color, #ffffff);
      color: var(--text-heading-dark);
      border: 1px solid rgba(222,192,154,0.55);
    }

    .customer-video-panel::before {
      display: none;
    }

    .video-panel-title h3 {
      color: var(--text-heading-dark);
    }

    .video-panel-title span {
      background: rgba(160,82,45,0.08);
      border-color: rgba(160,82,45,0.18);
      color: var(--c-primary);
    }

    .video-card {
      background: var(--white-color, #ffffff);
      border-color: rgba(222,192,154,0.55);
      box-shadow: 0 1.2rem 3rem rgba(43,23,15,0.08);
    }

    .video-caption {
      color: var(--text-muted);
      background: var(--white-color, #ffffff);
    }

    .partnership-wrap {
      background: var(--white-color, #ffffff);
      color: var(--text-heading-dark);
      border: 1px solid rgba(222,192,154,0.55);
      box-shadow: 0 1.6rem 4rem rgba(43,23,15,0.07);
    }

    .partnership-wrap::before {
      display: none;
    }

    .partnership-copy h2,
    .partnership-copy p {
      color: var(--text-heading-dark);
    }

    .partnership-copy p {
      color: var(--text-muted);
    }

    .partner-marquee {
      background: var(--white-color, #ffffff);
      border: 1px solid rgba(222,192,154,0.55);
    }

    .partner-marquee::before {
      background: linear-gradient(90deg, var(--white-color, #ffffff), rgba(255,255,255,0));
    }

    .partner-marquee::after {
      background: linear-gradient(270deg, var(--white-color, #ffffff), rgba(255,255,255,0));
    }

    .partner-logo-card.real-logo,
    .partner-logo-card {
      background: var(--white-color, #ffffff);
      box-shadow: 0 1rem 2.8rem rgba(43,23,15,0.06);
    }

    @media (max-width: 760px) {
      .section {
        padding-top: 7.2rem;
        padding-bottom: 7.2rem;
      }

      .section-heading {
        margin-bottom: 4rem;
      }
    }


  

/* ═══════════════════════════════════════════════
   WORDPRESS / HELLO ELEMENTOR CHILD THEME HELPERS
═══════════════════════════════════════════════ */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

.site-header .brand img,
.site-header .brand .custom-logo,
.brand-logo {
  display: block;
  width: clamp(18rem, 22vw, 26rem);
  height: auto;
  max-height: 5.6rem;
  object-fit: contain;
  object-position: left center;
}

.nav ul,
.nav .menu,
.mobile-panel ul,
.mobile-panel .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul,
.nav .menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav li { margin: 0; }
.nav a { display: inline-flex; align-items: center; justify-content: center; }
.mobile-panel ul,
.mobile-panel .menu { display: grid; gap: 0.6rem; }
.mobile-panel li { margin: 0; }
.mobile-panel a { display: block; }

body:not(.home):not(.front-page) .site-header,
body:not(.home):not(.front-page) .site-header.header-on-hero {
  background: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(1.4rem);
  -webkit-backdrop-filter: blur(1.4rem);
  border-bottom: 1px solid rgba(222, 192, 154, 0.65);
  box-shadow: 0 0.8rem 2.4rem rgba(43, 23, 15, 0.10);
}

body:not(.home):not(.front-page) .site-header .nav a {
  color: var(--text-nav);
  text-shadow: none;
}

.inner-page-hero {
  padding: 14rem 5vw 7rem;
  background:
    radial-gradient(circle at 16% 0%, rgba(201,154,94,0.22), transparent 28%),
    linear-gradient(135deg, #241209 0%, #3a1a0f 55%, #6B1A1A 100%);
  color: #fff;
}

.inner-page-hero .container { width: min(114rem, 100%); margin: 0 auto; }
.inner-page-hero span {
  display: block;
  color: var(--c-gold);
  font-size: var(--fs-eyebrow);
  font-weight: 900;
  letter-spacing: .28rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.inner-page-hero h1 {
  color: #fff;
  font-size: clamp(4rem, 6vw, 6.8rem);
  line-height: 1;
  max-width: 80rem;
}
.inner-page-hero p {
  color: rgba(255,248,241,.72);
  max-width: 70rem;
  font-size: 1.75rem;
  line-height: 1.8;
  margin-top: 1.6rem;
}

.project-showcase-grid,
.cleaning-steps-grid,
.contact-page-grid {
  display: grid;
  gap: 2.4rem;
}
.project-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cleaning-steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-page-grid { grid-template-columns: 1fr 1fr; align-items: start; }

.project-card,
.cleaning-step,
.contact-panel {
  background: #fff;
  border: 1px solid rgba(222,192,154,.5);
  border-radius: 2.4rem;
  padding: 2.6rem;
  box-shadow: 0 1.2rem 3.2rem rgba(43,23,15,.08);
}
.project-card .project-img {
  height: 24rem;
  border-radius: 1.8rem;
  margin: -1rem -1rem 2rem;
  background-size: cover;
  background-position: center;
}
.project-card h3,
.cleaning-step h3,
.contact-panel h3 { font-family: var(--font-heading); font-size: 2.8rem; color: var(--text-heading-dark); margin-bottom: 1rem; }
.project-card p,
.cleaning-step p,
.contact-panel p { color: var(--text-muted); line-height: 1.7; }
.cleaning-step strong { color: var(--c-primary); font-size: 3rem; font-family: var(--font-heading); display: block; margin-bottom: .8rem; }
.contact-panel a { color: var(--c-primary); font-weight: 800; }

@media (max-width: 1024px) {
  .project-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cleaning-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .site-header .brand img,
  .site-header .brand .custom-logo,
  .brand-logo {
    width: clamp(16rem, 54vw, 22rem);
    max-height: 4.8rem;
    object-position: center center;
  }
  .inner-page-hero { padding: 11rem 1.6rem 5.5rem; }
  .project-showcase-grid,
  .cleaning-steps-grid,
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   ELEMENTOR / WPFORMS EDITABLE CONTENT SUPPORT
   These styles ensure any new page/template can accept Elementor widgets,
   WPForms shortcodes, text, galleries and other front-end elements.
═══════════════════════════════════════════════ */
.mezzo-page-content,
.mezzo-builder-area {
  background: #fff;
}

.mezzo-builder-area {
  padding: 7rem 5vw;
}

.mezzo-builder-area.is-empty {
  padding: 0;
  min-height: 0;
}

.mezzo-builder-container {
  width: min(114rem, 100%);
  margin: 0 auto;
}

.mezzo-builder-full {
  width: 100%;
  margin: 0;
}

/* When Elementor builds the content, let Elementor control section widths. */
.elementor-page .mezzo-builder-area.is-elementor-content,
.mezzo-builder-area.is-elementor-content {
  padding: 0;
}

.elementor-page .mezzo-builder-full .elementor,
.mezzo-builder-full .elementor {
  width: 100%;
}

/* When adding WPForms inside the home/template editor area. */
.mezzo-builder-area .wpforms-container,
.mezzo-builder-area div.wpforms-container-full {
  margin: 0 auto;
  max-width: 78rem;
}

.mezzo-builder-area .wpforms-form input[type="text"],
.mezzo-builder-area .wpforms-form input[type="email"],
.mezzo-builder-area .wpforms-form input[type="tel"],
.mezzo-builder-area .wpforms-form select,
.mezzo-builder-area .wpforms-form textarea {
  border: 1px solid rgba(222,192,154,0.75);
  border-radius: 1.1rem;
  min-height: 4.8rem;
  font-family: var(--font-body);
  font-size: 1.6rem;
}

.mezzo-builder-area .wpforms-form button[type="submit"],
.mezzo-builder-area div.wpforms-container-full button[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: var(--c-primary);
  color: #fff;
  min-height: 5rem;
  padding: 1.2rem 2.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
}

.mezzo-builder-area .wpforms-form button[type="submit"]:hover,
.mezzo-builder-area div.wpforms-container-full button[type="submit"]:hover {
  background: var(--c-primary-dk);
}

/* Responsive safety net for all theme grids/cards. */
@media (max-width: 1180px) {
  .hero-grid,
  .container,
  .footer-inner {
    width: min(100%, 100%);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .comfort-grid,
  .happy-head,
  .happy-content-grid,
  .footer-main,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid,
  .project-showcase-grid,
  .cleaning-steps-grid,
  .google-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mezzo-builder-area {
    padding: 5.5rem 1.6rem;
  }

  .mezzo-builder-area.is-elementor-content {
    padding: 0;
  }

  .services-grid,
  .why-grid,
  .project-showcase-grid,
  .cleaning-steps-grid,
  .google-review-grid,
  .customer-video-grid,
  .happy-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-trust,
  .happy-proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    width: 100%;
  }

  .mobile-panel.open {
    max-height: calc(100vh - 6.4rem);
    overflow-y: auto;
  }

  .wpforms-container .wpforms-field {
    padding: 0.8rem 0;
  }
}


/* ═══════════════════════════════════════════════
   FINAL BUGFIX / RESPONSIVE GLOBAL OVERRIDES
   Keep all key colors and sizes controlled by :root variables.
═══════════════════════════════════════════════ */

/* Header: white background on desktop and mobile for readable sticky menu */
.site-header,
.site-header.scrolled,
.site-header.header-on-hero,
body:not(.home):not(.front-page) .site-header,
body:not(.home):not(.front-page) .site-header.header-on-hero {
  background: var(--header-bg);
  backdrop-filter: blur(1.4rem);
  -webkit-backdrop-filter: blur(1.4rem);
  border-bottom: 1px solid rgba(222, 192, 154, 0.65);
  box-shadow: 0 0.8rem 2.4rem rgba(43, 23, 15, 0.08);
}

.site-header .nav a,
.site-header.header-on-hero .nav a,
.site-header:not(.header-on-hero) .nav a,
body:not(.home):not(.front-page) .site-header .nav a {
  color: var(--header-menu-color);
  text-shadow: none;
}

.site-header .nav a:hover,
.site-header.header-on-hero .nav a:hover,
.site-header:not(.header-on-hero) .nav a:hover,
body:not(.home):not(.front-page) .site-header .nav a:hover {
  color: var(--header-menu-hover);
  background: var(--c-cream-2);
}

.site-header .nav .nav-cta,
.site-header.header-on-hero .nav .nav-cta,
.site-header:not(.header-on-hero) .nav .nav-cta {
  color: var(--text-white);
  background: var(--c-primary);
  text-shadow: none;
}

.site-header .nav .nav-cta:hover {
  color: var(--text-white);
  background: var(--c-primary-dk);
}

/* Logo clarity */
.site-header .brand img,
.site-header .brand .custom-logo,
.brand-logo {
  width: clamp(20rem, 22vw, 31rem);
  max-height: 5.8rem;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

/* Hero title clarity on dark banner */
.hero h1,
.hero h1.hero-animate {
  color: var(--text-white);
  text-shadow: 0 0.3rem 1.6rem rgba(0, 0, 0, 0.42);
}

.hero h1 em {
  color: #f0a170;
}

/* Hero video: use real customer poster image before video starts */
.hero-review-video-card {
  background:
    linear-gradient(135deg, rgba(36,18,9,0.18), rgba(36,18,9,0.08)),
    url("assets/images/customer-video-poster.jpg") center / cover no-repeat,
    var(--c-dark);
}

.hero-review-video-card video {
  background: transparent;
}

/* Service image classes: avoids inline background styles in templates */
.service-bg-curtains {
  background-image: url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=900&q=80");
}

.service-bg-blinds {
  background-image: url("https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=900&q=80");
}

.service-bg-wallpaper {
  background-image: url("https://images.unsplash.com/photo-1616137422495-1e9e46e2aa77?auto=format&fit=crop&w=900&q=80");
}

.service-bg-cleaning {
  background-image: url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=80");
}

/* Why Mezzo: four cards only */
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Footer readability */
.footer-title {
  color: var(--footer-heading-color);
}

.contact-item a:hover,
.contact-item strong:hover {
  color: var(--text-white);
}

.footer-list a:hover {
  color: var(--c-gold);
}

/* WPForms / Elementor content safety */
.elementor-section,
.elementor-container,
.elementor-widget-wrap {
  max-width: 100%;
}

.wpforms-container input,
.wpforms-container select,
.wpforms-container textarea {
  font-family: var(--font-body);
  font-size: var(--fs-body);
}

.wpforms-container button[type="submit"],
.wpforms-submit {
  font-family: var(--font-body);
  font-size: var(--fs-button);
  background: var(--c-primary);
  color: var(--text-white);
  border-radius: 999px;
}

/* Responsive safety */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header .brand img,
  .site-header .brand .custom-logo,
  .brand-logo {
    width: clamp(18rem, 30vw, 26rem);
  }
}

@media (max-width: 760px) {
  .site-header {
    background: var(--header-bg);
  }

  .brand {
    max-width: 70%;
  }

  .site-header .brand img,
  .site-header .brand .custom-logo,
  .brand-logo {
    width: clamp(16rem, 56vw, 23rem);
    max-height: 4.8rem;
    object-position: center center;
  }

  .hero h1 {
    font-size: var(--fs-hero-title);
    line-height: 1;
  }

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

  .hero-review-video-card {
    min-height: 38rem;
  }
}

/* ═══════════════════════════════════════════════
   FINAL ENHANCEMENT PATCH 2026-05-24
   Header CTA, hero title spacing, footer heading clarity.
   Controlled by :root variables above.
═══════════════════════════════════════════════ */
:root {
  --c-wa-dk: #1da851;
  --header-menu-hover-text: var(--white-color, #ffffff);
  --header-menu-hover-bg: var(--c-primary);
  --header-cta-bg: var(--c-wa);
  --header-cta-bg-hover: var(--c-wa-dk);
  --hero-title-margin-bottom: 5rem;
  --footer-heading-color: var(--white-color, #ffffff);
}

/* Header menu hover: clearer white text on feature colour */
.site-header .nav a:hover,
.site-header.header-on-hero .nav a:hover,
.site-header:not(.header-on-hero) .nav a:hover,
body:not(.home):not(.front-page) .site-header .nav a:hover {
  color: var(--header-menu-hover-text);
  background: var(--header-menu-hover-bg);
}

/* Header WhatsApp CTA: white text + WhatsApp green */
.site-header .nav .nav-cta,
.site-header.header-on-hero .nav .nav-cta,
.site-header:not(.header-on-hero) .nav .nav-cta,
body:not(.home):not(.front-page) .site-header .nav .nav-cta {
  color: var(--text-white);
  background: var(--header-cta-bg);
  box-shadow: 0 1rem 2.4rem rgba(37, 211, 102, 0.25);
}

.site-header .nav .nav-cta:hover,
.site-header.header-on-hero .nav .nav-cta:hover,
.site-header:not(.header-on-hero) .nav .nav-cta:hover,
body:not(.home):not(.front-page) .site-header .nav .nav-cta:hover {
  color: var(--text-white);
  background: var(--header-cta-bg-hover);
  box-shadow: 0 1.2rem 2.8rem rgba(37, 211, 102, 0.32);
}

/* Hero H1 spacing */
.hero h1,
.hero h1.hero-animate {
  margin-bottom: var(--hero-title-margin-bottom);
}

/* View Projects / outline button hover: white text on feature colour */
.btn-outline:hover,
.footer-actions .btn-outline:hover,
.hero-actions .btn-outline:hover {
  color: var(--text-white);
  background: var(--c-primary);
  border-color: var(--c-primary);
}

/* Footer sub headings */
.mezzo-footer .footer-title,
footer .footer-title {
  color: var(--footer-heading-color);
}

/* ═══════════════════════════════════════════════
   FINAL HERO H1 RESPONSIVE SIZE FIX
   Desktop = largest, tablet = medium, mobile = smaller.
   Adjust only these 3 variables when you want to tune the hero title.
═══════════════════════════════════════════════ */
:root {
  --fs-hero-title-desktop: 8.6rem;
  --fs-hero-title-tablet: 6.4rem;
  --fs-hero-title-mobile: 4.6rem;
}

.hero .hero-copy h1,
.hero .hero-copy h1.hero-animate {
  font-size: var(--fs-hero-title-desktop);
  line-height: 0.95;
  letter-spacing: -0.06rem;
}

@media (max-width: 1080px) {
  .hero .hero-copy h1,
  .hero .hero-copy h1.hero-animate {
    font-size: var(--fs-hero-title-tablet);
    line-height: 0.98;
  }
}

@media (max-width: 760px) {
  .hero .hero-copy h1,
  .hero .hero-copy h1.hero-animate {
    font-size: var(--fs-hero-title-mobile);
    line-height: 1.04;
    letter-spacing: -0.03rem;
  }
}

@media (max-width: 380px) {
  .hero .hero-copy h1,
  .hero .hero-copy h1.hero-animate {
    font-size: 4.2rem;
  }
}

/* ═══════════════════════════════════════════════
   FINAL PATCH — 2026-05-24
   1) Requested hero title sizing
   2) Tablet hamburger menu
   3) Footer phone number green
═══════════════════════════════════════════════ */
:root {
  --fs-hero-title-desktop: 6.2rem;
  --fs-hero-title-tablet: 5.5rem;
}

@media (max-width: 1080px) {
  .site-header .nav {
    display: none;
  }

  .site-header .mobile-toggle {
    display: block;
  }

  .mobile-panel {
    top: 7rem;
  }
}

@media (max-width: 760px) {
  .mobile-panel {
    top: 6.4rem;
  }
}

.mezzo-footer .contact-item a[href^="tel"],
.mezzo-footer .contact-item a[href*="wa.me"] {
  color: var(--c-wa);
}

.mezzo-footer .contact-item a[href^="tel"]:hover,
.mezzo-footer .contact-item a[href*="wa.me"]:hover {
  color: var(--c-wa);
}


/* Final requested refinements - 2026-05 */
:root {
  --footer-bottom-align: center;
  --video-play-icon-color: var(--c-dark);
  --video-play-icon-bg: rgba(255,255,255,0.96);
  --video-play-ring-bg: rgba(201,154,94,0.32);
}

.footer-bottom {
  justify-content: center;
  text-align: center;
}

.footer-bottom > * {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-play-overlay:hover,
.video-play-overlay:focus,
.video-play-overlay:active {
  background: transparent;
  outline: none;
}

.video-play-overlay:hover .play-icon,
.video-play-overlay:focus .play-icon,
.video-play-overlay:active .play-icon {
  color: var(--video-play-icon-color);
  background: var(--video-play-icon-bg);
  transform: scale(1.08);
}

.play-icon {
  color: var(--video-play-icon-color);
  background: var(--video-play-icon-bg);
}

.play-ring {
  background: var(--video-play-ring-bg);
}

/* ═══════════════════════════════════════════════
   NEW INNER PAGE TEMPLATES — Contact, About, Curtains, Blinds, Wallpaper
   Uses global font/color variables. No inline styling required.
═══════════════════════════════════════════════ */
:root {
  --page-card-bg: var(--white-color, #ffffff);
  --page-card-border: rgba(222,192,154,0.55);
  --page-soft-bg: #fdf8f3;
  --page-section-gap: 2.8rem;
  --page-image-radius: 2.8rem;
}

.inner-hero-btn {
  margin-top: 2.6rem;
}

.section-kicker {
  display: block;
  color: var(--c-primary);
  font-size: var(--fs-eyebrow);
  font-weight: 900;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.page-intro-section,
.founder-section,
.mezzo-contact-section {
  background: var(--c-white);
}

.section-alt,
.product-types-section,
.stats-story-section {
  background: var(--page-soft-bg);
}

.split-content-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(3.2rem, 6vw, 7.2rem);
  align-items: center;
}

.reverse-grid {
  grid-template-columns: 0.98fr 1.02fr;
}

.page-copy-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-card-border);
  border-radius: var(--r-lg);
  padding: clamp(2.8rem, 4vw, 4.8rem);
  box-shadow: 0 1.8rem 4.2rem rgba(43,23,15,0.08);
}

.page-copy-card h2 {
  color: var(--text-heading-dark);
  font-size: var(--fs-section-title);
  line-height: 1.08;
  margin-bottom: 1.8rem;
}

.page-copy-card p {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.signature-line {
  color: var(--c-primary);
  font-weight: 800;
  margin-top: 2rem;
}

.page-image-card {
  min-height: 48rem;
  border-radius: var(--page-image-radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--page-card-border);
  box-shadow: 0 2.4rem 5rem rgba(43,23,15,0.12);
  position: relative;
}

.page-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,18,9,0.22), transparent 48%);
}

.about-image-card {
  background-image: url("http://localhost/mezzocurtain/wp-content/uploads/2026/05/MezzoCurtainHouse.webp");
  background-size: cover;
  background-position: center center;
}

.founder-image-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.41.54-PM.jpeg");
  background-position: center center;
}


/* About template image alignment safeguard */
html body .about-image-card,
html body .founder-image-card {
  background-size: cover !important;
  background-position: center center !important;
}

.curtains-image-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House-_-Mah-Sing-Show-Unit-Nouvelle-Hotel-Sg-Besi.jpg");
}

.fabric-collection-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/MAH-SING-GROUPS_D-SARA-SENTRAL.jpg");
}

.blinds-image-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House_MAH-SING-GROUPS-DSARA-SENTRAL_00042-768x432.jpg");
}

.wallpaper-image-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/Wallpaper.jpg");
}

.wallpaper-gallery-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/PATTERNED.jpg");
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.story-stat {
  background: var(--c-white);
  border: 1px solid var(--page-card-border);
  border-radius: 2.4rem;
  padding: 3.2rem 2.2rem;
  text-align: center;
  box-shadow: 0 1.2rem 3.2rem rgba(43,23,15,0.06);
}

.story-stat strong {
  display: block;
  color: var(--c-primary);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.story-stat span {
  color: var(--text-muted);
  font-size: var(--fs-small);
  font-weight: 900;
  letter-spacing: 0.13rem;
  text-transform: uppercase;
}

.product-type-grid,
.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.8rem;
}

.feature-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-type-card,
.feature-card {
  background: var(--c-white);
  border: 1px solid var(--page-card-border);
  border-radius: 2.2rem;
  padding: 2.4rem;
  box-shadow: 0 1.4rem 3.4rem rgba(43,23,15,0.07);
}

.product-type-card strong,
.feature-card h3 {
  display: block;
  color: var(--text-heading-dark);
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.product-type-card span,
.feature-card p {
  color: var(--text-muted);
  font-size: 1.45rem;
  line-height: 1.7;
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: var(--c-cream-2);
  color: var(--c-primary);
  font-weight: 900;
  margin-bottom: 1.4rem;
}

.page-cta-band {
  padding: 5.8rem 5vw;
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary-dk));
  color: var(--text-white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}

.cta-band-inner span {
  display: block;
  color: var(--c-gold);
  font-size: var(--fs-eyebrow);
  font-weight: 900;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.cta-band-inner h2 {
  color: var(--text-white);
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 1.08;
  max-width: 76rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(2.4rem, 4vw, 4.8rem);
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: var(--c-white);
  border: 1px solid var(--page-card-border);
  border-radius: var(--r-lg);
  padding: clamp(2.8rem, 4vw, 4.6rem);
  box-shadow: 0 1.8rem 4.2rem rgba(43,23,15,0.08);
}

.contact-info-card h2,
.contact-form-card h2 {
  color: var(--text-heading-dark);
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 1.6rem;
}

.contact-info-card p,
.contact-form-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.contact-detail-list {
  display: grid;
  gap: 1.4rem;
}

.contact-detail {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: var(--page-soft-bg);
  border: 1px solid rgba(222,192,154,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-detail:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.2rem 2.8rem rgba(43,23,15,0.08);
}

.detail-icon {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-primary);
}

.contact-detail strong {
  display: block;
  color: var(--text-heading-dark);
  font-size: 1.58rem;
  line-height: 1.35;
  margin-bottom: 0.3rem;
}

.contact-detail small {
  display: block;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1.5;
}

.contact-form-placeholder {
  border: 1px dashed var(--c-tan);
  border-radius: 1.6rem;
  padding: 2.2rem;
  background: var(--page-soft-bg);
}

.contact-form-placeholder code {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 0.5rem;
  background: var(--c-cream-2);
  color: var(--c-primary-dk);
}

.mezzo-footer .footer-title {
  color: var(--footer-heading-color);
}

@media (max-width: 1080px) {
  .split-content-grid,
  .reverse-grid,
  .contact-layout,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .product-type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card-grid,
  .story-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-band-inner {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 767px) {
  .product-type-grid,
  .feature-card-grid,
  .story-stats-grid {
    grid-template-columns: 1fr;
  }

  .page-image-card {
    min-height: 34rem;
  }

  .contact-detail {
    grid-template-columns: 3.8rem 1fr;
  }

  .detail-icon {
    width: 3.8rem;
    height: 3.8rem;
  }
}


/* =========================================================
   Project System synced from child-project.zip
   Template file names kept unchanged: archive-project.php and single-project.php.
   Colours are mapped to the Bagus Web child global design variables.
========================================================= */
:root {
  --mz-primary: var(--c-primary);
  --mz-primary-dark: var(--c-primary-dk);
  --mz-accent: var(--c-accent);
  --mz-gold: var(--c-gold);
  --mz-cream: var(--c-white);
  --mz-cream-2: var(--c-cream-2);
  --mz-tan: var(--c-tan);
  --mz-dark: var(--c-dark);
  --mz-text: var(--text-main);
  --mz-muted: var(--text-muted);
  --mz-white: var(--text-white);
  --mz-container: 114rem;
  --mz-sidebar: 34rem;
  --mz-radius-sm: .8rem;
  --mz-radius: 1.2rem;
  --mz-radius-md: 1.6rem;
  --mz-radius-lg: 2.4rem;
  --mz-radius-pill: 99.9rem;
  --mz-shadow: 0 1.8rem 4.8rem rgba(44, 24, 16, 0.12);
  --mz-shadow-soft: 0 .8rem 2.4rem rgba(44, 24, 16, 0.07);
  --mz-shadow-card: 0 1.2rem 3.2rem rgba(44, 24, 16, 0.12);
}

/* Elementor / theme base */
.mz-project-archive,
.mz-project-single {
  background: var(--mz-cream);
  color: var(--mz-text);
  font-family: Raleway, Arial, sans-serif;
  font-size: var(--fs-16);
  line-height: 1.6;
}

/* Project hero */
.mz-project-hero {
  background: linear-gradient(135deg, var(--mz-dark), #4a2616);
  padding: var(--sp-96) var(--sp-24) var(--sp-80);
  position: relative;
  overflow: hidden;
}

.mz-project-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(to left, rgba(160, 82, 45, 0.23), transparent);
  pointer-events: none;
}

.mz-project-hero-inner {
  max-width: var(--mz-container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mz-eyebrow {
  display: block;
  color: var(--mz-gold);
  font-size: var(--fs-12);
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-bottom: var(--sp-12);
}

.mz-project-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(var(--fs-44), 5vw, var(--fs-74));
  line-height: 1.08;
  color: var(--mz-white);
  margin: 0 0 var(--sp-16);
}

.mz-project-hero p {
  max-width: 64rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-18);
  line-height: 1.75;
  margin: 0;
}

.mz-project-wrap {
  max-width: var(--mz-container);
  margin: 0 auto;
  padding: var(--sp-80) var(--sp-24);
}

/* Filter */
.mz-project-filter {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-bottom: var(--sp-32);
}

.mz-project-filter a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 0.1rem solid var(--mz-tan);
  border-radius: var(--mz-radius-pill);
  color: var(--mz-primary-dark);
  background: var(--mz-white);
  padding: var(--sp-8) var(--sp-16);
  font-size: var(--fs-14);
  line-height: 1.2;
  font-weight: 700;
  transition: 0.2s ease;
}

.mz-project-filter a:hover,
.mz-project-filter a.active {
  background: var(--mz-accent);
  border-color: var(--mz-accent);
  color: var(--mz-white);
}

/* Project archive grid */
.mz-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.mz-project-card {
  background: var(--mz-white);
  border: 0.1rem solid rgba(160, 82, 45, 0.22);
  border-radius: var(--mz-radius-md);
  overflow: hidden;
  box-shadow: var(--mz-shadow-soft);
  transition: 0.25s ease;
}

.mz-project-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: var(--mz-shadow);
}

.mz-project-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.mz-project-img {
  background: var(--mz-cream-2);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mz-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s ease;
}

.mz-project-card:hover .mz-project-img img {
  transform: scale(1.045);
}

.mz-project-placeholder {
  font-size: var(--fs-52);
}

.mz-project-info {
  padding: var(--sp-24);
}

.mz-project-cat {
  font-size: var(--fs-12);
  font-weight: 800;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--mz-primary);
  margin-bottom: var(--sp-8);
}

.mz-project-info h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--mz-dark);
  font-size: var(--fs-30);
  line-height: 1.15;
  margin: 0 0 var(--sp-12);
}

.mz-project-meta {
  font-size: var(--fs-14);
  color: var(--mz-muted);
  line-height: 1.6;
  display: grid;
  gap: var(--sp-4);
}

.mz-project-read {
  margin-top: var(--sp-16);
  color: var(--mz-primary);
  font-size: var(--fs-14);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* Single project hero */
.mz-single-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--sp-48);
  align-items: end;
}

.mz-back-link {
  display: inline-flex;
  margin-bottom: var(--sp-24);
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-14);
  font-weight: 700;
  text-decoration: none;
}

.mz-back-link:hover {
  color: var(--mz-white);
}

.mz-single-summary {
  background: rgba(253, 246, 240, 0.95);
  border: 0.1rem solid rgba(226, 196, 160, 0.75);
  border-radius: var(--mz-radius-md);
  padding: var(--sp-24);
  box-shadow: var(--mz-shadow);
}

.mz-single-summary-row {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-16);
  border-bottom: 0.1rem solid rgba(160, 82, 45, 0.17);
  padding: var(--sp-12) 0;
  font-size: var(--fs-18);
  line-height: 1.5;
}

.mz-single-summary-row:first-child {
  padding-top: 0;
}

.mz-single-summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mz-single-summary-row span {
  color: var(--mz-muted);
}

.mz-single-summary-row strong {
  color: var(--mz-dark);
  text-align: right;
}

/* Single project overview */
.mz-single-layout {
  display: grid;
  grid-template-columns: 1fr var(--mz-sidebar);
  gap: var(--sp-32);
  align-items: start;
}

.mz-content-card,
.mz-spec-box {
  background: var(--mz-white);
  border: 0.1rem solid rgba(160, 82, 45, 0.2);
  border-radius: var(--mz-radius-md);
  box-shadow: 0 1.2rem 3.2rem rgba(44, 24, 16, 0.08);
}

.mz-content-card {
  padding: var(--sp-32);
}

.mz-content-card h2,
.mz-gallery-title h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--mz-dark);
  font-size: var(--fs-44);
  line-height: 1.14;
  margin: 0 0 var(--sp-16);
}

.mz-content-card p {
  font-size: var(--fs-16);
  line-height: 1.8;
  color: var(--mz-muted);
}

.mz-spec-box {
  padding: var(--sp-24);
  position: sticky;
  top: var(--sp-96);
}

.mz-spec-box h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--mz-dark);
  font-size: var(--fs-30);
  line-height: 1.15;
  margin: 0 0 var(--sp-16);
}

.mz-spec-row {
  display: grid;
  grid-template-columns: 9.6rem 1fr;
  gap: var(--sp-12);
  border-bottom: 0.1rem solid rgba(160, 82, 45, 0.16);
  padding: var(--sp-12) 0;
  font-size: var(--fs-14);
  line-height: 1.5;
}

.mz-spec-row:last-child {
  border-bottom: 0;
}

.mz-spec-row span {
  color: var(--mz-muted);
}

.mz-spec-row strong {
  color: var(--mz-dark);
}

/* New redesigned single-project elements */
.mz-banner-logo-card {
  width: 100%;
  max-width: 35rem;
  min-height: 8rem;
  padding: var(--sp-12) var(--sp-16);
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  border-radius: var(--mz-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--mz-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mz-banner-logo-card img {
  width: auto;
  max-width: 35rem;
  max-height: 8rem;
  object-fit: contain;
  display: block;
}

.mz-banner-logo-placeholder {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  border: 0.1rem dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--mz-radius);
  font-size: var(--fs-14);
}

.mz-featured-card {
  background: var(--mz-white);
  border: 0.1rem solid rgba(160, 82, 45, 0.16);
  border-radius: var(--mz-radius-md);
  box-shadow: var(--mz-shadow-soft);
  overflow: hidden;
}

.mz-featured-title {
  padding: var(--sp-24);
  background: var(--mz-dark);
}

.mz-featured-title span {
  display: block;
  color: var(--mz-gold);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.mz-featured-title h3 {
  margin: var(--sp-8) 0 0;
  color: var(--mz-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--fs-30);
  line-height: 1.15;
  font-weight: 600;
}

.mz-featured-image {
  min-height: 36rem;
  background: var(--mz-cream-2);
  overflow: hidden;
}

.mz-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 36rem;
  object-fit: cover;
  display: block;
}

.mz-featured-placeholder {
  min-height: 36rem;
  display: grid;
  place-items: center;
  color: var(--mz-primary-dark);
  background: linear-gradient(135deg, var(--mz-cream-2), var(--mz-tan));
  font-size: var(--fs-16);
}

.mz-overview-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-12);
  margin-top: var(--sp-32);
}

.mz-overview-chip {
  padding: var(--sp-12) var(--sp-16);
  border-radius: var(--mz-radius);
  background: var(--mz-cream-2);
  border: 0.1rem solid var(--mz-tan);
}

.mz-overview-chip span {
  display: block;
  margin-bottom: var(--sp-4);
  color: var(--mz-primary);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.mz-overview-chip strong {
  display: block;
  color: var(--mz-dark);
  font-size: var(--fs-14);
  line-height: 1.45;
  font-weight: 600;
}

/* Gallery */
.mz-gallery-section {
  padding-top: var(--sp-24);
}

.mz-gallery-title {
  text-align: center;
  margin-bottom: var(--sp-32);
}

.mz-gallery-grid,
.mezzo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-16);
}

.mz-gallery-item,
.mezzo-gallery-item {
  display: block;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  border-radius: var(--mz-radius-md);
  overflow: hidden;
  background: var(--mz-cream-2);
  box-shadow: var(--mz-shadow-card);
}

.mz-gallery-item img,
.mezzo-gallery-item img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mz-gallery-item:hover img,
.mezzo-gallery-item:hover img {
  transform: scale(1.05);
}

.mz-empty,
.mezzo-empty-gallery {
  background: #fff4ee;
  border: 0.1rem solid var(--mz-tan);
  border-radius: var(--mz-radius);
  padding: var(--sp-24);
  text-align: center;
  color: var(--mz-muted);
}

/* Lightbox */
.mz-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: var(--sp-24);
}

.mz-lightbox.active {
  display: flex;
}

.mz-lightbox img {
  max-width: min(110rem, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--mz-radius);
  box-shadow: 0 2.4rem 8rem rgba(0, 0, 0, 0.55);
}

.mz-lightbox-close {
  position: absolute;
  top: var(--sp-24);
  right: var(--sp-24);
  width: 4.8rem;
  height: 4.8rem;
  border-radius: var(--mz-radius-pill);
  border: 0.1rem solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--mz-white);
  font-size: var(--fs-36);
  line-height: 1;
  cursor: pointer;
}

.mz-lightbox-close:hover {
  background: var(--mz-white);
  color: #111;
}

/* Pagination */
.navigation.pagination a,
.navigation.pagination span {
  display: inline-flex;
  margin: 0 var(--sp-4);
  padding: var(--sp-8) var(--sp-12);
  border: 0.1rem solid var(--mz-tan);
  border-radius: var(--mz-radius-sm);
  text-decoration: none;
  color: var(--mz-primary-dark);
  font-size: var(--fs-14);
}

.navigation.pagination .current {
  background: var(--mz-primary);
  border-color: var(--mz-primary);
  color: var(--mz-white);
}

/* Tablet */
@media (max-width: 64em) {
  .mz-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mz-single-head,
  .mz-single-layout {
    grid-template-columns: 1fr;
  }

  .mz-spec-box {
    position: static;
  }

  .mz-gallery-grid,
  .mezzo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 48em) {
  html {
    font-size: 56.25%;
  }

  .mz-project-hero {
    padding: var(--sp-64) var(--sp-16) var(--sp-48);
    text-align: center;
  }

  .mz-project-hero h1 {
    font-size: var(--fs-44);
  }

  .mz-project-hero p {
    font-size: var(--fs-16);
    text-align: left;
  }

  .mz-project-wrap {
    padding: var(--sp-48) var(--sp-16);
  }

  .mz-project-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-16);
  }

  .mz-project-info h2 {
    font-size: var(--fs-30);
    text-align: center;
  }

  .mz-project-meta {
    text-align: left;
    font-size: var(--fs-16);
  }

  .mz-single-summary-row,
  .mz-spec-row {
    font-size: var(--fs-16);
  }

  .mz-content-card {
    padding: var(--sp-24) var(--sp-16);
  }

  .mz-content-card h2,
  .mz-gallery-title h2 {
    font-size: var(--fs-36);
    text-align: center;
  }

  .mz-content-card p {
    font-size: var(--fs-16);
    text-align: left;
  }

  .mz-banner-logo-card {
    margin: 0 auto;
    max-width: 100%;
  }

  .mz-overview-meta {
    grid-template-columns: 1fr;
  }

  .mz-featured-image,
  .mz-featured-image img,
  .mz-featured-placeholder {
    min-height: 24rem;
  }

  .mz-gallery-grid,
  .mezzo-gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .mz-gallery-item img,
  .mezzo-gallery-item img {
    height: 24rem;
  }
}


/* Project archive template CSS */
/* ===== Mezzo Project Archive — Safe Inline CSS ===== */
.mz-archive-page {
  background: var(--c-white);
  color: var(--text-main);
  font-family: var(--font-body);
}

.mz-archive-hero {
  min-height: 230px;
  padding: 92px 20px 70px;
  background:
    linear-gradient(rgba(20, 14, 10, .68), rgba(20, 14, 10, .68)),
    linear-gradient(135deg, #5c3926, #1c1008);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mz-archive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 70px,
    rgba(255,255,255,.035) 71px
  );
  pointer-events: none;
}

.mz-archive-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.mz-archive-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--c-gold);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mz-archive-hero h1 {
  margin: 0 0 14px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 600;
}

.mz-archive-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.7;
}

.mz-archive-main {
  padding: 72px 20px 88px;
}

.mz-archive-container {
  max-width: 1180px;
  margin: 0 auto;
}

.mz-archive-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.mz-archive-intro .mz-archive-eyebrow {
  color: var(--c-primary);
  margin-bottom: 10px;
}

.mz-archive-intro h2 {
  margin: 0 0 14px;
  color: var(--c-dark);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  font-weight: 600;
}

.mz-archive-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.mz-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.mz-archive-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--text-white);
  border: 1px solid rgba(160,82,45,.15);
  box-shadow: 0 14px 36px rgba(44,24,16,.09);
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mz-archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(44,24,16,.16);
  border-color: rgba(160,82,45,.35);
}

.mz-archive-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--c-cream-2);
  overflow: hidden;
}

.mz-archive-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.mz-archive-card:hover .mz-archive-img img {
  transform: scale(1.045);
}

.mz-archive-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--c-primary-dk);
  font-size: 15px;
  background: linear-gradient(135deg, var(--c-cream-2), var(--c-tan));
}

.mz-archive-content {
  flex: 1;
  padding: 26px 22px 28px;
  text-align: center;
}

.mz-archive-content h3 {
  margin: 0 0 18px;
  color: var(--c-primary);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .2px;
}

.mz-archive-services {
  min-height: 52px;
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.mz-archive-meta {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.mz-archive-meta span {
  display: block;
}

.mz-archive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 25px;
  background: var(--c-primary);
  color: var(--text-white);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  transition: background .2s ease, transform .2s ease;
}

.mz-archive-card:hover .mz-archive-btn {
  background: var(--c-primary);
  transform: translateY(-1px);
}

.mz-archive-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  background: var(--text-white);
  border: 1px solid rgba(160,82,45,.15);
  text-align: center;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .mz-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mz-archive-hero {
    padding: 70px 18px 54px;
    min-height: 200px;
  }

  .mz-archive-hero h1 {
    font-size: 44px;
  }

  .mz-archive-hero p {
    font-size: 16px;
  }

  .mz-archive-main {
    padding: 48px 16px 64px;
  }

  .mz-archive-intro {
    margin-bottom: 30px;
  }

  .mz-archive-intro h2 {
    font-size: 36px;
  }

  .mz-archive-intro p {
    text-align: left;
    font-size: 16px;
  }

  .mz-archive-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mz-archive-content {
    padding: 24px 18px 26px;
  }

  .mz-archive-content h3 {
    font-size: 23px;
  }

  .mz-archive-services {
    min-height: auto;
    font-size: 16px;
    text-align: left;
  }

  .mz-archive-meta {
    text-align: left;
    font-size: 13px;
  }

  .mz-archive-btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }
}


/* Project single image slider lightbox */
.mz-single-cover-trigger,
.mz-project-gallery-trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: inherit;
  font: inherit;
}

.mz-single-cover-trigger img,
.mz-project-gallery-trigger img {
  display: block;
  width: 100%;
}

.mz-project-gallery-trigger .mz-archive-img {
  display: block;
}

.mz-project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 76px;
  background: rgba(0, 0, 0, 0.9);
}

.mz-project-lightbox.is-active {
  display: flex;
}

body.mz-project-lightbox-open {
  overflow: hidden;
}

.mz-project-lightbox-stage {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 150px);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mz-project-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.mz-project-lightbox-close,
.mz-project-lightbox-nav {
  position: fixed;
  z-index: 1000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mz-project-lightbox-close {
  top: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  font-size: 38px;
  line-height: 1;
}

.mz-project-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 74px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
}

.mz-project-lightbox-prev {
  left: 22px;
}

.mz-project-lightbox-next {
  right: 22px;
}

.mz-project-lightbox-close:hover,
.mz-project-lightbox-nav:hover,
.mz-project-lightbox-close:focus-visible,
.mz-project-lightbox-nav:focus-visible {
  background: #fff;
  color: #111;
  outline: none;
}

.mz-project-lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
}

@media (max-width: 760px) {
  .mz-project-lightbox {
    padding: 64px 54px;
  }

  .mz-project-lightbox-stage,
  .mz-project-lightbox-stage img {
    max-height: calc(100vh - 132px);
  }

  .mz-project-lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 32px;
  }

  .mz-project-lightbox-nav {
    width: 42px;
    height: 58px;
    font-size: 26px;
  }

  .mz-project-lightbox-prev {
    left: 8px;
  }

  .mz-project-lightbox-next {
    right: 8px;
  }

  .mz-project-lightbox-counter {
    bottom: 14px;
    font-size: 12px;
  }
}

/* Patch: project single cover alignment and lightbox controls */
.mz-single-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.mz-single-cover-trigger {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mz-single-cover-trigger img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.mz-project-lightbox-close,
.mz-project-lightbox-nav {
  background: #fff;
  color: #111;
  border-color: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.mz-project-lightbox-close:hover,
.mz-project-lightbox-nav:hover,
.mz-project-lightbox-close:focus-visible,
.mz-project-lightbox-nav:focus-visible {
  background: #f4f4f4;
  color: #111;
  border-color: #f4f4f4;
}

.mz-project-lightbox-close {
  border-radius: 10px;
  font-size: 28px;
  font-weight: 700;
}

.mz-project-lightbox-nav {
  border-radius: 10px;
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .mz-single-cover {
    margin-bottom: 50px;
  }

  .mz-project-lightbox-close,
  .mz-project-lightbox-nav {
    background: #fff;
    color: #111;
    border-color: #fff;
  }
}

/* Final override: force project lightbox buttons white with black icons */
body .mz-project-lightbox .mz-project-lightbox-close,
body .mz-project-lightbox .mz-project-lightbox-nav,
body .mz-project-lightbox.is-active .mz-project-lightbox-close,
body .mz-project-lightbox.is-active .mz-project-lightbox-nav,
body button.mz-project-lightbox-close,
body button.mz-project-lightbox-nav {
  background: var(--white-color, #ffffff) !important;
  background-color: var(--white-color, #ffffff) !important;
  color: #111111 !important;
  border: 1px solid var(--white-color, #ffffff) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35) !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

body .mz-project-lightbox .mz-project-lightbox-close:hover,
body .mz-project-lightbox .mz-project-lightbox-nav:hover,
body .mz-project-lightbox .mz-project-lightbox-close:focus,
body .mz-project-lightbox .mz-project-lightbox-nav:focus,
body .mz-project-lightbox .mz-project-lightbox-close:focus-visible,
body .mz-project-lightbox .mz-project-lightbox-nav:focus-visible,
body button.mz-project-lightbox-close:hover,
body button.mz-project-lightbox-nav:hover,
body button.mz-project-lightbox-close:focus,
body button.mz-project-lightbox-nav:focus {
  background: var(--white-color, #ffffff) !important;
  background-color: var(--white-color, #ffffff) !important;
  color: #111111 !important;
  border-color: var(--white-color, #ffffff) !important;
  outline: 2px solid rgba(17, 17, 17, 0.18) !important;
  outline-offset: 2px !important;
}

body .mz-project-lightbox .mz-project-lightbox-close,
body button.mz-project-lightbox-close {
  width: 50px !important;
  height: 50px !important;
  border-radius: 10px !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body .mz-project-lightbox .mz-project-lightbox-nav,
body button.mz-project-lightbox-nav {
  width: 58px !important;
  height: 74px !important;
  border-radius: 10px !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

@media (max-width: 760px) {
  body .mz-project-lightbox .mz-project-lightbox-close,
  body button.mz-project-lightbox-close {
    width: 44px !important;
    height: 44px !important;
    font-size: 28px !important;
  }

  body .mz-project-lightbox .mz-project-lightbox-nav,
  body button.mz-project-lightbox-nav {
    width: 42px !important;
    height: 58px !important;
    font-size: 26px !important;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER CONTACT WHITE PATCH — 2026-05-24
   Keep footer contact icon and phone number white.
   This overrides the earlier WhatsApp-green footer phone rule.
═══════════════════════════════════════════════ */
.mezzo-footer .contact-item .contact-icon,
.mezzo-footer .contact-list .contact-icon,
footer.mezzo-footer .contact-icon {
  color: var(--white-color, #ffffff) !important;
}

.mezzo-footer .contact-item a,
.mezzo-footer .contact-item a[href^="tel"],
.mezzo-footer .contact-item a[href*="wa.me"],
footer.mezzo-footer .contact-item a[href*="wa.me"] {
  color: var(--white-color, #ffffff) !important;
}

.mezzo-footer .contact-item a:hover,
.mezzo-footer .contact-item a[href^="tel"]:hover,
.mezzo-footer .contact-item a[href*="wa.me"]:hover,
footer.mezzo-footer .contact-item a[href*="wa.me"]:hover {
  color: var(--white-color, #ffffff) !important;
}



/* ═══════════════════════════════════════════════
   FINAL DEEP FOOTER PHONE WHITE FIX — 2026-05-24
   Fixes two issues:
   1) The previous phone icon was an emoji, so CSS color could not force it white reliably.
   2) The earlier WhatsApp footer rule made wa.me links green.
═══════════════════════════════════════════════ */
footer.mezzo-footer .footer-phone-contact .contact-icon-phone,
footer.mezzo-footer .contact-item .contact-icon-phone,
.mezzo-footer .footer-phone-contact .contact-icon-phone {
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
  background: transparent !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

footer.mezzo-footer .footer-phone-contact a.footer-phone-link,
footer.mezzo-footer .footer-phone-contact a.footer-phone-link:link,
footer.mezzo-footer .footer-phone-contact a.footer-phone-link:visited,
footer.mezzo-footer .footer-phone-contact a.footer-phone-link:hover,
footer.mezzo-footer .footer-phone-contact a.footer-phone-link:focus,
footer.mezzo-footer .footer-phone-contact a.footer-phone-link:active,
footer.mezzo-footer .contact-list .footer-phone-contact a[href*="wa.me"],
footer.mezzo-footer .contact-list .footer-phone-contact a[href*="wa.me"]:link,
footer.mezzo-footer .contact-list .footer-phone-contact a[href*="wa.me"]:visited,
footer.mezzo-footer .contact-list .footer-phone-contact a[href*="wa.me"]:hover,
footer.mezzo-footer .contact-list .footer-phone-contact a[href*="wa.me"]:focus,
footer.mezzo-footer .contact-list .footer-phone-contact a[href*="wa.me"]:active {
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
  text-shadow: none !important;
}


/* ═══════════════════════════════════════════════
   HEADER SUB MENU + RIGHT WHATSAPP BUTTON PATCH
   Requested: desktop submenu display and WhatsApp button on right.
═══════════════════════════════════════════════ */
.site-header {
  gap: clamp(1.2rem, 2vw, 2.4rem);
}

.site-header .nav {
  margin-left: auto;
}

.site-header .nav .menu > li,
.site-header .nav ul > li {
  position: relative;
}

.site-header .nav .menu > li > a,
.site-header .nav ul > li > a {
  white-space: nowrap;
}

.site-header .nav .menu-item-has-children > a::after {
  content: "▾";
  display: inline-block;
  margin-left: 0.55rem;
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-0.05rem);
}

.site-header .nav .sub-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 0;
  z-index: 1005;
  min-width: 22rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  margin: 0;
  list-style: none;
  background: rgba(255, 248, 241, 0.99);
  border: 1px solid rgba(222, 192, 154, 0.72);
  border-radius: 1.4rem;
  box-shadow: 0 1.4rem 3.4rem rgba(43, 23, 15, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-header .nav .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.2rem;
  height: 1.2rem;
}

.site-header .nav li:hover > .sub-menu,
.site-header .nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header .nav .sub-menu li {
  width: 100%;
}

.site-header .nav .sub-menu a,
.site-header.header-on-hero .nav .sub-menu a,
.site-header:not(.header-on-hero) .nav .sub-menu a,
body:not(.home):not(.front-page) .site-header .nav .sub-menu a {
  width: 100%;
  justify-content: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  color: var(--header-menu-color);
  background: transparent;
  text-align: left;
}

.site-header .nav .sub-menu a:hover,
.site-header .nav .sub-menu a:focus {
  color: var(--text-white) !important;
  background: var(--c-primary) !important;
}

.site-header .nav .sub-menu .sub-menu {
  top: -1rem;
  left: calc(100% + 0.8rem);
}

.site-header .nav .sub-menu .menu-item-has-children > a::after {
  content: "›";
  margin-left: auto;
}

.header-whatsapp-cta,
.header-whatsapp-cta:link,
.header-whatsapp-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 4.4rem;
  padding: 0 2.2rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
  font-family: var(--font-body);
  font-size: var(--fs-menu);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 1rem 2.4rem rgba(37, 211, 102, 0.26);
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.header-whatsapp-cta:hover,
.header-whatsapp-cta:focus,
.header-whatsapp-cta:active {
  background: #1da851;
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
  transform: translateY(-0.2rem);
  box-shadow: 0 1.2rem 2.8rem rgba(37, 211, 102, 0.34);
}

.mobile-whatsapp-cta,
.mobile-whatsapp-cta:link,
.mobile-whatsapp-cta:visited {
  display: none;
  padding: 1.25rem 1.4rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
  font-size: var(--fs-body);
  font-weight: 800;
  text-align: center;
}

.mobile-whatsapp-cta:hover,
.mobile-whatsapp-cta:focus,
.mobile-whatsapp-cta:active {
  background: #1da851;
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
}

.mobile-panel .sub-menu {
  position: static;
  display: grid;
  gap: 0.45rem;
  margin: 0.6rem 0 0 1.2rem;
  padding: 0 0 0 1.2rem;
  list-style: none;
  border-left: 2px solid rgba(201, 154, 94, 0.45);
}

.mobile-panel .sub-menu a {
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.45rem;
}

.mobile-panel .menu-item-has-children > a::after {
  content: "▾";
  float: right;
}

@media (max-width: 1180px) {
  .header-whatsapp-cta {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .site-header .nav a {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 1080px) {
  .header-whatsapp-cta {
    display: none;
  }

  .mobile-whatsapp-cta {
    display: block;
  }

  .mobile-panel .menu,
  .mobile-panel ul {
    display: grid;
    gap: 0.6rem;
  }
}


/* =========================================================
   Final clear scroll-down cue for all Mezzo templates
   Applies to: Projects, Services, Curtain Cleaning, About Us,
   Contact, Curtains, Blinds, Wallpaper and homepage sections.
   ========================================================= */
.hero,
.inner-page-hero,
.mz-archive-hero,
main > .section,
main > .section-alt,
main > .section-dark,
main > .page-intro-section,
main > .product-types-section,
main > .stats-story-section,
main > .founder-section,
main > .mezzo-contact-section,
main > .page-cta-band {
  position: relative !important;
}

.hero,
.inner-page-hero,
.mz-archive-hero {
  padding-bottom: clamp(9rem, 9vw, 12rem) !important;
}

main > .section,
main > .section-alt,
main > .section-dark,
main > .page-intro-section,
main > .product-types-section,
main > .stats-story-section,
main > .founder-section,
main > .mezzo-contact-section {
  padding-bottom: clamp(9rem, 8vw, 12rem) !important;
}

.scroll-cue,
.mz-section-scroll-cue {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 2.2rem !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  min-width: 13.8rem !important;
  height: auto !important;
  min-height: 5.4rem !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  padding: 0.85rem 1.5rem 0.75rem !important;
  border: 1px solid rgba(201, 154, 94, 0.72) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #241209 !important;
  box-shadow: 0 1.4rem 3.4rem rgba(0, 0, 0, 0.22) !important;
  cursor: pointer !important;
  z-index: 25 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-decoration: none !important;
  line-height: 1 !important;
  font-family: var(--font-body, Arial, sans-serif) !important;
  -webkit-tap-highlight-color: transparent !important;
}

.scroll-cue span,
.mz-section-scroll-cue span,
.mz-section-scroll-cue-text {
  display: block !important;
  color: #241209 !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18rem !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  text-shadow: none !important;
  white-space: nowrap !important;
}

.scroll-cue i {
  display: none !important;
}

.mz-section-scroll-cue-icon,
.scroll-cue .mz-section-scroll-cue-icon {
  display: block !important;
  width: 2.2rem !important;
  height: 2.2rem !important;
  color: #7a3a1f !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  filter: drop-shadow(0 0.2rem 0.3rem rgba(0,0,0,0.15));
  animation: mzScrollArrowMove 1.05s ease-in-out infinite;
}

.scroll-cue:hover,
.scroll-cue:focus-visible,
.mz-section-scroll-cue:hover,
.mz-section-scroll-cue:focus-visible {
  background: var(--white-color, #ffffff) !important;
  color: #1b0e08 !important;
  border-color: #c99a5e !important;
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.30) !important;
  outline: 0 !important;
}

.scroll-cue.is-active,
.mz-section-scroll-cue.is-active,
.is-section-active > .scroll-cue,
.is-section-active > .mz-section-scroll-cue {
  animation: mzScrollHeartbeat 1.35s ease-in-out infinite;
}

.section-dark .mz-section-scroll-cue,
.mz-archive-hero .mz-section-scroll-cue,
.inner-page-hero .mz-section-scroll-cue,
.hero .scroll-cue,
.hero .mz-section-scroll-cue {
  background: rgba(255, 255, 255, 0.98) !important;
  color: #241209 !important;
  border-color: rgba(222, 192, 154, 0.95) !important;
}

@keyframes mzScrollHeartbeat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  14% { transform: translateX(-50%) scale(1.08); }
  28% { transform: translateX(-50%) scale(1); }
  42% { transform: translateX(-50%) scale(1.06); }
  70% { transform: translateX(-50%) scale(1); }
}

@keyframes mzScrollArrowMove {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.35rem); }
}

@media (max-width: 760px) {
  .scroll-cue,
  .mz-section-scroll-cue {
    bottom: 1.35rem !important;
    min-width: 12.8rem !important;
    min-height: 5rem !important;
    padding: 0.75rem 1.3rem 0.65rem !important;
  }

  .scroll-cue span,
  .mz-section-scroll-cue span,
  .mz-section-scroll-cue-text {
    font-size: 0.95rem !important;
    letter-spacing: 0.14rem !important;
  }

  .mz-section-scroll-cue-icon,
  .scroll-cue .mz-section-scroll-cue-icon {
    width: 2rem !important;
    height: 2rem !important;
  }
}

/* =========================================================
   Final transparent arrow scroll cue override
   Uses assets/images/arrow-down.png for every section.
   ========================================================= */
.scroll-cue,
.mz-section-scroll-cue {
  width: clamp(4.8rem, 5vw, 6.4rem) !important;
  min-width: 0 !important;
  height: clamp(4.8rem, 5vw, 6.4rem) !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: transparent !important;
  gap: 0 !important;
  overflow: visible !important;
}

.scroll-cue::before,
.scroll-cue::after,
.mz-section-scroll-cue::before,
.mz-section-scroll-cue::after {
  display: none !important;
  content: none !important;
}

.scroll-cue span,
.mz-section-scroll-cue span,
.mz-section-scroll-cue-text {
  display: none !important;
}

.scroll-cue i {
  display: none !important;
}

.mz-section-scroll-cue-icon,
.scroll-cue .mz-section-scroll-cue-icon,
.scroll-cue > img,
.mz-section-scroll-cue > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0.95 !important;
  filter: drop-shadow(0 0.16rem 0.28rem rgba(255,255,255,0.65)) drop-shadow(0 0.22rem 0.5rem rgba(0,0,0,0.2)) !important;
  animation: mzTransparentArrowFloat 1.25s ease-in-out infinite !important;
}

/* Dark / brown hero sections need a light arrow, while white sections keep the uploaded black arrow. */
.hero .mz-section-scroll-cue-icon,
.hero .scroll-cue > img,
.inner-page-hero .mz-section-scroll-cue-icon,
.inner-page-hero .scroll-cue > img,
.mz-archive-hero .mz-section-scroll-cue-icon,
.mz-archive-hero .scroll-cue > img,
.section-dark .mz-section-scroll-cue-icon,
.section-dark .scroll-cue > img {
  filter: invert(1) drop-shadow(0 0.18rem 0.35rem rgba(0,0,0,0.8)) !important;
}

.scroll-cue:hover,
.scroll-cue:focus-visible,
.mz-section-scroll-cue:hover,
.mz-section-scroll-cue:focus-visible {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.scroll-cue:hover .mz-section-scroll-cue-icon,
.scroll-cue:focus-visible .mz-section-scroll-cue-icon,
.mz-section-scroll-cue:hover .mz-section-scroll-cue-icon,
.mz-section-scroll-cue:focus-visible .mz-section-scroll-cue-icon {
  opacity: 1 !important;
}

.scroll-cue.is-active,
.mz-section-scroll-cue.is-active,
.is-section-active > .scroll-cue,
.is-section-active > .mz-section-scroll-cue {
  animation: mzTransparentCueHeartbeat 1.35s ease-in-out infinite !important;
}

@keyframes mzTransparentCueHeartbeat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  15% { transform: translateX(-50%) scale(1.12); }
  30% { transform: translateX(-50%) scale(1); }
  45% { transform: translateX(-50%) scale(1.08); }
  70% { transform: translateX(-50%) scale(1); }
}

@keyframes mzTransparentArrowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.45rem); }
}

@media (max-width: 760px) {
  .scroll-cue,
  .mz-section-scroll-cue {
    width: 4.8rem !important;
    height: 4.8rem !important;
    bottom: 1.8rem !important;
  }
}

/* =========================================================
   FINAL FIX: Transparent scroll arrow only (no square/image background)
   ========================================================= */
.scroll-cue,
.mz-section-scroll-cue {
  width: 7.2rem !important;
  height: 7.2rem !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
  color: var(--white-color, #ffffff) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.scroll-cue *,
.mz-section-scroll-cue * {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.scroll-cue span,
.mz-section-scroll-cue span,
.mz-section-scroll-cue-text,
.scroll-cue i,
.scroll-cue img,
.mz-section-scroll-cue img,
.scroll-cue .mz-section-scroll-cue-icon,
.mz-section-scroll-cue .mz-section-scroll-cue-icon {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.scroll-cue::before,
.scroll-cue::after,
.mz-section-scroll-cue::before,
.mz-section-scroll-cue::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  width: 2.7rem !important;
  height: 2.7rem !important;
  border-right: 0.36rem solid currentColor !important;
  border-bottom: 0.36rem solid currentColor !important;
  border-top: 0 !important;
  border-left: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0.28rem !important;
  transform: translateX(-50%) rotate(45deg) !important;
  filter: drop-shadow(0 0.12rem 0.18rem rgba(0,0,0,0.55)) !important;
}

.scroll-cue::before,
.mz-section-scroll-cue::before {
  top: 0.65rem !important;
}

.scroll-cue::after,
.mz-section-scroll-cue::after {
  top: 2.75rem !important;
}

/* Keep arrow visible on light background sections */
.section-light .scroll-cue,
.section-light .mz-section-scroll-cue,
body:not(.home) .scroll-cue,
body:not(.home) .mz-section-scroll-cue {
  color: #2d1a12 !important;
}

/* Keep hero / dark brown sections white */
.hero .scroll-cue,
.hero .mz-section-scroll-cue,
.inner-page-hero .scroll-cue,
.inner-page-hero .mz-section-scroll-cue,
.mz-archive-hero .scroll-cue,
.mz-archive-hero .mz-section-scroll-cue,
.section-dark .scroll-cue,
.section-dark .mz-section-scroll-cue,
.mezzo-brown-section .scroll-cue,
.mezzo-brown-section .mz-section-scroll-cue {
  color: var(--white-color, #ffffff) !important;
}

.scroll-cue:hover,
.scroll-cue:focus-visible,
.mz-section-scroll-cue:hover,
.mz-section-scroll-cue:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: translateX(-50%) scale(1.08) !important;
}

.scroll-cue.is-active,
.mz-section-scroll-cue.is-active,
.is-section-active > .scroll-cue,
.is-section-active > .mz-section-scroll-cue {
  animation: mzTransparentCueHeartbeat 1.35s ease-in-out infinite !important;
}

@media (max-width: 760px) {
  .scroll-cue,
  .mz-section-scroll-cue {
    width: 5.8rem !important;
    height: 5.8rem !important;
  }
  .scroll-cue::before,
  .scroll-cue::after,
  .mz-section-scroll-cue::before,
  .mz-section-scroll-cue::after {
    width: 2.2rem !important;
    height: 2.2rem !important;
    border-right-width: 0.3rem !important;
    border-bottom-width: 0.3rem !important;
  }
  .scroll-cue::before,
  .mz-section-scroll-cue::before {
    top: 0.55rem !important;
  }
  .scroll-cue::after,
  .mz-section-scroll-cue::after {
    top: 2.3rem !important;
  }
}

/* =========================================================
   FINAL PATCH: Scroll arrow must stay transparent in all states
   + header sticky/fixed on top globally
   ========================================================= */
html {
  scroll-padding-top: 8.5rem;
}

.site-header,
.site-header.scrolled,
.site-header.header-on-hero,
body:not(.home):not(.front-page) .site-header,
body:not(.home):not(.front-page) .site-header.header-on-hero {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  transform: none !important;
}

body.admin-bar .site-header,
body.admin-bar .site-header.scrolled,
body.admin-bar .site-header.header-on-hero {
  top: 32px !important;
}

@media (max-width: 782px) {
  body.admin-bar .site-header,
  body.admin-bar .site-header.scrolled,
  body.admin-bar .site-header.header-on-hero {
    top: 46px !important;
  }
}

.mobile-panel,
.mobile-panel.open {
  position: fixed !important;
  z-index: 99998 !important;
}

.scroll-cue,
.scroll-cue:link,
.scroll-cue:visited,
.scroll-cue:hover,
.scroll-cue:focus,
.scroll-cue:focus-visible,
.scroll-cue:active,
.scroll-cue.is-active,
.mz-section-scroll-cue,
.mz-section-scroll-cue:link,
.mz-section-scroll-cue:visited,
.mz-section-scroll-cue:hover,
.mz-section-scroll-cue:focus,
.mz-section-scroll-cue:focus-visible,
.mz-section-scroll-cue:active,
.mz-section-scroll-cue.is-active,
.is-section-active > .scroll-cue,
.is-section-active > .mz-section-scroll-cue {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.scroll-cue::before,
.scroll-cue::after,
.scroll-cue:hover::before,
.scroll-cue:hover::after,
.scroll-cue:focus::before,
.scroll-cue:focus::after,
.scroll-cue:active::before,
.scroll-cue:active::after,
.scroll-cue.is-active::before,
.scroll-cue.is-active::after,
.mz-section-scroll-cue::before,
.mz-section-scroll-cue::after,
.mz-section-scroll-cue:hover::before,
.mz-section-scroll-cue:hover::after,
.mz-section-scroll-cue:focus::before,
.mz-section-scroll-cue:focus::after,
.mz-section-scroll-cue:active::before,
.mz-section-scroll-cue:active::after,
.mz-section-scroll-cue.is-active::before,
.mz-section-scroll-cue.is-active::after {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.scroll-cue *,
.scroll-cue:hover *,
.scroll-cue:focus *,
.scroll-cue:active *,
.scroll-cue.is-active *,
.mz-section-scroll-cue *,
.mz-section-scroll-cue:hover *,
.mz-section-scroll-cue:focus *,
.mz-section-scroll-cue:active *,
.mz-section-scroll-cue.is-active * {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}


/* =========================================================
   ABSOLUTE FINAL FIX: Arrow-only scroll button for all templates
   Applies to Home, Projects, Services, Curtain Cleaning, About Us,
   Contact, Curtains, Blinds and Wallpaper.
   No image, no white box, no background in normal/hover/focus/active.
   ========================================================= */
html body main section > .scroll-cue,
html body main section > .scroll-cue:link,
html body main section > .scroll-cue:visited,
html body main section > .scroll-cue:hover,
html body main section > .scroll-cue:focus,
html body main section > .scroll-cue:focus-visible,
html body main section > .scroll-cue:active,
html body main section > .scroll-cue.is-active,
html body main section > .mz-section-scroll-cue,
html body main section > .mz-section-scroll-cue:link,
html body main section > .mz-section-scroll-cue:visited,
html body main section > .mz-section-scroll-cue:hover,
html body main section > .mz-section-scroll-cue:focus,
html body main section > .mz-section-scroll-cue:focus-visible,
html body main section > .mz-section-scroll-cue:active,
html body main section > .mz-section-scroll-cue.is-active {
  position: absolute !important;
  left: 50% !important;
  bottom: 2.4rem !important;
  width: 7.4rem !important;
  height: 7.4rem !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: var(--white-color, #ffffff) !important;
}

html body main section > .scroll-cue:hover,
html body main section > .scroll-cue:focus,
html body main section > .scroll-cue:active,
html body main section > .scroll-cue.is-active,
html body main section > .mz-section-scroll-cue:hover,
html body main section > .mz-section-scroll-cue:focus,
html body main section > .mz-section-scroll-cue:active,
html body main section > .mz-section-scroll-cue.is-active {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html body main section > .scroll-cue *,
html body main section > .scroll-cue:hover *,
html body main section > .scroll-cue:focus *,
html body main section > .scroll-cue:active *,
html body main section > .scroll-cue.is-active *,
html body main section > .mz-section-scroll-cue *,
html body main section > .mz-section-scroll-cue:hover *,
html body main section > .mz-section-scroll-cue:focus *,
html body main section > .mz-section-scroll-cue:active *,
html body main section > .mz-section-scroll-cue.is-active * {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* hide any old image/text icon that may still be cached/generated */
html body main section > .scroll-cue img,
html body main section > .mz-section-scroll-cue img,
html body main section > .scroll-cue svg,
html body main section > .mz-section-scroll-cue svg,
html body main section > .scroll-cue i,
html body main section > .mz-section-scroll-cue i,
html body main section > .scroll-cue .mz-section-scroll-cue-icon,
html body main section > .mz-section-scroll-cue .mz-section-scroll-cue-icon,
html body main section > .scroll-cue .mz-section-scroll-cue-text,
html body main section > .mz-section-scroll-cue .mz-section-scroll-cue-text {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* arrow is drawn by CSS so it is always transparent around it */
html body main section > .scroll-cue::before,
html body main section > .scroll-cue::after,
html body main section > .mz-section-scroll-cue::before,
html body main section > .mz-section-scroll-cue::after,
html body main section > .scroll-cue .mz-arrow-only::before,
html body main section > .scroll-cue .mz-arrow-only::after,
html body main section > .mz-section-scroll-cue .mz-arrow-only::before,
html body main section > .mz-section-scroll-cue .mz-arrow-only::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  width: 2.9rem !important;
  height: 2.9rem !important;
  border-right: 0.42rem solid currentColor !important;
  border-bottom: 0.42rem solid currentColor !important;
  border-top: 0 !important;
  border-left: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border-radius: 0.28rem !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: translateX(-50%) rotate(45deg) !important;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.72)) drop-shadow(0 0 2px rgba(255,255,255,.55)) !important;
}

html body main section > .scroll-cue::before,
html body main section > .mz-section-scroll-cue::before,
html body main section > .scroll-cue .mz-arrow-only::before,
html body main section > .mz-section-scroll-cue .mz-arrow-only::before {
  top: 0.7rem !important;
}

html body main section > .scroll-cue::after,
html body main section > .mz-section-scroll-cue::after,
html body main section > .scroll-cue .mz-arrow-only::after,
html body main section > .mz-section-scroll-cue .mz-arrow-only::after {
  top: 2.95rem !important;
}

/* light sections use dark arrow so it remains clear */
html body main section.section-light > .scroll-cue,
html body main section.section-light > .mz-section-scroll-cue,
html body:not(.home) main section:not(.section-dark):not(.hero):not(.inner-page-hero):not(.mz-archive-hero):not(.mezzo-brown-section) > .scroll-cue,
html body:not(.home) main section:not(.section-dark):not(.hero):not(.inner-page-hero):not(.mz-archive-hero):not(.mezzo-brown-section) > .mz-section-scroll-cue {
  color: #23150f !important;
}

/* dark/hero sections use white arrow */
html body main section.hero > .scroll-cue,
html body main section.hero > .mz-section-scroll-cue,
html body main section.inner-page-hero > .scroll-cue,
html body main section.inner-page-hero > .mz-section-scroll-cue,
html body main section.mz-archive-hero > .scroll-cue,
html body main section.mz-archive-hero > .mz-section-scroll-cue,
html body main section.section-dark > .scroll-cue,
html body main section.section-dark > .mz-section-scroll-cue,
html body main section.mezzo-brown-section > .scroll-cue,
html body main section.mezzo-brown-section > .mz-section-scroll-cue {
  color: var(--white-color, #ffffff) !important;
}

html body main section.is-section-active > .scroll-cue,
html body main section.is-section-active > .mz-section-scroll-cue,
html body main section > .scroll-cue.is-active,
html body main section > .mz-section-scroll-cue.is-active {
  animation: mzFinalArrowHeartbeat 1.35s ease-in-out infinite !important;
}

@keyframes mzFinalArrowHeartbeat {
  0%, 100% { transform: translateX(-50%) scale(1) !important; }
  18% { transform: translateX(-50%) scale(1.16) !important; }
  34% { transform: translateX(-50%) scale(1) !important; }
  52% { transform: translateX(-50%) scale(1.1) !important; }
  72% { transform: translateX(-50%) scale(1) !important; }
}

@media (max-width: 760px) {
  html body main section > .scroll-cue,
  html body main section > .mz-section-scroll-cue {
    width: 6.2rem !important;
    height: 6.2rem !important;
    bottom: 1.8rem !important;
  }
  html body main section > .scroll-cue::before,
  html body main section > .scroll-cue::after,
  html body main section > .mz-section-scroll-cue::before,
  html body main section > .mz-section-scroll-cue::after,
  html body main section > .scroll-cue .mz-arrow-only::before,
  html body main section > .scroll-cue .mz-arrow-only::after,
  html body main section > .mz-section-scroll-cue .mz-arrow-only::before,
  html body main section > .mz-section-scroll-cue .mz-arrow-only::after {
    width: 2.35rem !important;
    height: 2.35rem !important;
    border-right-width: 0.34rem !important;
    border-bottom-width: 0.34rem !important;
  }
  html body main section > .scroll-cue::before,
  html body main section > .mz-section-scroll-cue::before,
  html body main section > .scroll-cue .mz-arrow-only::before,
  html body main section > .mz-section-scroll-cue .mz-arrow-only::before {
    top: 0.6rem !important;
  }
  html body main section > .scroll-cue::after,
  html body main section > .mz-section-scroll-cue::after,
  html body main section > .scroll-cue .mz-arrow-only::after,
  html body main section > .mz-section-scroll-cue .mz-arrow-only::after {
    top: 2.45rem !important;
  }
}

/* ==========================================================
   FINAL PATCH: One floating transparent scroll arrow
   - Not inserted inside sections
   - Fixed on screen, horizontal center
   - Transparent in all states
   - Heartbeat animation always active while visible
   ========================================================== */
html body main > section > .scroll-cue,
html body main > section > .mz-section-scroll-cue {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html body .mz-floating-scroll-cue,
html body .mz-floating-scroll-cue:hover,
html body .mz-floating-scroll-cue:focus,
html body .mz-floating-scroll-cue:active,
html body .mz-floating-scroll-cue.is-active {
  position: fixed !important;
  left: 50% !important;
  bottom: 3.2rem !important;
  z-index: 9998 !important;
  width: 7.4rem !important;
  height: 7.4rem !important;
  padding: 0 !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  opacity: 1 !important;
  color: var(--white-color, #ffffff) !important;
  animation: mzFloatingArrowHeartbeat 1.35s ease-in-out infinite !important;
}

html body .mz-floating-scroll-cue.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body .mz-floating-scroll-cue.is-on-light {
  color: #26140e !important;
}

html body .mz-floating-scroll-cue.is-on-dark {
  color: var(--white-color, #ffffff) !important;
}

html body .mz-floating-scroll-cue *,
html body .mz-floating-scroll-cue:hover *,
html body .mz-floating-scroll-cue:focus *,
html body .mz-floating-scroll-cue:active * {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

html body .mz-floating-scroll-cue .mz-arrow-only {
  position: relative !important;
  width: 5.6rem !important;
  height: 5.8rem !important;
  display: block !important;
  background: transparent !important;
}

html body .mz-floating-scroll-cue .mz-arrow-only::before,
html body .mz-floating-scroll-cue .mz-arrow-only::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  width: 2.8rem !important;
  height: 2.8rem !important;
  border-right: 0.42rem solid currentColor !important;
  border-bottom: 0.42rem solid currentColor !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-radius: 0.28rem !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: translateX(-50%) rotate(45deg) !important;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.65)) drop-shadow(0 0 2px rgba(255,255,255,.7)) !important;
}

html body .mz-floating-scroll-cue .mz-arrow-only::before {
  top: 0.4rem !important;
}

html body .mz-floating-scroll-cue .mz-arrow-only::after {
  top: 2.7rem !important;
}

@keyframes mzFloatingArrowHeartbeat {
  0%, 100% { transform: translateX(-50%) scale(1) !important; }
  18% { transform: translateX(-50%) scale(1.15) !important; }
  34% { transform: translateX(-50%) scale(1) !important; }
  52% { transform: translateX(-50%) scale(1.1) !important; }
  72% { transform: translateX(-50%) scale(1) !important; }
}

@media (max-width: 760px) {
  html body .mz-floating-scroll-cue,
  html body .mz-floating-scroll-cue:hover,
  html body .mz-floating-scroll-cue:focus,
  html body .mz-floating-scroll-cue:active,
  html body .mz-floating-scroll-cue.is-active {
    bottom: 2rem !important;
    width: 6.4rem !important;
    height: 6.4rem !important;
  }
  html body .mz-floating-scroll-cue .mz-arrow-only {
    width: 4.9rem !important;
    height: 5.1rem !important;
  }
  html body .mz-floating-scroll-cue .mz-arrow-only::before,
  html body .mz-floating-scroll-cue .mz-arrow-only::after {
    width: 2.35rem !important;
    height: 2.35rem !important;
    border-right-width: 0.34rem !important;
    border-bottom-width: 0.34rem !important;
  }
  html body .mz-floating-scroll-cue .mz-arrow-only::before {
    top: 0.4rem !important;
  }
  html body .mz-floating-scroll-cue .mz-arrow-only::after {
    top: 2.35rem !important;
  }
}

/* =========================================================
   Final mobile/tablet header fix
   Requested: hide the WhatsApp header/mobile button on tablet and mobile.
   Keep WhatsApp button visible only on desktop.
   ========================================================= */
@media (max-width: 1080px) {
  html body .site-header .header-whatsapp-cta,
  html body .site-header .header-whatsapp-cta:link,
  html body .site-header .header-whatsapp-cta:visited,
  html body .mobile-panel .mobile-whatsapp-cta,
  html body .mobile-panel .mobile-whatsapp-cta:link,
  html body .mobile-panel .mobile-whatsapp-cta:visited,
  html body .mobile-panel a[href*="wa.me"].nav-cta,
  html body .mobile-panel a[href*="whatsapp"].nav-cta {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* =========================================================
   FINAL PATCH: Header navigation white transparent background
   Requested: make header navigation menu opacity white transparent.
   Applies to desktop, sticky, mobile, submenu states.
   ========================================================= */
:root {
  --mz-header-transparent-white: rgba(255, 255, 255, 0.82);
  --mz-header-transparent-white-strong: rgba(255, 255, 255, 0.94);
}

html body .site-header,
html body .site-header.scrolled,
html body .site-header.header-on-hero,
html body:not(.home):not(.front-page) .site-header,
html body:not(.home):not(.front-page) .site-header.header-on-hero {
  background: var(--mz-header-transparent-white) !important;
  background-color: var(--mz-header-transparent-white) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  border-bottom: 1px solid rgba(222, 192, 154, 0.45) !important;
  box-shadow: 0 10px 30px rgba(43, 23, 15, 0.08) !important;
}

html body .site-header .nav,
html body .site-header .nav .menu,
html body .site-header .nav ul {
  background: transparent !important;
  background-color: transparent !important;
}

html body .site-header .nav .sub-menu,
html body .site-header.header-on-hero .nav .sub-menu,
html body:not(.home):not(.front-page) .site-header .nav .sub-menu {
  background: var(--mz-header-transparent-white-strong) !important;
  background-color: var(--mz-header-transparent-white-strong) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
}

html body .mobile-panel,
html body .mobile-panel.open,
html body .mobile-panel.is-open {
  background: var(--mz-header-transparent-white-strong) !important;
  background-color: var(--mz-header-transparent-white-strong) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
}

/* =========================================================
   FINAL PATCH: Solid white header + flow-to-sticky behavior
   Requested: remove transparent/opacity background, return to solid white,
   add padding, extend width, and keep the header above page sections at top,
   then sticky while scrolling.
   ========================================================= */
html body .site-header,
html body .site-header.scrolled,
html body .site-header.header-on-hero,
html body:not(.home):not(.front-page) .site-header,
html body:not(.home):not(.front-page) .site-header.header-on-hero {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  z-index: 9999 !important;
  width: min(100%, 1580px) !important;
  max-width: 1580px !important;
  height: auto !important;
  min-height: 86px !important;
  margin: 0 auto !important;
  padding: 18px 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  background: var(--white-color, #ffffff) !important;
  background-color: var(--white-color, #ffffff) !important;
  background-image: none !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(70, 45, 34, 0.12) !important;
  box-shadow: none !important;
  transform: none !important;
}

html body .site-header.scrolled {
  box-shadow: 0 10px 28px rgba(43, 23, 15, 0.10) !important;
}

html body.admin-bar .site-header,
html body.admin-bar .site-header.scrolled,
html body.admin-bar .site-header.header-on-hero {
  top: 32px !important;
}

@media (max-width: 782px) {
  html body.admin-bar .site-header,
  html body.admin-bar .site-header.scrolled,
  html body.admin-bar .site-header.header-on-hero {
    top: 46px !important;
  }
}

html body .site-header .brand {
  flex: 0 0 auto !important;
}

html body .site-header .brand-logo {
  width: clamp(220px, 24vw, 360px) !important;
  max-height: 70px !important;
  object-fit: contain !important;
}

html body .site-header .nav {
  flex: 1 1 auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  background: transparent !important;
}

html body .site-header .nav .menu,
html body .site-header .nav ul {
  background: transparent !important;
  background-color: transparent !important;
}

html body .site-header .nav a,
html body .site-header.header-on-hero .nav a,
html body .site-header:not(.header-on-hero) .nav a {
  color: #4a3d35 !important;
  text-shadow: none !important;
}

html body .site-header .nav a:hover,
html body .site-header .nav .current-menu-item > a,
html body .site-header .nav .current-menu-ancestor > a {
  color: #a7642b !important;
}

html body .site-header .header-whatsapp-cta {
  margin-left: 4px !important;
  white-space: nowrap !important;
}

html body .site-header .nav .sub-menu,
html body .site-header.header-on-hero .nav .sub-menu,
html body:not(.home):not(.front-page) .site-header .nav .sub-menu {
  background: var(--white-color, #ffffff) !important;
  background-color: var(--white-color, #ffffff) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(70, 45, 34, 0.12) !important;
  box-shadow: 0 18px 34px rgba(43, 23, 15, 0.12) !important;
}

html body .mobile-panel,
html body .mobile-panel.open,
html body .mobile-panel.is-open {
  background: var(--white-color, #ffffff) !important;
  background-color: var(--white-color, #ffffff) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 1024px) {
  html body .site-header,
  html body .site-header.scrolled,
  html body .site-header.header-on-hero,
  html body:not(.home):not(.front-page) .site-header,
  html body:not(.home):not(.front-page) .site-header.header-on-hero {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 78px !important;
    padding: 14px 24px !important;
  }

  html body .site-header .brand-logo {
    width: clamp(190px, 38vw, 300px) !important;
    max-height: 62px !important;
  }
}

@media (max-width: 760px) {
  html body .site-header,
  html body .site-header.scrolled,
  html body .site-header.header-on-hero,
  html body:not(.home):not(.front-page) .site-header,
  html body:not(.home):not(.front-page) .site-header.header-on-hero {
    min-height: 72px !important;
    padding: 12px 18px !important;
  }

  html body .site-header .brand-logo {
    width: clamp(170px, 56vw, 260px) !important;
    max-height: 56px !important;
  }
}

/* =========================================================
   FINAL STANDARDIZATION PATCH — header hover, hamburger hover,
   and video hover overlay cleanup.
   Requested: menu hover text white; hamburger hover primary + white lines;
   remove pink overlay/cover on video hover.
   ========================================================= */
:root {
  --mz-menu-hover-bg: var(--c-primary, var(--primary-color, #A0522D));
  --mz-menu-hover-text: var(--white-color, #ffffff);
  --mz-hamburger-hover-bg: var(--c-primary, var(--primary-color, #A0522D));
  --mz-hamburger-line: #241209;
  --mz-hamburger-line-hover: var(--white-color, #ffffff);
}

/* 1) Header desktop menu hover/active states */
html body .site-header .nav a:hover,
html body .site-header .nav a:focus,
html body .site-header .nav a:focus-visible,
html body .site-header.header-on-hero .nav a:hover,
html body .site-header.header-on-hero .nav a:focus,
html body .site-header:not(.header-on-hero) .nav a:hover,
html body .site-header:not(.header-on-hero) .nav a:focus,
html body:not(.home):not(.front-page) .site-header .nav a:hover,
html body:not(.home):not(.front-page) .site-header .nav a:focus,
html body .site-header .nav .current-menu-item > a:hover,
html body .site-header .nav .current-menu-ancestor > a:hover,
html body .site-header .nav .sub-menu a:hover,
html body .site-header .nav .sub-menu a:focus,
html body .site-header .nav .sub-menu a:focus-visible {
  color: var(--mz-menu-hover-text) !important;
  -webkit-text-fill-color: var(--mz-menu-hover-text) !important;
  background: var(--mz-menu-hover-bg) !important;
  background-color: var(--mz-menu-hover-bg) !important;
  text-shadow: none !important;
  outline: none !important;
}

html body .site-header .nav a:hover::after,
html body .site-header .nav a:focus::after,
html body .site-header .nav .menu-item-has-children:hover > a::after,
html body .site-header .nav .menu-item-has-children:focus-within > a::after {
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
}

/* Keep WhatsApp CTA standardized on hover */
html body .site-header .header-whatsapp-cta:hover,
html body .site-header .header-whatsapp-cta:focus,
html body .site-header .header-whatsapp-cta:active,
html body .site-header .nav .nav-cta:hover,
html body .site-header .nav .nav-cta:focus,
html body .site-header .nav .nav-cta:active {
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
  background: #1da851 !important;
  background-color: #1da851 !important;
  text-shadow: none !important;
}

/* 2) Hamburger: normal state clean, hover/open state primary with white lines */
html body .site-header .mobile-toggle,
html body .site-header .mobile-toggle:link,
html body .site-header .mobile-toggle:visited {
  background: var(--c-cream-2, #F6E6D7) !important;
  background-color: var(--c-cream-2, #F6E6D7) !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

html body .site-header .mobile-toggle span {
  background: var(--mz-hamburger-line) !important;
  background-color: var(--mz-hamburger-line) !important;
  border-color: var(--mz-hamburger-line) !important;
}

html body .site-header .mobile-toggle:hover,
html body .site-header .mobile-toggle:focus,
html body .site-header .mobile-toggle:focus-visible,
html body .site-header .mobile-toggle:active,
html body .site-header .mobile-toggle[aria-expanded="true"] {
  background: var(--mz-hamburger-hover-bg) !important;
  background-color: var(--mz-hamburger-hover-bg) !important;
  border-color: var(--mz-hamburger-hover-bg) !important;
  box-shadow: 0 10px 24px rgba(160, 82, 45, 0.24) !important;
  outline: none !important;
}

html body .site-header .mobile-toggle:hover span,
html body .site-header .mobile-toggle:focus span,
html body .site-header .mobile-toggle:focus-visible span,
html body .site-header .mobile-toggle:active span,
html body .site-header .mobile-toggle[aria-expanded="true"] span {
  background: var(--mz-hamburger-line-hover) !important;
  background-color: var(--mz-hamburger-line-hover) !important;
  border-color: var(--mz-hamburger-line-hover) !important;
}

/* 3) Video hover: remove pink/colour cover. Keep only video image + play icon. */
html body .hero-review-video-card:hover::after,
html body .hero-review-video-card:focus-within::after {
  opacity: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

html body .hero-review-video-card:hover,
html body .hero-review-video-card:focus-within,
html body .video-card:hover,
html body .video-card:focus-within {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

html body .video-play-overlay,
html body .video-play-overlay:hover,
html body .video-play-overlay:focus,
html body .video-play-overlay:focus-visible,
html body .video-play-overlay:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

html body .video-play-overlay::before,
html body .video-play-overlay::after,
html body .video-play-overlay:hover::before,
html body .video-play-overlay:hover::after,
html body .video-play-overlay:focus::before,
html body .video-play-overlay:focus::after {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  opacity: 0 !important;
}

html body .video-play-overlay .play-ring,
html body .video-play-overlay:hover .play-ring,
html body .video-play-overlay:focus .play-ring,
html body .video-play-overlay:active .play-ring {
  background: rgba(255, 255, 255, 0.22) !important;
  background-color: rgba(255, 255, 255, 0.22) !important;
}

html body .video-play-overlay .play-icon,
html body .video-play-overlay:hover .play-icon,
html body .video-play-overlay:focus .play-icon,
html body .video-play-overlay:active .play-icon {
  color: var(--c-dark, #241209) !important;
  -webkit-text-fill-color: var(--c-dark, #241209) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  background-color: rgba(255, 255, 255, 0.96) !important;
}


/* =========================================================
   FINAL PATCH — mobile/tablet logo align left
   Requested: logo displays left instead of middle on tablet and mobile.
   Also switches tablet to hamburger layout so the logo has enough space.
   ========================================================= */
@media (max-width: 1080px) {
  html body .site-header,
  html body .site-header.scrolled,
  html body .site-header.header-on-hero,
  html body:not(.home):not(.front-page) .site-header,
  html body:not(.home):not(.front-page) .site-header.header-on-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  html body .site-header .brand,
  html body .site-header a.brand,
  html body .site-header.header-on-hero .brand,
  html body:not(.home):not(.front-page) .site-header .brand {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 auto 0 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 1 auto !important;
    max-width: calc(100% - 76px) !important;
    text-align: left !important;
  }

  html body .site-header .brand img,
  html body .site-header .brand .custom-logo,
  html body .site-header .brand-logo,
  html body .site-header img.brand-logo {
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    object-position: left center !important;
    text-align: left !important;
  }

  html body .site-header .nav,
  html body .site-header nav.nav {
    display: none !important;
  }

  html body .site-header .mobile-toggle,
  html body .site-header button.mobile-toggle {
    display: block !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 760px) {
  html body .site-header .brand,
  html body .site-header a.brand {
    max-width: calc(100% - 64px) !important;
  }

  html body .site-header .brand img,
  html body .site-header .brand .custom-logo,
  html body .site-header .brand-logo,
  html body .site-header img.brand-logo {
    width: clamp(165px, 58vw, 245px) !important;
    max-height: 54px !important;
  }
}

/* =========================================================
   FINAL PATCH — menu auto-close support + primary underline states
   Requested:
   1) Mobile hamburger menu auto closes when inactive.
   2) Hover menu text has 1px primary underline.
   3) Desktop current active menu text has 1px primary underline.
   ========================================================= */
:root {
  --mz-menu-underline-color: var(--c-primary, var(--primary-color, #A0522D));
  --mz-menu-underline-offset: 5px;
}

html body .site-header .nav a,
html body .site-header.header-on-hero .nav a,
html body .site-header:not(.header-on-hero) .nav a,
html body:not(.home):not(.front-page) .site-header .nav a,
html body .mobile-panel a {
  text-decoration-line: none !important;
  text-decoration-thickness: 1px !important;
  text-decoration-style: solid !important;
  text-decoration-color: var(--mz-menu-underline-color) !important;
  text-underline-offset: var(--mz-menu-underline-offset) !important;
}

html body .site-header .nav a:hover,
html body .site-header .nav a:focus,
html body .site-header .nav a:focus-visible,
html body .site-header.header-on-hero .nav a:hover,
html body .site-header.header-on-hero .nav a:focus,
html body .site-header:not(.header-on-hero) .nav a:hover,
html body .site-header:not(.header-on-hero) .nav a:focus,
html body:not(.home):not(.front-page) .site-header .nav a:hover,
html body:not(.home):not(.front-page) .site-header .nav a:focus,
html body .mobile-panel a:hover,
html body .mobile-panel a:focus,
html body .mobile-panel a:focus-visible {
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: var(--mz-menu-underline-color) !important;
  text-underline-offset: var(--mz-menu-underline-offset) !important;
  text-decoration-skip-ink: none !important;
}

@media (min-width: 1081px) {
  html body .site-header .nav .current-menu-item > a,
  html body .site-header .nav .current-menu-ancestor > a,
  html body .site-header .nav .current_page_item > a,
  html body .site-header .nav .current_page_ancestor > a,
  html body .site-header .nav .current_page_parent > a,
  html body .site-header .nav a[aria-current="page"] {
    text-decoration-line: underline !important;
    text-decoration-thickness: 1px !important;
    text-decoration-color: var(--mz-menu-underline-color) !important;
    text-underline-offset: var(--mz-menu-underline-offset) !important;
    text-decoration-skip-ink: none !important;
  }
}

html body .site-header .nav .sub-menu a:hover,
html body .site-header .nav .sub-menu a:focus,
html body .site-header .nav .sub-menu a:focus-visible,
html body .mobile-panel .sub-menu a:hover,
html body .mobile-panel .sub-menu a:focus,
html body .mobile-panel .sub-menu a:focus-visible {
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: var(--mz-menu-underline-color) !important;
  text-underline-offset: var(--mz-menu-underline-offset) !important;
}

/* =========================================================
   FINAL PATCH — larger primary hamburger + primary-light hero ticks
   Requested:
   1) Make hamburger larger, primary background, light lines.
   2) Make hero benefit ✓ ticks use primary light color instead of green.
   ========================================================= */
:root {
  --mz-hamburger-size: 5.6rem;
  --mz-hamburger-bg-final: var(--c-primary, var(--primary-color, #A0522D));
  --mz-hamburger-line-final: var(--c-cream, var(--cream-color, #FFF8F1));
  --mz-hero-tick-color-final: var(--c-primary-lt, #D28A61);
}

html body .site-header .mobile-toggle,
html body .site-header button.mobile-toggle,
html body .site-header .mobile-toggle:link,
html body .site-header .mobile-toggle:visited,
html body .site-header .mobile-toggle:hover,
html body .site-header .mobile-toggle:focus,
html body .site-header .mobile-toggle:focus-visible,
html body .site-header .mobile-toggle:active,
html body .site-header .mobile-toggle[aria-expanded="true"] {
  width: var(--mz-hamburger-size) !important;
  height: var(--mz-hamburger-size) !important;
  min-width: var(--mz-hamburger-size) !important;
  min-height: var(--mz-hamburger-size) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 0.52rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 1.35rem !important;
  background: var(--mz-hamburger-bg-final) !important;
  background-color: var(--mz-hamburger-bg-final) !important;
  background-image: none !important;
  box-shadow: 0 1rem 2.4rem rgba(160, 82, 45, 0.22) !important;
  outline: none !important;
}

html body .site-header .mobile-toggle span,
html body .site-header .mobile-toggle:hover span,
html body .site-header .mobile-toggle:focus span,
html body .site-header .mobile-toggle:focus-visible span,
html body .site-header .mobile-toggle:active span,
html body .site-header .mobile-toggle[aria-expanded="true"] span {
  width: 3rem !important;
  height: 0.28rem !important;
  min-height: 0.28rem !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: var(--mz-hamburger-line-final) !important;
  background-color: var(--mz-hamburger-line-final) !important;
  border-color: var(--mz-hamburger-line-final) !important;
  opacity: 1 !important;
}

@media (max-width: 1080px) {
  html body .site-header .brand,
  html body .site-header a.brand,
  html body .site-header.header-on-hero .brand,
  html body:not(.home):not(.front-page) .site-header .brand {
    max-width: calc(100% - 9.6rem) !important;
  }
}

@media (max-width: 760px) {
  :root {
    --mz-hamburger-size: 5.2rem;
  }

  html body .site-header .brand,
  html body .site-header a.brand {
    max-width: calc(100% - 8.8rem) !important;
  }
}

html body .hero-benefits .benefit-icon,
html body .hero .hero-benefits .benefit-icon,
html body .hero-banner .hero-benefits .benefit-icon,
html body .template-home .hero-benefits .benefit-icon {
  color: var(--mz-hero-tick-color-final) !important;
  -webkit-text-fill-color: var(--mz-hero-tick-color-final) !important;
  background: rgba(210, 138, 97, 0.16) !important;
  background-color: rgba(210, 138, 97, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(210, 138, 97, 0.44) !important;
  text-shadow: 0 0.1rem 0.8rem rgba(210, 138, 97, 0.35) !important;
}



/* =========================================================
   FINAL PATCH — mobile/tablet hero copy alignment
   Requested:
   1) Center hero eyebrow + heading on tablet/mobile.
   2) Put hero benefit points inside a centered block,
      while keeping the inner benefit text left aligned.
   ========================================================= */
.hero-benefits-wrap {
  width: 100%;
}

@media (max-width: 1080px) {
  html body .hero .hero-copy {
    max-width: 72rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  html body .hero .hero-copy .eyebrow,
  html body .hero .hero-copy .hero-animate.eyebrow {
    display: inline-flex !important;
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body .hero .hero-copy h1,
  html body .hero .hero-copy h1.hero-animate {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body .hero .hero-benefits-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  html body .hero .hero-benefits-wrap .hero-benefits,
  html body .hero .hero-benefits {
    width: fit-content !important;
    max-width: min(100%, 58rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
    justify-items: start !important;
  }

  html body .hero .hero-benefits li {
    text-align: left !important;
    justify-content: start !important;
  }

  html body .hero .hero-benefits li span:last-child {
    text-align: left !important;
  }

  html body .hero .hero-trust,
  html body .hero .hero-actions {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }
}

@media (max-width: 760px) {
  html body .hero .hero-copy {
    width: 100% !important;
  }

  html body .hero .hero-benefits-wrap .hero-benefits,
  html body .hero .hero-benefits {
    max-width: 34rem !important;
  }

  html body .hero .hero-benefits li {
    grid-template-columns: 2.4rem minmax(0, 1fr) !important;
  }
}


/* =========================================================
   FINAL PATCH — desktop hamburger visibility + hero wavy emphasis
   Requested:
   1) Hide hamburger on desktop view.
   2) Add wavy emphasis to “cleaning service” in hero banner.
   ========================================================= */
.emphasis-wavy {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--yellow-dark, var(--c-gold, #C99A5E));
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

@media (min-width: 1081px) {
  html body .site-header .mobile-toggle,
  html body .site-header button.mobile-toggle,
  html body .site-header .mobile-toggle:hover,
  html body .site-header .mobile-toggle:focus,
  html body .site-header .mobile-toggle:focus-visible,
  html body .site-header .mobile-toggle:active,
  html body .site-header .mobile-toggle[aria-expanded="true"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  html body .mobile-panel,
  html body .mobile-panel.open,
  html body .mobile-panel.is-open {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  html body .site-header .nav,
  html body .site-header nav.nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 1080px) {
  html body .site-header .mobile-toggle,
  html body .site-header button.mobile-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}


/* =========================================================
   FINAL PATCH — uploaded hero spacing fix
   Source: hero-spacing-fix.css
   ========================================================= */
/* =========================================================
   HERO MOBILE / DESKTOP SPACING FIX
   Requested:
   1) Move hero text section upper a bit on desktop / tablet / mobile
   2) Add spacing after "Curtain cleaning service available" before next section
   ========================================================= */

/* Move hero text block upward */
.hero-content,
.hero-banner .hero-content,
.mezzo-hero .hero-content,
.home-hero .hero-content {
  transform: translateY(-3rem);
}

/* Add spacing after checklist before next section */
.hero-points,
.hero-checklist,
.hero-features,
.hero-ticks {
  margin-bottom: 4rem;
}

/* Checklist item spacing */
.hero-points .point,
.hero-points li,
.hero-checklist .point,
.hero-checklist li,
.hero-features .point,
.hero-features li,
.hero-ticks .point,
.hero-ticks li {
  margin-bottom: 1.2rem;
}

/* Extra spacing after last checklist item */
.hero-points .point:last-child,
.hero-points li:last-child,
.hero-checklist .point:last-child,
.hero-checklist li:last-child,
.hero-features .point:last-child,
.hero-features li:last-child,
.hero-ticks .point:last-child,
.hero-ticks li:last-child {
  margin-bottom: 4.8rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-content,
  .hero-banner .hero-content,
  .mezzo-hero .hero-content,
  .home-hero .hero-content {
    transform: translateY(-2.4rem);
  }

  .hero-points,
  .hero-checklist,
  .hero-features,
  .hero-ticks {
    margin-bottom: 4.8rem;
  }

  .hero-points .point:last-child,
  .hero-points li:last-child,
  .hero-checklist .point:last-child,
  .hero-checklist li:last-child,
  .hero-features .point:last-child,
  .hero-features li:last-child,
  .hero-ticks .point:last-child,
  .hero-ticks li:last-child {
    margin-bottom: 5.6rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-content,
  .hero-banner .hero-content,
  .mezzo-hero .hero-content,
  .home-hero .hero-content {
    transform: translateY(-2rem);
    text-align: center;
  }

  .hero-points,
  .hero-checklist,
  .hero-features,
  .hero-ticks {
    display: inline-block;
    text-align: left;
    margin: 0 auto 5.6rem;
  }

  .hero-points .point,
  .hero-points li,
  .hero-checklist .point,
  .hero-checklist li,
  .hero-features .point,
  .hero-features li,
  .hero-ticks .point,
  .hero-ticks li {
    margin-bottom: 1.2rem;
  }

  .hero-points .point:last-child,
  .hero-points li:last-child,
  .hero-checklist .point:last-child,
  .hero-checklist li:last-child,
  .hero-features .point:last-child,
  .hero-features li:last-child,
  .hero-ticks .point:last-child,
  .hero-ticks li:last-child {
    margin-bottom: 6.4rem;
  }
}


/* =========================================================
   FINAL PATCH — apply the hero spacing fix to Project pages
   Applies to:
   - /projects/ archive
   - Mezzo Projects page template
   - single project pages
   ========================================================= */
html body.post-type-archive-project .mz-archive-hero-inner,
html body.single-project .mz-archive-hero-inner,
html body.page-template-template-projects .mz-archive-hero-inner,
html body .mz-archive-page .mz-archive-hero .mz-archive-hero-inner {
  transform: translateY(-3rem) !important;
}

html body.post-type-archive-project .mz-archive-hero,
html body.single-project .mz-archive-hero,
html body.page-template-template-projects .mz-archive-hero,
html body .mz-archive-page .mz-archive-hero {
  padding-top: clamp(8.4rem, 7vw, 10.2rem) !important;
  padding-bottom: clamp(10rem, 8vw, 12.8rem) !important;
}

html body.post-type-archive-project .mz-archive-main,
html body.single-project .mz-archive-main,
html body.page-template-template-projects .mz-archive-main,
html body .mz-archive-page .mz-archive-main {
  padding-top: clamp(7.2rem, 6vw, 9.2rem) !important;
}

html body.single-project .mz-single-cover {
  margin-bottom: 50px !important;
}

@media (max-width: 1024px) {
  html body.post-type-archive-project .mz-archive-hero-inner,
  html body.single-project .mz-archive-hero-inner,
  html body.page-template-template-projects .mz-archive-hero-inner,
  html body .mz-archive-page .mz-archive-hero .mz-archive-hero-inner {
    transform: translateY(-2.4rem) !important;
  }

  html body.post-type-archive-project .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body .mz-archive-page .mz-archive-hero {
    padding-top: clamp(7.6rem, 7vw, 9rem) !important;
    padding-bottom: clamp(10.4rem, 9vw, 13rem) !important;
  }
}

@media (max-width: 767px) {
  html body.post-type-archive-project .mz-archive-hero-inner,
  html body.single-project .mz-archive-hero-inner,
  html body.page-template-template-projects .mz-archive-hero-inner,
  html body .mz-archive-page .mz-archive-hero .mz-archive-hero-inner {
    transform: translateY(-2rem) !important;
    text-align: center !important;
  }

  html body.post-type-archive-project .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body .mz-archive-page .mz-archive-hero {
    padding-top: 7rem !important;
    padding-bottom: 11.2rem !important;
    min-height: 220px !important;
  }

  html body.post-type-archive-project .mz-archive-main,
  html body.single-project .mz-archive-main,
  html body.page-template-template-projects .mz-archive-main,
  html body .mz-archive-page .mz-archive-main {
    padding-top: 5.6rem !important;
  }
}

/* =========================================================
   FINAL PATCH — hero benefits to stats spacing
   Requested: make spacing between the checklist section and stats section 1.6rem.
   ========================================================= */
html body .hero .hero-benefits-wrap,
html body .template-home .hero-benefits-wrap {
  margin-bottom: 1.6rem !important;
}

html body .hero .hero-benefits,
html body .template-home .hero-benefits {
  margin-bottom: 0 !important;
}

html body .hero .hero-trust,
html body .template-home .hero-trust {
  margin-top: 0 !important;
}

@media (max-width: 1080px) {
  html body .hero .hero-benefits-wrap,
  html body .template-home .hero-benefits-wrap {
    margin-bottom: 1.6rem !important;
  }
}

/* =========================================================
   FINAL PATCH — visible gap between hero checklist and stats
   Fixes: last “Curtain cleaning service available” text too close to stats boxes.
   Applies strongly on desktop, tablet, and mobile.
   ========================================================= */
html body .hero .hero-benefits-wrap,
html body .template-home .hero-benefits-wrap,
html body.home .hero .hero-benefits-wrap,
html body.front-page .hero .hero-benefits-wrap {
  display: block !important;
  margin-bottom: 3.2rem !important;
  padding-bottom: 0 !important;
}

html body .hero .hero-benefits-wrap + .hero-trust,
html body .template-home .hero-benefits-wrap + .hero-trust,
html body.home .hero .hero-benefits-wrap + .hero-trust,
html body.front-page .hero .hero-benefits-wrap + .hero-trust,
html body .hero .hero-trust.hero-animate {
  margin-top: 0 !important;
}

html body .hero .hero-benefits,
html body .template-home .hero-benefits,
html body.home .hero .hero-benefits,
html body.front-page .hero .hero-benefits {
  margin-bottom: 0 !important;
}

html body .hero .hero-benefits li:last-child,
html body .template-home .hero-benefits li:last-child,
html body.home .hero .hero-benefits li:last-child,
html body.front-page .hero .hero-benefits li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 1080px) {
  html body .hero .hero-benefits-wrap,
  html body .template-home .hero-benefits-wrap,
  html body.home .hero .hero-benefits-wrap,
  html body.front-page .hero .hero-benefits-wrap {
    margin-bottom: 3.4rem !important;
  }
}

@media (max-width: 767px) {
  html body .hero .hero-benefits-wrap,
  html body .template-home .hero-benefits-wrap,
  html body.home .hero .hero-benefits-wrap,
  html body.front-page .hero .hero-benefits-wrap {
    width: 100% !important;
    margin-bottom: 3.6rem !important;
  }

  html body .hero .hero-benefits-wrap .hero-benefits,
  html body .template-home .hero-benefits-wrap .hero-benefits,
  html body.home .hero .hero-benefits-wrap .hero-benefits,
  html body.front-page .hero .hero-benefits-wrap .hero-benefits {
    margin-bottom: 0 !important;
  }
}


/* =========================================================
   FINAL PATCH — move home hero banner content upward
   Requested: bring the hero text/checklist/stats closer to the header menu.
   Applies to Home / front page only, desktop / tablet / mobile.
   ========================================================= */
html body.home .hero,
html body.front-page .hero,
html body.page-template-template-home .hero {
  align-items: flex-start !important;
  padding-top: clamp(6.4rem, 5.6vw, 8.4rem) !important;
  padding-bottom: clamp(5rem, 5vw, 7rem) !important;
}

html body.home .hero .hero-grid,
html body.front-page .hero .hero-grid,
html body.page-template-template-home .hero .hero-grid {
  margin-top: 0 !important;
  transform: none !important;
}

@media (max-width: 1080px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.page-template-template-home .hero {
    padding-top: 5.2rem !important;
    padding-bottom: 6.4rem !important;
  }
}

@media (max-width: 760px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.page-template-template-home .hero {
    padding-top: 4.2rem !important;
    padding-bottom: 6rem !important;
  }

  html body.home .hero .hero-grid,
  html body.front-page .hero .hero-grid,
  html body.page-template-template-home .hero .hero-grid {
    gap: 2.8rem !important;
  }
}

/* =========================================================
   FINAL PATCH — larger hero checklist/stat/action spacing
   Requested: more space after “Curtain cleaning service available”
   before the next hero button/stat area on desktop, tablet and mobile.
   ========================================================= */
html body.home .hero .hero-benefits-wrap,
html body.front-page .hero .hero-benefits-wrap,
html body.page-template-template-home .hero .hero-benefits-wrap,
html body .hero .hero-benefits-wrap,
html body .template-home .hero-benefits-wrap {
  display: block !important;
  margin-bottom: clamp(4.6rem, 4vw, 5.8rem) !important;
  padding-bottom: 0 !important;
}

html body.home .hero .hero-benefits,
html body.front-page .hero .hero-benefits,
html body.page-template-template-home .hero .hero-benefits,
html body .hero .hero-benefits,
html body .template-home .hero-benefits {
  margin-bottom: 0 !important;
}

html body.home .hero .hero-benefits li:last-child,
html body.front-page .hero .hero-benefits li:last-child,
html body.page-template-template-home .hero .hero-benefits li:last-child,
html body .hero .hero-benefits li:last-child,
html body .template-home .hero-benefits li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

html body.home .hero .hero-benefits-wrap + .hero-trust,
html body.front-page .hero .hero-benefits-wrap + .hero-trust,
html body.page-template-template-home .hero .hero-benefits-wrap + .hero-trust,
html body .hero .hero-benefits-wrap + .hero-trust,
html body .hero .hero-trust.hero-animate {
  margin-top: 0 !important;
}

html body.home .hero .hero-trust,
html body.front-page .hero .hero-trust,
html body.page-template-template-home .hero .hero-trust,
html body .hero .hero-trust {
  margin-bottom: clamp(3.2rem, 3vw, 4.2rem) !important;
}

html body.home .hero .hero-actions-after-trust,
html body.front-page .hero .hero-actions-after-trust,
html body.page-template-template-home .hero .hero-actions-after-trust,
html body .hero .hero-actions-after-trust {
  margin-top: 0 !important;
}

@media (max-width: 1080px) {
  html body.home .hero .hero-benefits-wrap,
  html body.front-page .hero .hero-benefits-wrap,
  html body.page-template-template-home .hero .hero-benefits-wrap,
  html body .hero .hero-benefits-wrap,
  html body .template-home .hero-benefits-wrap {
    margin-bottom: 5.2rem !important;
  }

  html body.home .hero .hero-trust,
  html body.front-page .hero .hero-trust,
  html body.page-template-template-home .hero .hero-trust,
  html body .hero .hero-trust {
    margin-bottom: 3.8rem !important;
  }
}

@media (max-width: 767px) {
  html body.home .hero .hero-benefits-wrap,
  html body.front-page .hero .hero-benefits-wrap,
  html body.page-template-template-home .hero .hero-benefits-wrap,
  html body .hero .hero-benefits-wrap,
  html body .template-home .hero-benefits-wrap {
    width: 100% !important;
    margin-bottom: 5.8rem !important;
  }

  html body.home .hero .hero-trust,
  html body.front-page .hero .hero-trust,
  html body.page-template-template-home .hero .hero-trust,
  html body .hero .hero-trust {
    margin-bottom: 4.2rem !important;
  }
}


/* =========================================================
   FINAL PATCH — Legal page templates + wavy emphasis support
   Created templates: Terms, Privacy, Disclaimer, Cookie, Warranty & After Sales.
   ========================================================= */
.legal-hero.inner-page-hero {
  padding-top: clamp(10rem, 9vw, 15rem);
  padding-bottom: clamp(5rem, 6vw, 8rem);
}

.mezzo-legal-page .legal-section {
  background: linear-gradient(180deg, #fffaf4 0%, #f7eadc 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(26rem, 0.78fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
}

.legal-card,
.legal-content-card {
  border: 1px solid rgba(160, 82, 45, 0.16);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--r-lg, 2.4rem);
  box-shadow: var(--shadow-soft, 0 1.4rem 3.4rem rgba(96,48,20,0.14));
}

.legal-intro-card {
  position: sticky;
  top: 11rem;
  padding: clamp(2.2rem, 3vw, 3.4rem);
}

.legal-intro-card h2 {
  margin: 1rem 0 1.4rem;
  color: var(--text-heading-dark, #241209);
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 1.08;
}

.legal-intro-card p,
.legal-block p {
  color: var(--text-muted, #6b5b52);
  line-height: 1.85;
}

.legal-note {
  margin-top: 1.6rem;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--c-primary, var(--primary-color, #A0522D));
  border-radius: 1rem;
  background: rgba(201, 154, 94, 0.12);
}

.legal-content-card {
  overflow: hidden;
}

.legal-block {
  padding: clamp(2rem, 2.4vw, 3.2rem);
  border-bottom: 1px solid rgba(160, 82, 45, 0.12);
}

.legal-block:last-child {
  border-bottom: 0;
}

.legal-block h3 {
  color: var(--text-heading-dark, #241209);
  font-family: var(--font-heading, serif);
  font-size: clamp(2.2rem, 2.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.legal-block a,
.legal-intro-card a {
  color: var(--c-primary, var(--primary-color, #A0522D));
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.6rem;
  margin-top: 1rem;
}

.footer-legal-links a {
  color: var(--text-footer-muted, #e2c4a3);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
  color: var(--white-color, #ffffff);
}

.emphasis-wavy {
  display: inline;
  text-decoration-line: underline !important;
  text-decoration-style: wavy !important;
  text-decoration-color: var(--yellow-dark, #B8843F) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 7px !important;
}

@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-intro-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .legal-hero.inner-page-hero {
    padding-top: 8.2rem;
    padding-bottom: 4.8rem;
  }

  .legal-layout {
    gap: 1.6rem;
  }

  .legal-card,
  .legal-content-card {
    border-radius: 1.6rem;
  }

  .legal-block,
  .legal-intro-card {
    padding: 2rem 1.6rem;
  }

  .legal-block p,
  .legal-intro-card p {
    font-size: 1.48rem;
    line-height: 1.75;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}


/* =========================================================
   FINAL PATCH — Curtain FAQ vertical tabs after Happy Customers
   ========================================================= */
.mezzo-faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(210, 138, 97, 0.14), transparent 34%),
    linear-gradient(180deg, var(--c-cream, var(--cream-color, #FFF8F1)) 0%, #fff 100%);
}

.mezzo-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 52, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 52, 27, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
}

.mezzo-faq-section .container {
  position: relative;
  z-index: 1;
}

.mz-faq-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mz-faq-heading p {
  max-width: 760px;
  margin: 1.2rem auto 0;
  color: var(--text-muted, #6b5b52);
  font-size: clamp(1.55rem, 1.5vw, 1.8rem);
  line-height: 1.75;
}

.mz-faq-tabs {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
  margin-top: clamp(3rem, 4vw, 5.2rem);
}

.mz-faq-tablist-wrap {
  position: sticky;
  top: calc(var(--mz-sticky-header-offset, 98px) + 1.6rem);
  max-height: min(72vh, 760px);
  overflow: auto;
  padding: 1.2rem;
  border: 1px solid rgba(160, 82, 45, 0.18);
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.6rem 4rem rgba(96, 48, 20, 0.10);
  scrollbar-width: thin;
  scrollbar-color: rgba(160, 82, 45, 0.45) rgba(160, 82, 45, 0.08);
}

.mz-faq-tablist-wrap::-webkit-scrollbar {
  width: 7px;
}

.mz-faq-tablist-wrap::-webkit-scrollbar-track {
  background: rgba(160, 82, 45, 0.08);
  border-radius: 999px;
}

.mz-faq-tablist-wrap::-webkit-scrollbar-thumb {
  background: rgba(160, 82, 45, 0.45);
  border-radius: 999px;
}

.mz-faq-tablist {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mz-faq-group-label {
  margin: 1.4rem 0 0.3rem;
  padding: 0.2rem 1.2rem;
  color: var(--c-primary-dk, var(--primary-dark-color, #6F341B));
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mz-faq-group-label:first-child {
  margin-top: 0.2rem;
}

.mz-faq-tab {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(160, 82, 45, 0.12);
  border-radius: 1.4rem;
  background: #fff;
  color: var(--text-heading-dark, #241209);
  font-family: var(--font-body, sans-serif);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mz-faq-tab:hover,
.mz-faq-tab:focus-visible {
  transform: translateX(0.4rem);
  border-color: rgba(160, 82, 45, 0.34);
  color: var(--c-primary-dk, var(--primary-dark-color, #6F341B));
  box-shadow: 0 0.8rem 2rem rgba(160, 82, 45, 0.10);
  outline: none;
}

.mz-faq-tab.is-active,
.mz-faq-tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--c-primary, var(--primary-color, #A0522D)), var(--c-primary-dk, var(--primary-dark-color, #6F341B)));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 1.2rem 2.8rem rgba(160, 82, 45, 0.25);
}

.mz-faq-panels {
  min-height: 420px;
  border-radius: 3rem;
  background:
    linear-gradient(135deg, rgba(43, 23, 15, 0.94), rgba(107, 26, 26, 0.92)),
    var(--c-dark, #241209);
  box-shadow: var(--shadow, 0 2.4rem 4.8rem rgba(0,0,0,0.16));
  color: #fff;
  overflow: hidden;
}

.mz-faq-panel {
  display: none;
  min-height: 420px;
  padding: clamp(3rem, 4vw, 5.6rem);
  animation: mzFaqFadeUp 0.28s ease both;
}

.mz-faq-panel.is-active {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mz-faq-panel[hidden] {
  display: none !important;
}

.mz-faq-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1.7rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(201, 154, 94, 0.36);
  border-radius: 999px;
  color: var(--c-gold, #C99A5E);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mz-faq-panel h3 {
  max-width: 760px;
  margin: 0 0 1.6rem;
  color: #fff;
  font-family: var(--font-heading, serif);
  font-size: clamp(3.2rem, 4vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
}

.mz-faq-panel p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 248, 241, 0.82);
  font-size: clamp(1.7rem, 1.8vw, 2.05rem);
  font-weight: 500;
  line-height: 1.82;
}

.mz-faq-cta {
  align-self: flex-start;
  margin-top: 2.6rem;
}

@keyframes mzFaqFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .mz-faq-tabs {
    grid-template-columns: 1fr;
  }

  .mz-faq-tablist-wrap {
    position: relative;
    top: auto;
    max-height: 430px;
  }

  .mz-faq-panel,
  .mz-faq-panel.is-active,
  .mz-faq-panels {
    min-height: 330px;
  }
}

@media (max-width: 767px) {
  .mezzo-faq-section {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }

  .mz-faq-tabs {
    gap: 1.8rem;
    margin-top: 2.6rem;
  }

  .mz-faq-tablist-wrap {
    max-height: 360px;
    padding: 0.9rem;
    border-radius: 1.8rem;
  }

  .mz-faq-group-label {
    padding-left: 0.8rem;
    font-size: 1rem;
  }

  .mz-faq-tab {
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    font-size: 1.28rem;
  }

  .mz-faq-tab:hover,
  .mz-faq-tab:focus-visible {
    transform: none;
  }

  .mz-faq-panels {
    border-radius: 2rem;
  }

  .mz-faq-panel {
    padding: 2.7rem 2rem;
  }

  .mz-faq-panel h3 {
    font-size: clamp(2.7rem, 10vw, 3.6rem);
  }

  .mz-faq-panel p {
    font-size: 1.55rem;
    line-height: 1.75;
  }
}

/* =========================================================
   FINAL PATCH — FAQ larger, hover visibility, footer menus
   Requested:
   1) FAQ follows the main design and no longer looks too small
   2) Hover states keep text visible, preferably white text
   3) Footer Services / Quick Links are powered by WP Admin menus
   ========================================================= */

/* FAQ: larger, premium layout */
body .mezzo-faq-section {
  padding-top: clamp(8.8rem, 8vw, 13rem) !important;
  padding-bottom: clamp(8.8rem, 8vw, 13rem) !important;
}

body .mezzo-faq-section .container {
  max-width: 1380px !important;
}

body .mz-faq-heading span {
  color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  font-size: clamp(1.25rem, 1vw, 1.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
}

body .mz-faq-heading h2 {
  margin-top: 1.2rem !important;
  color: var(--text-heading-dark, #241209) !important;
  font-family: var(--font-heading, serif) !important;
  font-size: clamp(4.2rem, 5.2vw, 7.2rem) !important;
  line-height: 0.98 !important;
}

body .mz-faq-heading p {
  max-width: 880px !important;
  font-size: clamp(1.8rem, 1.45vw, 2.1rem) !important;
  line-height: 1.8 !important;
}

body .mz-faq-tabs {
  grid-template-columns: minmax(360px, 500px) minmax(0, 1fr) !important;
  gap: clamp(2.8rem, 4vw, 6.4rem) !important;
  margin-top: clamp(4.2rem, 5vw, 7rem) !important;
}

body .mz-faq-tablist-wrap {
  padding: 1.8rem !important;
  border-radius: 3rem !important;
  border-color: rgba(160, 82, 45, 0.22) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 2.4rem 5.8rem rgba(96, 48, 20, 0.13) !important;
}

body .mz-faq-tablist {
  gap: 1rem !important;
}

body .mz-faq-group-label {
  margin: 1.8rem 0 0.55rem !important;
  padding: 0.3rem 1.45rem !important;
  font-size: clamp(1.15rem, 0.95vw, 1.35rem) !important;
  letter-spacing: 0.18em !important;
}

body .mz-faq-tab {
  padding: 1.55rem 1.75rem !important;
  border-radius: 1.7rem !important;
  font-size: clamp(1.55rem, 1.18vw, 1.82rem) !important;
  line-height: 1.48 !important;
  box-shadow: 0 0.6rem 1.8rem rgba(43, 23, 15, 0.045) !important;
}

body .mz-faq-tab:hover,
body .mz-faq-tab:focus-visible,
body .mz-faq-tab.is-active,
body .mz-faq-tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--c-primary, var(--primary-color, #A0522D)), var(--c-primary-dk, var(--primary-dark-color, #6F341B))) !important;
  border-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 1.4rem 3rem rgba(160, 82, 45, 0.24) !important;
}

body .mz-faq-panels {
  min-height: 520px !important;
  border-radius: 3.4rem !important;
  box-shadow: 0 2.8rem 6.8rem rgba(43, 23, 15, 0.24) !important;
}

body .mz-faq-panel,
body .mz-faq-panel.is-active {
  min-height: 520px !important;
}

body .mz-faq-panel {
  padding: clamp(4.6rem, 5vw, 7.6rem) !important;
}

body .mz-faq-category {
  margin-bottom: 2.2rem !important;
  padding: 0.85rem 1.45rem !important;
  font-size: clamp(1.15rem, 0.9vw, 1.35rem) !important;
}

body .mz-faq-panel h3 {
  max-width: 920px !important;
  margin-bottom: 2.2rem !important;
  font-size: clamp(3.8rem, 4.4vw, 6.6rem) !important;
  line-height: 1.02 !important;
}

body .mz-faq-panel p {
  max-width: 900px !important;
  font-size: clamp(1.9rem, 1.65vw, 2.35rem) !important;
  line-height: 1.86 !important;
}

/* Footer menu locations: Services and Quick Links from WP Admin */
body .mezzo-footer .footer-menu,
body .mezzo-footer .footer-menu ul,
body .mezzo-footer .footer-list ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .mezzo-footer .footer-menu .sub-menu {
  margin-top: 0.8rem !important;
  padding-left: 1.2rem !important;
  border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
}

body .mezzo-footer .footer-menu .sub-menu a {
  font-size: max(1.4rem, calc(var(--fs-footer-link, 1.65rem) - 0.18rem)) !important;
  opacity: 0.88 !important;
}

/* Hover visibility standardisation */
body .btn:hover,
body .btn:focus-visible,
body a.btn:hover,
body a.btn:focus-visible,
body .wp-block-button__link:hover,
body .wp-block-button__link:focus-visible,
body .header-whatsapp-cta:hover,
body .header-whatsapp-cta:focus-visible,
body .mobile-whatsapp-cta:hover,
body .mobile-whatsapp-cta:focus-visible,
body .flip-link:hover,
body .flip-link:focus-visible,
body .mz-archive-btn:hover,
body .mz-archive-card:hover .mz-archive-btn,
body .footer-actions .btn:hover,
body .footer-actions .btn:focus-visible,
body .legal-template a.btn:hover,
body .legal-template a.btn:focus-visible,
body .mz-faq-cta:hover,
body .mz-faq-cta:focus-visible {
  background: var(--c-primary, var(--primary-color, #A0522D)) !important;
  background-color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  border-color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

body .site-header .nav a:hover,
body .site-header .nav a:focus-visible,
body .site-header .nav .current-menu-item > a,
body .site-header .nav .current-menu-ancestor > a,
body .mobile-panel a:hover,
body .mobile-panel a:focus-visible,
body .mobile-panel .current-menu-item > a,
body .mezzo-footer .footer-list a:hover,
body .mezzo-footer .footer-list a:focus-visible,
body .mezzo-footer .footer-legal-links a:hover,
body .mezzo-footer .footer-legal-links a:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--c-primary, var(--primary-color, #A0522D)) !important;
  background-color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  border-color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

body .site-header .nav a:hover::after,
body .site-header .nav a:focus-visible::after,
body .site-header .nav .current-menu-item > a::after,
body .site-header .nav .current-menu-ancestor > a::after,
body .mobile-panel a:hover::after,
body .mobile-panel a:focus-visible::after {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

body .product-type-card:hover,
body .feature-card:hover,
body .why-card:hover,
body .google-review-card:hover,
body .contact-info-card:hover,
body .contact-form-card:hover,
body .page-copy-card:hover,
body .legal-card:hover,
body .legal-content-card:hover {
  border-color: rgba(160, 82, 45, 0.36) !important;
  box-shadow: 0 2rem 4.8rem rgba(96, 48, 20, 0.14) !important;
}

body .product-type-card:hover strong,
body .product-type-card:hover span,
body .feature-card:hover h3,
body .feature-card:hover p,
body .why-card:hover h3,
body .why-card:hover p {
  color: var(--text-heading-dark, #241209) !important;
  -webkit-text-fill-color: var(--text-heading-dark, #241209) !important;
}

/* Keep transparent scroll arrow unchanged on every hover/active state */
body .mz-floating-scroll-cue,
body .mz-floating-scroll-cue:hover,
body .mz-floating-scroll-cue:focus,
body .mz-floating-scroll-cue:active,
body .mz-floating-scroll-cue.is-active {
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

@media (max-width: 1080px) {
  body .mz-faq-tabs {
    grid-template-columns: 1fr !important;
    gap: 2.6rem !important;
  }

  body .mz-faq-tablist-wrap {
    position: relative !important;
    top: auto !important;
    max-height: 470px !important;
  }

  body .mz-faq-panel,
  body .mz-faq-panel.is-active,
  body .mz-faq-panels {
    min-height: 390px !important;
  }
}

@media (max-width: 767px) {
  body .mezzo-faq-section {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }

  body .mz-faq-heading h2 {
    font-size: clamp(3.6rem, 12vw, 5rem) !important;
  }

  body .mz-faq-heading p {
    font-size: 1.65rem !important;
  }

  body .mz-faq-tablist-wrap {
    max-height: 420px !important;
    padding: 1.15rem !important;
    border-radius: 2.1rem !important;
  }

  body .mz-faq-tab {
    padding: 1.25rem 1.35rem !important;
    font-size: 1.45rem !important;
  }

  body .mz-faq-panel,
  body .mz-faq-panel.is-active,
  body .mz-faq-panels {
    min-height: 360px !important;
  }

  body .mz-faq-panel {
    padding: 3.2rem 2.2rem !important;
  }

  body .mz-faq-panel h3 {
    font-size: clamp(3rem, 10.5vw, 4.25rem) !important;
  }

  body .mz-faq-panel p {
    font-size: 1.7rem !important;
    line-height: 1.8 !important;
  }
}

/* =========================================================
   FINAL PATCH — FAQ desktop width + standard legal typography
   Requested:
   1) Desktop FAQ title text should not overflow; make tab area wider.
   2) Terms, Privacy, Disclaimer and Cookie legal templates should follow
      the same Mezzo heading, subheading and paragraph design system.
   ========================================================= */

/* FAQ: wider desktop tab column and safe wrapping for long questions */
@media (min-width: 1081px) {
  html body .mezzo-faq-section .container {
    width: min(100% - 4.8rem, 1600px) !important;
    max-width: 1600px !important;
  }

  html body .mz-faq-tabs {
    grid-template-columns: minmax(540px, 680px) minmax(0, 1fr) !important;
    gap: clamp(3.2rem, 3.6vw, 5.8rem) !important;
  }

  html body .mz-faq-tablist-wrap {
    width: 100% !important;
    max-width: 680px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
}

html body .mz-faq-tab {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: auto !important;
}

html body .mz-faq-tablist,
html body .mz-faq-tablist-wrap {
  min-width: 0 !important;
}

html body .mz-faq-tab:hover,
html body .mz-faq-tab:focus-visible,
html body .mz-faq-tab.is-active,
html body .mz-faq-tab[aria-selected="true"] {
  white-space: normal !important;
  overflow: visible !important;
}

@media (max-width: 1080px) {
  html body .mz-faq-tablist-wrap {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
}

/* Legal pages: consistent Mezzo design system */
html body .mezzo-legal-page {
  background: linear-gradient(180deg, var(--c-cream, var(--cream-color, #FFF8F1)) 0%, #fff 42%, #f7eadc 100%) !important;
}

html body .mezzo-legal-page .container {
  width: min(100% - 4.8rem, 1320px) !important;
  max-width: 1320px !important;
}

html body .mezzo-legal-page .legal-hero.inner-page-hero {
  position: relative !important;
  overflow: hidden !important;
  padding-top: clamp(9.2rem, 8vw, 13.5rem) !important;
  padding-bottom: clamp(6.4rem, 7vw, 9.2rem) !important;
  background:
    radial-gradient(circle at 16% 12%, rgba(210, 138, 97, 0.18), transparent 34%),
    linear-gradient(135deg, var(--c-dark-2, #2B170F), var(--c-accent, #6B1A1A)) !important;
  color: #fff !important;
}

html body .mezzo-legal-page .legal-hero.inner-page-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) !important;
  background-size: 90px 90px !important;
}

html body .mezzo-legal-page .legal-hero.inner-page-hero .container {
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
}

html body .mezzo-legal-page .legal-hero span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.2rem !important;
  margin-bottom: 1.6rem !important;
  color: var(--c-gold, #C99A5E) !important;
  font-family: var(--font-body, sans-serif) !important;
  font-size: clamp(1.15rem, 1vw, 1.45rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.24em !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
}

html body .mezzo-legal-page .legal-hero h1 {
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #fff !important;
  font-family: var(--font-heading, serif) !important;
  font-size: clamp(4.6rem, 7vw, 8.6rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 0.96 !important;
}

html body .mezzo-legal-page .legal-hero p {
  max-width: 900px !important;
  margin: 2.2rem auto 0 !important;
  color: rgba(255, 248, 241, 0.82) !important;
  font-family: var(--font-body, sans-serif) !important;
  font-size: clamp(1.7rem, 1.55vw, 2.15rem) !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
}

html body .mezzo-legal-page .legal-section {
  position: relative !important;
  padding-top: clamp(7rem, 7vw, 11rem) !important;
  padding-bottom: clamp(7rem, 7vw, 11rem) !important;
  background:
    radial-gradient(circle at 86% 6%, rgba(201, 154, 94, 0.16), transparent 32%),
    linear-gradient(180deg, #fffaf4 0%, var(--white-color, #ffffff) 50%, #f7eadc 100%) !important;
}

html body .mezzo-legal-page .legal-layout {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.55fr) !important;
  gap: clamp(2.8rem, 4vw, 5.6rem) !important;
  align-items: start !important;
}

html body .mezzo-legal-page .legal-card,
html body .mezzo-legal-page .legal-content-card {
  border: 1px solid rgba(160, 82, 45, 0.18) !important;
  border-radius: 3rem !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 2.4rem 5.6rem rgba(96, 48, 20, 0.12) !important;
}

html body .mezzo-legal-page .legal-intro-card {
  position: sticky !important;
  top: calc(var(--mz-sticky-header-offset, 98px) + 2rem) !important;
  padding: clamp(3rem, 3.5vw, 4.8rem) !important;
}

html body .mezzo-legal-page .section-kicker {
  display: inline-flex !important;
  margin-bottom: 1.3rem !important;
  color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  font-family: var(--font-body, sans-serif) !important;
  font-size: clamp(1.15rem, 0.9vw, 1.35rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.2em !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
}

html body .mezzo-legal-page .legal-intro-card h2 {
  margin: 0 0 1.6rem !important;
  color: var(--text-heading-dark, #241209) !important;
  font-family: var(--font-heading, serif) !important;
  font-size: clamp(3.4rem, 3.4vw, 5.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.02 !important;
}

html body .mezzo-legal-page .legal-intro-card p {
  margin: 0 0 1.4rem !important;
  color: var(--text-muted, #6b5b52) !important;
  font-family: var(--font-body, sans-serif) !important;
  font-size: clamp(1.65rem, 1.25vw, 1.9rem) !important;
  font-weight: 500 !important;
  line-height: 1.85 !important;
}

html body .mezzo-legal-page .legal-note {
  margin-top: 2rem !important;
  padding: 1.6rem 1.8rem !important;
  border-left: 4px solid var(--c-primary, var(--primary-color, #A0522D)) !important;
  border-radius: 1.4rem !important;
  background: rgba(201, 154, 94, 0.14) !important;
  color: var(--text-heading-dark, #241209) !important;
}

html body .mezzo-legal-page .legal-content-card {
  overflow: hidden !important;
}

html body .mezzo-legal-page .legal-block {
  padding: clamp(2.8rem, 3vw, 4.2rem) !important;
  border-bottom: 1px solid rgba(160, 82, 45, 0.14) !important;
}

html body .mezzo-legal-page .legal-block:last-child {
  border-bottom: 0 !important;
}

html body .mezzo-legal-page .legal-block h3 {
  margin: 0 0 1.2rem !important;
  color: var(--text-heading-dark, #241209) !important;
  font-family: var(--font-heading, serif) !important;
  font-size: clamp(2.7rem, 2.4vw, 3.8rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.12 !important;
}

html body .mezzo-legal-page .legal-block p {
  max-width: 92ch !important;
  margin: 0 !important;
  color: var(--text-muted, #6b5b52) !important;
  font-family: var(--font-body, sans-serif) !important;
  font-size: clamp(1.65rem, 1.22vw, 1.95rem) !important;
  font-weight: 500 !important;
  line-height: 1.9 !important;
}

html body .mezzo-legal-page .legal-block a,
html body .mezzo-legal-page .legal-intro-card a {
  color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  font-weight: 900 !important;
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 5px !important;
}

html body .mezzo-legal-page .legal-block a:hover,
html body .mezzo-legal-page .legal-block a:focus-visible,
html body .mezzo-legal-page .legal-intro-card a:hover,
html body .mezzo-legal-page .legal-intro-card a:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--c-primary, var(--primary-color, #A0522D)) !important;
  border-radius: 0.6rem !important;
  outline: none !important;
}

@media (max-width: 1024px) {
  html body .mezzo-legal-page .legal-layout {
    grid-template-columns: 1fr !important;
  }

  html body .mezzo-legal-page .legal-intro-card {
    position: relative !important;
    top: auto !important;
  }
}

@media (max-width: 767px) {
  html body .mezzo-legal-page .container {
    width: min(100% - 3.2rem, 1320px) !important;
  }

  html body .mezzo-legal-page .legal-hero.inner-page-hero {
    padding-top: 7.8rem !important;
    padding-bottom: 5.6rem !important;
  }

  html body .mezzo-legal-page .legal-hero h1 {
    font-size: clamp(4rem, 13vw, 5.6rem) !important;
  }

  html body .mezzo-legal-page .legal-hero p {
    font-size: 1.6rem !important;
    line-height: 1.75 !important;
  }

  html body .mezzo-legal-page .legal-section {
    padding-top: 5.6rem !important;
    padding-bottom: 6.4rem !important;
  }

  html body .mezzo-legal-page .legal-card,
  html body .mezzo-legal-page .legal-content-card {
    border-radius: 2rem !important;
  }

  html body .mezzo-legal-page .legal-intro-card,
  html body .mezzo-legal-page .legal-block {
    padding: 2.4rem 1.8rem !important;
  }

  html body .mezzo-legal-page .legal-intro-card h2 {
    font-size: clamp(3.1rem, 10vw, 4.2rem) !important;
  }

  html body .mezzo-legal-page .legal-block h3 {
    font-size: clamp(2.5rem, 8vw, 3.3rem) !important;
  }

  html body .mezzo-legal-page .legal-intro-card p,
  html body .mezzo-legal-page .legal-block p {
    font-size: 1.55rem !important;
    line-height: 1.78 !important;
  }
}


/* =========================================================
   FINAL PATCH — Mobile footer legal links row aligned left
   Requested: legal links on mobile should display in a left-aligned row,
   not centered/stacked.
   ========================================================= */
@media (max-width: 767px) {
  html body .mezzo-footer .footer-bottom,
  html body .footer-bottom#footer-bottom-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 1.2rem !important;
  }

  html body .mezzo-footer .footer-bottom > *,
  html body .footer-bottom#footer-bottom-legal > * {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  html body .mezzo-footer .footer-legal-links,
  html body #footer-legal-links.footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.8rem 1.4rem !important;
    width: 100% !important;
    margin-top: 0.8rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  html body .mezzo-footer .footer-legal-links a,
  html body #footer-legal-links.footer-legal-links a {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    margin: 0 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }
}

/* =========================================================
   FINAL PATCH — Global Mezzo typography system standardisation
   Requested:
   1) Heading, paragraph and body text should be consistent on all pages.
   2) Footer text on mobile should not look too small.
   Applies to: Home, Projects, Services, Curtain Cleaning, About Us,
   Contact, Curtains, Blinds, Wallpaper, Legal templates, archive/single projects.
   ========================================================= */
:root {
  --mz-page-max: 1320px;
  --mz-page-gutter: clamp(1.8rem, 4vw, 5vw);
  --mz-kicker-size: clamp(1.12rem, 0.95vw, 1.35rem);
  --mz-h1-size: clamp(4.2rem, 6.2vw, 8.4rem);
  --mz-h2-size: clamp(3.4rem, 4.1vw, 5.8rem);
  --mz-h3-size: clamp(2.45rem, 2.4vw, 3.6rem);
  --mz-card-title-size: clamp(2.05rem, 1.8vw, 2.8rem);
  --mz-body-size: clamp(1.62rem, 1.15vw, 1.82rem);
  --mz-body-large-size: clamp(1.72rem, 1.35vw, 2.05rem);
  --mz-small-size: clamp(1.28rem, 0.95vw, 1.48rem);
  --mz-line-body: 1.78;
  --mz-line-heading: 1.08;
}

html body {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--mz-body-size) !important;
  line-height: var(--mz-line-body) !important;
  color: var(--text-main, #333333) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html body main,
html body .mezzo-page-content,
html body .mz-archive-page,
html body .mz-single-project,
html body .entry-content {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--mz-body-size) !important;
  line-height: var(--mz-line-body) !important;
}

html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6,
html body .footer-brand-title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
  color: var(--text-heading-dark, #241209);
  font-weight: 700 !important;
  letter-spacing: -0.018em;
}

html body p,
html body main li,
html body .mezzo-page-content li,
html body .entry-content li,
html body .page-copy-card p,
html body .section-heading p,
html body .inner-page-hero p,
html body .mz-archive-hero p,
html body .mz-archive-intro p,
html body .contact-info-card p,
html body .contact-form-card p,
html body .feature-card p,
html body .product-type-card p,
html body .why-card p,
html body .cleaning-step p,
html body .legal-block p,
html body .legal-intro-card p {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--mz-body-size) !important;
  line-height: var(--mz-line-body) !important;
  font-weight: 500 !important;
  color: var(--text-muted, #6b5b52) !important;
}

html body .container,
html body .mz-archive-container,
html body .mz-archive-hero-inner,
html body .footer-inner,
html body .legal-layout,
html body .mezzo-faq-section .container {
  width: min(100% - calc(var(--mz-page-gutter) * 2), var(--mz-page-max)) !important;
  max-width: var(--mz-page-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hero/page title standard */
html body .hero h1,
html body .inner-page-hero h1,
html body .product-page-hero h1,
html body .contact-hero h1,
html body .legal-hero h1,
html body .mz-archive-hero h1,
html body .mz-single-project .mz-archive-hero h1,
html body .entry-content h1 {
  font-size: var(--mz-h1-size) !important;
  line-height: 0.98 !important;
  font-weight: 700 !important;
  letter-spacing: -0.045em !important;
}

html body .inner-page-hero p,
html body .product-page-hero p,
html body .contact-hero p,
html body .legal-hero p,
html body .mz-archive-hero p,
html body .hero-copy p {
  max-width: 82rem;
  font-size: var(--mz-body-large-size) !important;
  line-height: 1.76 !important;
  color: rgba(255, 248, 241, 0.82) !important;
}

html body .section-heading h2,
html body .page-copy-card h2,
html body .contact-info-card h2,
html body .contact-form-card h2,
html body .legal-intro-card h2,
html body .mz-archive-intro h2,
html body .cta-band-inner h2,
html body .footer-top h2,
html body .entry-content h2 {
  font-size: var(--mz-h2-size) !important;
  line-height: var(--mz-line-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}

html body .feature-card h3,
html body .flip-card-back h3,
html body .product-type-card h3,
html body .cleaning-step h3,
html body .legal-block h3,
html body .mz-archive-card h3,
html body .mz-faq-panel h3,
html body .entry-content h3 {
  font-size: var(--mz-h3-size) !important;
  line-height: 1.16 !important;
  font-weight: 700 !important;
}

html body .section-kicker,
html body .mz-archive-eyebrow,
html body .footer-kicker,
html body .flip-kicker,
html body .mz-faq-heading span,
html body .mz-faq-category {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--mz-kicker-size) !important;
  font-weight: 900 !important;
  letter-spacing: 0.22em !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
}

/* Cards/content spacing standard */
html body .page-copy-card,
html body .contact-info-card,
html body .contact-form-card,
html body .feature-card,
html body .product-type-card,
html body .why-card,
html body .cleaning-step,
html body .legal-card,
html body .legal-content-card,
html body .mz-archive-card,
html body .mz-faq-tablist-wrap,
html body .mz-faq-panels {
  border-radius: var(--r-lg, 2.4rem) !important;
}

html body .page-copy-card p + p,
html body .legal-block p + p,
html body .contact-info-card p + p,
html body .contact-form-card p + p {
  margin-top: 1.35rem !important;
}

html body .btn,
html body a.btn,
html body button,
html body .mz-archive-btn,
html body .flip-link {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--fs-button, 1.35rem) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

/* FAQ typography harmonised with page system */
html body .mz-faq-tab {
  font-size: clamp(1.55rem, 1.05vw, 1.78rem) !important;
  line-height: 1.52 !important;
  font-weight: 800 !important;
}

html body .mz-faq-panel p {
  font-size: clamp(1.75rem, 1.35vw, 2.1rem) !important;
  line-height: 1.86 !important;
  color: rgba(255, 248, 241, 0.84) !important;
}

/* Footer typography: make mobile/footer text consistent and readable */
html body .mezzo-footer {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--mz-body-size) !important;
  line-height: 1.68 !important;
}

html body .mezzo-footer .footer-brand-title {
  color: #fff !important;
  font-size: clamp(3.2rem, 3.2vw, 4.6rem) !important;
  line-height: 1.08 !important;
}

html body .mezzo-footer .footer-desc,
html body .mezzo-footer .footer-top p,
html body .mezzo-footer .footer-note {
  font-size: clamp(1.58rem, 1.08vw, 1.78rem) !important;
  line-height: 1.75 !important;
  color: var(--text-footer-muted, #e2c4a3) !important;
}

html body .mezzo-footer .footer-title {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: clamp(1.22rem, 0.95vw, 1.42rem) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.32em !important;
  color: var(--footer-heading-color, var(--white-color, #ffffff)) !important;
}

html body .mezzo-footer .footer-list a,
html body .mezzo-footer .footer-list span,
html body .mezzo-footer .footer-menu a,
html body .mezzo-footer .contact-item strong,
html body .mezzo-footer .contact-item a {
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: clamp(1.58rem, 1.06vw, 1.78rem) !important;
  line-height: 1.48 !important;
  font-weight: 700 !important;
}

html body .mezzo-footer .contact-item small,
html body .mezzo-footer .footer-bottom,
html body .mezzo-footer .footer-bottom p,
html body .mezzo-footer .footer-bottom a,
html body .mezzo-footer .footer-legal-links a {
  font-size: clamp(1.42rem, 1vw, 1.58rem) !important;
  line-height: 1.55 !important;
}

/* Keep header/menu controlled separately so desktop navigation does not become oversized */
html body .site-header,
html body .site-header .nav a,
html body .mobile-panel a,
html body .header-whatsapp-cta {
  font-family: var(--font-body, Raleway, sans-serif) !important;
}

@media (max-width: 1024px) {
  :root {
    --mz-h1-size: clamp(4rem, 9vw, 6.2rem);
    --mz-h2-size: clamp(3.2rem, 6.4vw, 4.6rem);
    --mz-h3-size: clamp(2.35rem, 4.8vw, 3.2rem);
    --mz-body-size: 1.62rem;
    --mz-body-large-size: 1.72rem;
    --mz-page-gutter: 2.4rem;
  }

  html body .inner-page-hero,
  html body .product-page-hero,
  html body .contact-hero,
  html body .mz-archive-hero {
    text-align: center !important;
  }

  html body .inner-page-hero p,
  html body .product-page-hero p,
  html body .contact-hero p,
  html body .mz-archive-hero p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 767px) {
  :root {
    --mz-h1-size: clamp(3.8rem, 12vw, 5.2rem);
    --mz-h2-size: clamp(3rem, 9vw, 4.2rem);
    --mz-h3-size: clamp(2.35rem, 7vw, 3rem);
    --mz-body-size: 1.58rem;
    --mz-body-large-size: 1.64rem;
    --mz-small-size: 1.42rem;
    --mz-page-gutter: 1.6rem;
  }

  html body p,
  html body main li,
  html body .page-copy-card p,
  html body .section-heading p,
  html body .contact-info-card p,
  html body .contact-form-card p,
  html body .feature-card p,
  html body .product-type-card p,
  html body .why-card p,
  html body .cleaning-step p,
  html body .legal-block p,
  html body .legal-intro-card p {
    font-size: 1.58rem !important;
    line-height: 1.76 !important;
  }

  html body .mezzo-footer {
    padding-left: 1.8rem !important;
    padding-right: 1.8rem !important;
  }

  html body .mezzo-footer .footer-brand-title {
    font-size: clamp(3.2rem, 11vw, 4.1rem) !important;
  }

  html body .mezzo-footer .footer-desc,
  html body .mezzo-footer .footer-top p,
  html body .mezzo-footer .footer-note {
    font-size: 1.58rem !important;
    line-height: 1.75 !important;
  }

  html body .mezzo-footer .footer-list a,
  html body .mezzo-footer .footer-list span,
  html body .mezzo-footer .footer-menu a,
  html body .mezzo-footer .contact-item strong,
  html body .mezzo-footer .contact-item a {
    font-size: 1.66rem !important;
    line-height: 1.48 !important;
  }

  html body .mezzo-footer .contact-item small,
  html body .mezzo-footer .footer-bottom,
  html body .mezzo-footer .footer-bottom p,
  html body .mezzo-footer .footer-bottom a,
  html body .mezzo-footer .footer-legal-links a {
    font-size: 1.48rem !important;
    line-height: 1.6 !important;
  }

  html body .footer-bottom {
    gap: 1.4rem !important;
  }
}

/* =========================================================
   FINAL PATCH — Center "Tap to view" in service flip cards
   Requested: Complete Curtain & Furnishing Solutions card hint
   ========================================================= */
html body .flip-services .flip-card-front .tap-hint,
html body #services .flip-card-front .tap-hint,
html body .services-grid .flip-card-front .tap-hint {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: max-content !important;
  max-width: calc(100% - 4rem) !important;
  text-align: center !important;
  margin: 0 !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

html body .flip-card:hover .flip-card-front .tap-hint,
html body .flip-card:focus-within .flip-card-front .tap-hint {
  color: var(--white-color, #ffffff) !important;
}

@media (max-width: 767px) {
  html body .flip-services .flip-card-front .tap-hint,
  html body #services .flip-card-front .tap-hint,
  html body .services-grid .flip-card-front .tap-hint {
    top: 52% !important;
    max-width: calc(100% - 3rem) !important;
    white-space: normal !important;
  }
}

/* =========================================================
   FINAL PATCH — FAQ inactive state black border/text
   Requested:
   In FAQ, inactive question tabs should use black/dark border and black text.
   Active/hover states remain primary background with white text.
   ========================================================= */
html body .mezzo-faq-section .mz-faq-tab:not(.is-active):not([aria-selected="true"]),
html body .mezzo-faq-section .mz-faq-tab[aria-selected="false"] {
  border: 1px solid var(--text-heading-dark, #241209) !important;
  color: var(--text-heading-dark, #241209) !important;
  -webkit-text-fill-color: var(--text-heading-dark, #241209) !important;
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 0.6rem 1.8rem rgba(43, 23, 15, 0.045) !important;
}

html body .mezzo-faq-section .mz-faq-tab:not(.is-active):not([aria-selected="true"]) *,
html body .mezzo-faq-section .mz-faq-tab[aria-selected="false"] * {
  color: var(--text-heading-dark, #241209) !important;
  -webkit-text-fill-color: var(--text-heading-dark, #241209) !important;
}

html body .mezzo-faq-section .mz-faq-tab:not(.is-active):not([aria-selected="true"]):hover,
html body .mezzo-faq-section .mz-faq-tab:not(.is-active):not([aria-selected="true"]):focus-visible,
html body .mezzo-faq-section .mz-faq-tab[aria-selected="false"]:hover,
html body .mezzo-faq-section .mz-faq-tab[aria-selected="false"]:focus-visible,
html body .mezzo-faq-section .mz-faq-tab.is-active,
html body .mezzo-faq-section .mz-faq-tab[aria-selected="true"] {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--c-primary, var(--primary-color, #A0522D)), var(--c-primary-dk, var(--primary-dark-color, #6F341B))) !important;
  background-color: var(--c-primary, var(--primary-color, #A0522D)) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html body .mezzo-faq-section .mz-faq-tab:not(.is-active):not([aria-selected="true"]):hover *,
html body .mezzo-faq-section .mz-faq-tab:not(.is-active):not([aria-selected="true"]):focus-visible *,
html body .mezzo-faq-section .mz-faq-tab[aria-selected="false"]:hover *,
html body .mezzo-faq-section .mz-faq-tab[aria-selected="false"]:focus-visible *,
html body .mezzo-faq-section .mz-faq-tab.is-active *,
html body .mezzo-faq-section .mz-faq-tab[aria-selected="true"] * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* =========================================================
   FINAL PATCH — Single Project Pinterest-style Photo Layout
   Requested: make all project single photos display in a Pinterest-style layout.
   Applies only to single project gallery, keeps lightbox slider active.
   ========================================================= */
html body.single-project .mz-project-pinterest-grid,
html body.single-project .mz-project-gallery-grid.mz-project-pinterest-grid {
  display: block !important;
  column-count: 3 !important;
  column-gap: 2.4rem !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

html body.single-project .mz-project-pinterest-grid .mz-project-pinterest-card,
html body.single-project .mz-project-gallery-grid .mz-gallery-card {
  display: block !important;
  width: 100% !important;
  margin: 0 0 2.4rem !important;
  padding: 0 !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  page-break-inside: avoid !important;
  overflow: hidden !important;
  border-radius: 2.2rem !important;
  background: #fff !important;
  border: 1px solid rgba(43, 23, 15, 0.10) !important;
  box-shadow: 0 1.6rem 4.2rem rgba(43, 23, 15, 0.10) !important;
}

html body.single-project .mz-project-pinterest-grid .mz-project-gallery-trigger,
html body.single-project .mz-project-gallery-grid .mz-project-gallery-trigger {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  background: transparent !important;
  cursor: zoom-in !important;
}

html body.single-project .mz-project-pinterest-grid .mz-project-pinterest-img,
html body.single-project .mz-project-gallery-grid .mz-archive-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  border-radius: inherit !important;
  background: var(--c-cream-2, #fbf3ea) !important;
}

html body.single-project .mz-project-pinterest-grid img,
html body.single-project .mz-project-gallery-grid .mz-gallery-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border-radius: inherit !important;
  transition: transform .35s ease, filter .35s ease !important;
}

html body.single-project .mz-project-pinterest-grid .mz-project-pinterest-card:hover,
html body.single-project .mz-project-gallery-grid .mz-gallery-card:hover {
  transform: translateY(-0.6rem) !important;
  box-shadow: 0 2.4rem 5.6rem rgba(43, 23, 15, 0.16) !important;
  border-color: rgba(160, 82, 45, 0.26) !important;
}

html body.single-project .mz-project-pinterest-grid .mz-project-pinterest-card:hover img,
html body.single-project .mz-project-gallery-grid .mz-gallery-card:hover img {
  transform: scale(1.025) !important;
  filter: brightness(0.96) !important;
}

@media (max-width: 1024px) {
  html body.single-project .mz-project-pinterest-grid,
  html body.single-project .mz-project-gallery-grid.mz-project-pinterest-grid {
    column-count: 2 !important;
    column-gap: 2rem !important;
  }

  html body.single-project .mz-project-pinterest-grid .mz-project-pinterest-card,
  html body.single-project .mz-project-gallery-grid .mz-gallery-card {
    margin-bottom: 2rem !important;
    border-radius: 1.8rem !important;
  }
}

@media (max-width: 640px) {
  html body.single-project .mz-project-pinterest-grid,
  html body.single-project .mz-project-gallery-grid.mz-project-pinterest-grid {
    column-count: 1 !important;
    column-gap: 0 !important;
    max-width: 100% !important;
  }

  html body.single-project .mz-project-pinterest-grid .mz-project-pinterest-card,
  html body.single-project .mz-project-gallery-grid .mz-gallery-card {
    margin-bottom: 1.8rem !important;
    border-radius: 1.6rem !important;
  }
}


/* =========================================================
   FINAL PATCH: Floating scroll cue reverses at page bottom
   Desktop + tablet + mobile.
   - Down arrow: scrolls to next section
   - Up arrow at bottom/last section: scrolls back to top
   ========================================================= */
html body .mz-floating-scroll-cue.is-reversed .mz-arrow-only {
  transform: rotate(180deg) !important;
  transform-origin: 50% 50% !important;
}

html body .mz-floating-scroll-cue.is-reversed,
html body .mz-floating-scroll-cue.is-reversed:hover,
html body .mz-floating-scroll-cue.is-reversed:focus,
html body .mz-floating-scroll-cue.is-reversed:active {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* =========================================================
   FINAL PATCH — Standardised Hero Banner System
   Requested: make all template hero banners follow Home hero design
   Scope: Home, Projects, Services, Curtain Cleaning, About Us,
   Contact, Curtains, Blinds, Wallpaper, Legal pages, archive/single project.
   ========================================================= */
:root {
  --mz-hero-bg-standard:
    radial-gradient(circle at 12% 18%, rgba(201,154,94,0.26), transparent 25%),
    radial-gradient(circle at 84% 22%, rgba(160,82,45,0.22), transparent 26%),
    linear-gradient(135deg, #180b06 0%, #241209 42%, #4b2114 100%);
  --mz-hero-grid-line: rgba(255,255,255,0.025);
  --mz-hero-eyebrow-color: var(--text-light, rgba(255,248,241,0.72));
  --mz-hero-heading-color: var(--text-white, var(--white-color, #ffffff));
  --mz-hero-subheading-color: var(--text-light, rgba(255,248,241,0.72));
  --mz-hero-emphasis-color: var(--c-primary-lt, #D28A61);
  --mz-hero-title-size-desktop: var(--fs-hero-title-desktop, 6.2rem);
  --mz-hero-title-size-tablet: var(--fs-hero-title-tablet, 5.5rem);
  --mz-hero-title-size-mobile: var(--fs-hero-title-mobile, 4.6rem);
  --mz-hero-subtitle-size: clamp(1.62rem, 1.35vw, 1.86rem);
  --mz-hero-button-bg: var(--c-wa, #25D366);
  --mz-hero-button-bg-hover: #1da851;
}

html body .inner-page-hero,
html body .product-page-hero,
html body .contact-hero,
html body .legal-hero.inner-page-hero,
html body .mz-archive-hero,
html body .mz-project-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  color: var(--mz-hero-heading-color) !important;
  background: var(--mz-hero-bg-standard) !important;
  padding: clamp(9.8rem, 8vw, 13rem) 5vw clamp(6.2rem, 6vw, 8.4rem) !important;
  min-height: clamp(34rem, 36vw, 48rem) !important;
  display: flex !important;
  align-items: center !important;
}

html body .hero::before,
html body .inner-page-hero::before,
html body .product-page-hero::before,
html body .contact-hero::before,
html body .legal-hero.inner-page-hero::before,
html body .mz-archive-hero::before,
html body .mz-project-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 7rem,
      var(--mz-hero-grid-line) 7rem,
      var(--mz-hero-grid-line) 7.15rem
    ) !important;
  pointer-events: none !important;
  z-index: -2 !important;
}

html body .inner-page-hero::after,
html body .product-page-hero::after,
html body .contact-hero::after,
html body .legal-hero.inner-page-hero::after,
html body .mz-archive-hero::after,
html body .mz-project-hero::after {
  content: "" !important;
  position: absolute !important;
  width: clamp(34rem, 42vw, 64rem) !important;
  height: clamp(34rem, 42vw, 64rem) !important;
  right: -18rem !important;
  bottom: -22rem !important;
  border-radius: 50% !important;
  background: rgba(201,154,94,0.16) !important;
  filter: blur(1px) !important;
  pointer-events: none !important;
  z-index: -2 !important;
}

html body .inner-page-hero .container,
html body .product-page-hero .container,
html body .contact-hero .container,
html body .legal-hero.inner-page-hero .container,
html body .mz-archive-hero-inner,
html body .mz-project-hero-inner {
  width: min(118rem, 100%) !important;
  max-width: 118rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative !important;
  z-index: 1 !important;
}

html body .inner-page-hero .container,
html body .product-page-hero .container,
html body .contact-hero .container,
html body .legal-hero.inner-page-hero .container,
html body .mz-archive-hero-inner,
html body .mz-project-hero-inner {
  text-align: center !important;
}

html body .inner-page-hero .container > span:not(.emphasis-wavy),
html body .product-page-hero .container > span:not(.emphasis-wavy),
html body .contact-hero .container > span:not(.emphasis-wavy),
html body .legal-hero.inner-page-hero .container > span:not(.emphasis-wavy),
html body .mz-archive-eyebrow,
html body .mz-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  color: var(--mz-hero-eyebrow-color) !important;
  -webkit-text-fill-color: var(--mz-hero-eyebrow-color) !important;
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--fs-eyebrow, 1.15rem) !important;
  line-height: 1.4 !important;
  font-weight: 800 !important;
  letter-spacing: 0.28rem !important;
  text-transform: uppercase !important;
  margin: 0 auto 2rem !important;
}

html body .inner-page-hero .container > span:not(.emphasis-wavy)::before,
html body .product-page-hero .container > span:not(.emphasis-wavy)::before,
html body .contact-hero .container > span:not(.emphasis-wavy)::before,
html body .legal-hero.inner-page-hero .container > span:not(.emphasis-wavy)::before,
html body .mz-archive-eyebrow::before,
html body .mz-eyebrow::before {
  content: "" !important;
  width: 4rem !important;
  height: 0.1rem !important;
  background: var(--c-gold, #C99A5E) !important;
  display: inline-block !important;
}

html body .inner-page-hero h1,
html body .product-page-hero h1,
html body .contact-hero h1,
html body .legal-hero.inner-page-hero h1,
html body .mz-archive-hero h1,
html body .mz-project-hero h1 {
  width: min(88rem, 100%) !important;
  max-width: 88rem !important;
  margin: 0 auto 2.4rem !important;
  color: var(--mz-hero-heading-color) !important;
  -webkit-text-fill-color: var(--mz-hero-heading-color) !important;
  font-family: var(--font-heading, "Cormorant Garamond", serif) !important;
  font-size: var(--mz-hero-title-size-desktop) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.06rem !important;
  font-weight: 700 !important;
}

html body .inner-page-hero h1 em,
html body .product-page-hero h1 em,
html body .contact-hero h1 em,
html body .legal-hero.inner-page-hero h1 em,
html body .mz-archive-hero h1 em,
html body .mz-project-hero h1 em {
  color: var(--mz-hero-emphasis-color) !important;
  -webkit-text-fill-color: var(--mz-hero-emphasis-color) !important;
  font-style: italic !important;
}

html body .inner-page-hero h1 .emphasis-wavy,
html body .product-page-hero h1 .emphasis-wavy,
html body .contact-hero h1 .emphasis-wavy,
html body .legal-hero.inner-page-hero h1 .emphasis-wavy,
html body .mz-archive-hero h1 .emphasis-wavy,
html body .mz-project-hero h1 .emphasis-wavy {
  display: inline !important;
  color: var(--mz-hero-heading-color) !important;
  -webkit-text-fill-color: var(--mz-hero-heading-color) !important;
}

html body .inner-page-hero p,
html body .product-page-hero p,
html body .contact-hero p,
html body .legal-hero.inner-page-hero p,
html body .mz-archive-hero p,
html body .mz-project-hero p {
  max-width: 72rem !important;
  margin: 0 auto !important;
  color: var(--mz-hero-subheading-color) !important;
  -webkit-text-fill-color: var(--mz-hero-subheading-color) !important;
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--mz-hero-subtitle-size) !important;
  line-height: 1.8 !important;
  font-weight: 500 !important;
}

html body .inner-page-hero .btn,
html body .product-page-hero .btn,
html body .contact-hero .btn,
html body .legal-hero.inner-page-hero .btn,
html body .mz-archive-hero .btn,
html body .mz-project-hero .btn,
html body .inner-hero-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 5.2rem !important;
  padding: 1.35rem 2.8rem !important;
  margin-top: 3rem !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: var(--mz-hero-button-bg) !important;
  color: var(--text-white, var(--white-color, #ffffff)) !important;
  -webkit-text-fill-color: var(--text-white, var(--white-color, #ffffff)) !important;
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--fs-button, 1.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.06rem !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  box-shadow: 0 1.4rem 3rem rgba(37, 211, 102, 0.26) !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease !important;
}

html body .inner-page-hero .btn:hover,
html body .product-page-hero .btn:hover,
html body .contact-hero .btn:hover,
html body .legal-hero.inner-page-hero .btn:hover,
html body .mz-archive-hero .btn:hover,
html body .mz-project-hero .btn:hover,
html body .inner-hero-btn:hover,
html body .inner-page-hero .btn:focus-visible,
html body .product-page-hero .btn:focus-visible,
html body .contact-hero .btn:focus-visible,
html body .legal-hero.inner-page-hero .btn:focus-visible,
html body .mz-archive-hero .btn:focus-visible,
html body .mz-project-hero .btn:focus-visible,
html body .inner-hero-btn:focus-visible {
  background: var(--mz-hero-button-bg-hover) !important;
  color: var(--text-white, var(--white-color, #ffffff)) !important;
  -webkit-text-fill-color: var(--text-white, var(--white-color, #ffffff)) !important;
  transform: translateY(-0.25rem) scale(1.02) !important;
  box-shadow: 0 1.8rem 3.8rem rgba(37, 211, 102, 0.34) !important;
  outline: none !important;
}

@media (max-width: 1080px) {
  html body .inner-page-hero,
  html body .product-page-hero,
  html body .contact-hero,
  html body .legal-hero.inner-page-hero,
  html body .mz-archive-hero,
  html body .mz-project-hero {
    padding: 9rem 4vw 6.4rem !important;
    min-height: clamp(31rem, 42vw, 42rem) !important;
  }

  html body .inner-page-hero h1,
  html body .product-page-hero h1,
  html body .contact-hero h1,
  html body .legal-hero.inner-page-hero h1,
  html body .mz-archive-hero h1,
  html body .mz-project-hero h1 {
    font-size: var(--mz-hero-title-size-tablet) !important;
    line-height: 0.98 !important;
    max-width: 82rem !important;
  }
}

@media (max-width: 767px) {
  html body .inner-page-hero,
  html body .product-page-hero,
  html body .contact-hero,
  html body .legal-hero.inner-page-hero,
  html body .mz-archive-hero,
  html body .mz-project-hero {
    padding: 7.8rem 1.8rem 5.6rem !important;
    min-height: clamp(30rem, 70vw, 38rem) !important;
  }

  html body .inner-page-hero .container > span:not(.emphasis-wavy),
  html body .product-page-hero .container > span:not(.emphasis-wavy),
  html body .contact-hero .container > span:not(.emphasis-wavy),
  html body .legal-hero.inner-page-hero .container > span:not(.emphasis-wavy),
  html body .mz-archive-eyebrow,
  html body .mz-eyebrow {
    font-size: 1.08rem !important;
    letter-spacing: 0.22rem !important;
    gap: 0.8rem !important;
    margin-bottom: 1.6rem !important;
  }

  html body .inner-page-hero .container > span:not(.emphasis-wavy)::before,
  html body .product-page-hero .container > span:not(.emphasis-wavy)::before,
  html body .contact-hero .container > span:not(.emphasis-wavy)::before,
  html body .legal-hero.inner-page-hero .container > span:not(.emphasis-wavy)::before,
  html body .mz-archive-eyebrow::before,
  html body .mz-eyebrow::before {
    width: 3rem !important;
  }

  html body .inner-page-hero h1,
  html body .product-page-hero h1,
  html body .contact-hero h1,
  html body .legal-hero.inner-page-hero h1,
  html body .mz-archive-hero h1,
  html body .mz-project-hero h1 {
    font-size: var(--mz-hero-title-size-mobile) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03rem !important;
    margin-bottom: 1.8rem !important;
  }

  html body .inner-page-hero p,
  html body .product-page-hero p,
  html body .contact-hero p,
  html body .legal-hero.inner-page-hero p,
  html body .mz-archive-hero p,
  html body .mz-project-hero p {
    font-size: 1.58rem !important;
    line-height: 1.75 !important;
    max-width: 100% !important;
  }

  html body .inner-page-hero .btn,
  html body .product-page-hero .btn,
  html body .contact-hero .btn,
  html body .legal-hero.inner-page-hero .btn,
  html body .mz-archive-hero .btn,
  html body .mz-project-hero .btn,
  html body .inner-hero-btn {
    width: min(100%, 34rem) !important;
    min-height: 5rem !important;
    margin-top: 2.4rem !important;
    padding: 1.25rem 2rem !important;
    font-size: 1.28rem !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

@media (max-width: 380px) {
  html body .inner-page-hero h1,
  html body .product-page-hero h1,
  html body .contact-hero h1,
  html body .legal-hero.inner-page-hero h1,
  html body .mz-archive-hero h1,
  html body .mz-project-hero h1 {
    font-size: 4.2rem !important;
  }
}

/* =========================================================
   FINAL PATCH — desktop active header menu as underline only
   Requested: active menu item must not use pill background/border.
   It should only show a 1px primary underline under the text.
   ========================================================= */
:root {
  --mz-active-menu-underline-color: var(--c-primary, var(--primary-color, #A0522D));
  --mz-active-menu-underline-offset: 6px;
}

html body .site-header .nav .current-menu-item > a,
html body .site-header .nav .current-menu-ancestor > a,
html body .site-header .nav .current_page_item > a,
html body .site-header .nav .current_page_ancestor > a,
html body .site-header .nav .current_page_parent > a,
html body .site-header .nav a[aria-current="page"],
html body .site-header .nav .current-menu-item > a:hover,
html body .site-header .nav .current-menu-ancestor > a:hover,
html body .site-header .nav .current_page_item > a:hover,
html body .site-header .nav .current_page_ancestor > a:hover,
html body .site-header .nav .current_page_parent > a:hover,
html body .site-header .nav a[aria-current="page"]:hover,
html body .site-header .nav .current-menu-item > a:focus,
html body .site-header .nav .current-menu-ancestor > a:focus,
html body .site-header .nav .current_page_item > a:focus,
html body .site-header .nav .current_page_ancestor > a:focus,
html body .site-header .nav .current_page_parent > a:focus,
html body .site-header .nav a[aria-current="page"]:focus,
html body .site-header .nav .current-menu-item > a:focus-visible,
html body .site-header .nav .current-menu-ancestor > a:focus-visible,
html body .site-header .nav .current_page_item > a:focus-visible,
html body .site-header .nav .current_page_ancestor > a:focus-visible,
html body .site-header .nav .current_page_parent > a:focus-visible,
html body .site-header .nav a[aria-current="page"]:focus-visible {
  color: var(--mz-active-menu-underline-color) !important;
  -webkit-text-fill-color: var(--mz-active-menu-underline-color) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: var(--mz-active-menu-underline-color) !important;
  text-underline-offset: var(--mz-active-menu-underline-offset) !important;
  text-decoration-skip-ink: none !important;
  outline: none !important;
}

html body .site-header .nav .current-menu-item > a::after,
html body .site-header .nav .current-menu-ancestor > a::after,
html body .site-header .nav .current_page_item > a::after,
html body .site-header .nav .current_page_ancestor > a::after,
html body .site-header .nav .current_page_parent > a::after,
html body .site-header .nav a[aria-current="page"]::after {
  color: var(--mz-active-menu-underline-color) !important;
  -webkit-text-fill-color: var(--mz-active-menu-underline-color) !important;
}

html body .mobile-panel .current-menu-item > a,
html body .mobile-panel .current-menu-ancestor > a,
html body .mobile-panel .current_page_item > a,
html body .mobile-panel .current_page_ancestor > a,
html body .mobile-panel .current_page_parent > a,
html body .mobile-panel a[aria-current="page"] {
  color: var(--mz-active-menu-underline-color) !important;
  -webkit-text-fill-color: var(--mz-active-menu-underline-color) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: var(--mz-active-menu-underline-color) !important;
  text-underline-offset: var(--mz-active-menu-underline-offset) !important;
}

/* =========================================================
   FINAL PATCH — hero heading to checklist spacing
   Requested: add breathing room between "Better Support" heading
   and "Free curtain consultation" checklist on desktop/tablet/mobile.
   ========================================================= */
html body.home .hero .hero-copy h1,
html body.front-page .hero .hero-copy h1,
html body.page-template-template-home .hero .hero-copy h1,
html body .template-home .hero .hero-copy h1 {
  margin-bottom: clamp(3.2rem, 3vw, 4.6rem) !important;
}

html body.home .hero .hero-benefits-wrap,
html body.front-page .hero .hero-benefits-wrap,
html body.page-template-template-home .hero .hero-benefits-wrap,
html body .template-home .hero-benefits-wrap {
  margin-top: clamp(1.2rem, 1.8vw, 2.4rem) !important;
}

@media (max-width: 1080px) {
  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    margin-bottom: 3.8rem !important;
  }

  html body.home .hero .hero-benefits-wrap,
  html body.front-page .hero .hero-benefits-wrap,
  html body.page-template-template-home .hero .hero-benefits-wrap,
  html body .template-home .hero-benefits-wrap {
    margin-top: 1.8rem !important;
  }
}

@media (max-width: 767px) {
  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    margin-bottom: 4.2rem !important;
  }

  html body.home .hero .hero-benefits-wrap,
  html body.front-page .hero .hero-benefits-wrap,
  html body.page-template-template-home .hero .hero-benefits-wrap,
  html body .template-home .hero-benefits-wrap {
    margin-top: 2rem !important;
  }
}

/* =========================================================
   Single Project Breadcrumb
   Centered after the hero banner on single project pages.
   ========================================================= */
.single-project .mz-single-project-hero .mz-archive-hero-inner,
.mz-single-project .mz-single-project-hero .mz-archive-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mz-project-breadcrumb-wrap {
  width: min(100% - 3.2rem, 118rem);
  margin: 0 auto;
  padding: 2.4rem 0 0;
  display: flex;
  justify-content: center;
}

.mz-project-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.3rem, 0.35vw + 1.1rem, 1.5rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-body, #2f2521);
  text-align: center;
}

.mz-project-breadcrumb a {
  color: var(--yellow-dark, #d5a24a);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.mz-project-breadcrumb a:hover,
.mz-project-breadcrumb a:focus-visible {
  color: var(--c-primary, #a5522f);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.45rem;
  text-decoration-color: var(--c-primary, #a5522f);
  outline: none;
}

.mz-project-breadcrumb-current {
  color: var(--c-heading, var(--heading-color, #241815));
  max-width: min(100%, 70rem);
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .mz-project-breadcrumb-wrap {
    width: min(100% - 2.4rem, 92rem);
    padding-top: 2rem;
  }

  .mz-project-breadcrumb {
    gap: 0.65rem;
  }
}

@media (max-width: 767px) {
  .mz-project-breadcrumb-wrap {
    width: min(100% - 2rem, 56rem);
    padding-top: 1.6rem;
  }

  .mz-project-breadcrumb {
    font-size: 1.3rem;
    gap: 0.5rem;
  }

  .mz-project-breadcrumb-current {
    flex-basis: 100%;
    margin-top: 0.2rem;
  }
}

/* Curtains page material auto slider update */
.curtains-image-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House_MAH-SING-GROUPS-DSARA-SENTRAL_00041.jpg");
}

.curtain-material-slider-section {
  overflow: hidden;
}

.curtain-material-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.8rem 0 1.2rem;
}

.curtain-material-slider::before,
.curtain-material-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 2;
  pointer-events: none;
}

.curtain-material-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--page-soft-bg), rgba(255,255,255,0));
}

.curtain-material-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--page-soft-bg), rgba(255,255,255,0));
}

.curtain-material-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: curtainMaterialScroll 34s linear infinite;
}

.curtain-material-slider:hover .curtain-material-track {
  animation-play-state: paused;
}

.curtain-material-card {
  width: clamp(22rem, 24vw, 32rem);
  min-height: 22rem;
  border-radius: 2.2rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border: 1px solid var(--page-card-border);
  box-shadow: 0 1.4rem 3.4rem rgba(43,23,15,0.09);
  background-image: linear-gradient(to top, rgba(36,18,9,0.58), rgba(36,18,9,0.05) 58%), var(--material-image);
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}

.curtain-material-card span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 2rem;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  text-shadow: 0 0.4rem 1.4rem rgba(0,0,0,0.28);
}

.curtain-material-card:hover {
  transform: translateY(-0.4rem);
  transition: transform 0.25s ease;
}

@keyframes curtainMaterialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1rem)); }
}

@media (max-width: 991px) {
  .curtain-material-card {
    width: 28rem;
    min-height: 20rem;
  }
}

@media (max-width: 767px) {
  .curtain-material-slider::before,
  .curtain-material-slider::after {
    width: 3.2rem;
  }
  .curtain-material-track {
    gap: 1.4rem;
    animation-duration: 28s;
  }
  .curtain-material-card {
    width: 23rem;
    min-height: 17rem;
    border-radius: 1.8rem;
  }
  .curtain-material-card span {
    padding: 1.6rem;
  }
}


/* Blinds template image cards update */
.blinds-type-card {
  overflow: hidden;
}

.feature-card-image {
  width: calc(100% + 4.8rem);
  aspect-ratio: 1 / 1;
  margin: -2.4rem -2.4rem 2rem;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--page-card-border);
}

@media (max-width: 767px) {
  .feature-card-image {
    width: calc(100% + 3.2rem);
    margin: -1.6rem -1.6rem 1.6rem;
  }
}

/* Wallpaper template update */
.wallpaper-image-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2022/01/Mezzo-Curtain-House_European-Wallpaper_Factory-ll_00001-768x638.jpg");
  background-position: center;
}

.wallpaper-material-slider-section {
  overflow: hidden;
}

.wallpaper-material-card {
  background-position: center;
}

@media (max-width: 767px) {
  .wallpaper-material-slider-section .section-heading {
    margin-bottom: 2.4rem;
  }
}

/* =====================================================
   Mezzo Curtain Cleaning Landing Page
   Mobile-first lead-generation template
   Uses global fonts, colour tokens and spacing from this child theme.
===================================================== */
html body.page-template-template-cleaning,
html body .mezzo-cleaning-page {
  background: var(--white-color, #ffffff) !important;
}

html body .mezzo-cleaning-page {
  --cc-white: var(--white-color, #ffffff);
  --cc-cream: var(--c-cream, var(--cream-color, #FFF8F1));
  --cc-cream-2: var(--c-cream-2, #F6E6D7);
  --cc-primary: var(--c-primary, var(--primary-color, #A0522D));
  --cc-primary-dk: var(--c-primary-dk, var(--primary-dark-color, #6F341B));
  --cc-dark: var(--text-heading-dark, #241209);
  --cc-muted: var(--text-muted, #6b5b52);
  --cc-border: rgba(160, 82, 45, 0.18);
  --cc-shadow: 0 1.8rem 4.4rem rgba(96, 48, 20, 0.11);
  color: var(--cc-dark);
  background: linear-gradient(180deg, var(--white-color, #ffffff) 0%, var(--cc-cream) 100%);
  font-family: var(--font-body);
  overflow: hidden;
}

html body .cc-container {
  width: min(114rem, calc(100% - 4rem));
  margin: 0 auto;
}

html body .cc-narrow-container {
  width: min(92rem, calc(100% - 4rem));
}

html body .cc-section {
  padding: clamp(5.6rem, 7vw, 8.8rem) 0;
  background: var(--white-color, #ffffff);
}

html body .cc-section:nth-of-type(even) {
  background: linear-gradient(180deg, var(--white-color, #ffffff), rgba(255, 248, 241, 0.75));
}

html body .cc-section-heading {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto clamp(2.8rem, 4vw, 4.2rem);
}

html body .cc-section-heading h2,
html body .cc-final-cta h2 {
  font-family: var(--font-heading);
  color: var(--cc-dark);
  font-size: var(--fs-section-title);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
}

html body .cc-section-heading p,
html body .cc-final-cta p {
  color: var(--cc-muted);
  font-size: var(--fs-body);
  line-height: 1.75;
  margin: 0;
}

html body .cc-hero {
  position: relative;
  min-height: min(78rem, 100svh);
  display: flex;
  align-items: center;
  padding: clamp(10rem, 11vw, 13rem) 0 clamp(5.6rem, 7vw, 8rem);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 38%, rgba(255,248,241,0.60) 58%, rgba(255,248,241,0.30) 100%),
    url('https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House_MAH-SING-GROUPS-DSARA-SENTRAL_00041.jpg') center right / cover no-repeat;
  border-bottom: 1px solid rgba(222, 192, 154, 0.50);
  overflow: hidden;
}

html body .cc-hero::before {
  content: "";
  position: absolute;
  inset: auto -12rem -20rem auto;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: rgba(160, 82, 45, 0.08);
  pointer-events: none;
}

html body .cc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(34rem, 0.78fr);
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

html body .cc-hero-copy {
  max-width: 62rem;
}

html body .cc-hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 6.1vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--cc-dark);
  margin: 0 0 2rem;
}

html body .cc-hero-copy p {
  color: var(--cc-muted);
  font-size: clamp(1.55rem, 1.35vw, 1.9rem);
  line-height: 1.75;
  max-width: 52rem;
  margin: 0 0 2.6rem;
}

html body .cc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

html body .cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 0 2.4rem;
  border-radius: 999px;
  font-size: var(--fs-button);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

html body .cc-btn-main {
  color: var(--white-color, #ffffff) !important;
  background: var(--c-wa, #25D366);
  box-shadow: 0 1.3rem 2.8rem rgba(37, 211, 102, 0.24);
}

html body .cc-btn-main::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.8rem;
  border-radius: 50%;
  border: 0.2rem solid currentColor;
  box-shadow: inset -0.35rem -0.35rem 0 -0.18rem currentColor;
}

html body .cc-btn-main:hover,
html body .cc-btn-main:focus-visible {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.7rem 3.2rem rgba(37, 211, 102, 0.32);
}

html body .cc-btn-outline {
  color: var(--cc-primary) !important;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(160, 82, 45, 0.34);
}

html body .cc-btn-outline:hover,
html body .cc-btn-outline:focus-visible {
  color: var(--white-color, #ffffff) !important;
  background: var(--cc-primary);
}

html body .cc-hero-visual {
  position: relative;
  min-height: clamp(34rem, 34vw, 48rem);
  border-radius: var(--r-lg);
  background: rgba(255, 248, 241, 0.72);
  border: 1px solid rgba(222, 192, 154, 0.58);
  box-shadow: var(--cc-shadow);
  overflow: hidden;
}

html body .cc-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 18, 9, 0.02), rgba(36, 18, 9, 0.18));
  pointer-events: none;
}

html body .cc-hero-visual-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

html body .cc-min-price-card {
  position: absolute;
  z-index: 2;
  right: clamp(1.6rem, 4vw, 3.4rem);
  bottom: clamp(1.6rem, 4vw, 3.4rem);
  width: min(24rem, calc(100% - 3.2rem));
  overflow: hidden;
  border-radius: 2rem;
  background: rgba(255, 248, 241, 0.96);
  border: 1px solid rgba(160, 82, 45, 0.24);
  box-shadow: 0 1.6rem 3.6rem rgba(36, 18, 9, 0.18);
  text-align: center;
}

html body .cc-min-price-card span {
  display: block;
  padding: 1rem 1.4rem;
  color: var(--white-color, #ffffff);
  background: var(--cc-primary);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html body .cc-min-price-card small {
  display: block;
  margin-top: 1.3rem;
  color: var(--cc-primary-dk);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html body .cc-min-price-card strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--cc-primary);
  font-size: clamp(4.6rem, 6vw, 7rem);
  line-height: 0.92;
  margin: 0.2rem 0 0.7rem;
}

html body .cc-min-price-card em {
  display: block;
  padding: 0 1.4rem 1.4rem;
  color: var(--cc-primary-dk);
  font-style: normal;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

html body .cc-problem-grid,
html body .cc-price-grid,
html body .cc-feature-grid {
  display: grid;
  gap: 1.6rem;
}

html body .cc-problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

html body .cc-price-grid,
html body .cc-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

html body .cc-info-card,
html body .cc-price-card,
html body .cc-feature-card,
html body .cc-process-card,
html body .cc-before-card,
html body .cc-faq-list details {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--cc-border);
  border-radius: 1.8rem;
  box-shadow: 0 1rem 2.6rem rgba(96, 48, 20, 0.055);
}

html body .cc-info-card,
html body .cc-feature-card {
  padding: 2.2rem;
  min-height: 18rem;
}

html body .cc-info-card h3,
html body .cc-feature-card h3,
html body .cc-process-card h3,
html body .cc-before-card h3,
html body .cc-price-card h3 {
  font-family: var(--font-heading);
  color: var(--cc-dark);
  font-size: clamp(2.1rem, 2vw, 2.7rem);
  line-height: 1.08;
  margin: 0 0 0.8rem;
}

html body .cc-info-card p,
html body .cc-feature-card p,
html body .cc-process-card p,
html body .cc-price-card p,
html body .cc-faq-list p {
  color: var(--cc-muted);
  font-size: 1.42rem;
  line-height: 1.65;
  margin: 0;
}

html body .cc-icon,
html body .cc-price-icon {
  width: 5.2rem;
  height: 5.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.4rem;
  background: rgba(160, 82, 45, 0.10);
  color: var(--cc-primary);
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
}

html body .cc-price-card {
  padding: 2.4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,248,241,0.96), var(--white-color, #ffffff));
}

html body .cc-price-card strong {
  display: block;
  color: var(--cc-primary);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 3vw, 4.2rem);
  line-height: 1;
  margin-top: 0.4rem;
}

html body .cc-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  counter-reset: ccStep;
}

html body .cc-process-card {
  position: relative;
  padding: 2.4rem;
}

html body .cc-process-card span {
  width: 4.4rem;
  height: 4.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.3rem;
  color: var(--white-color, #ffffff);
  background: var(--cc-primary);
  font-size: 1.55rem;
  font-weight: 900;
}

html body .cc-before-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

html body .cc-before-card {
  overflow: hidden;
  text-align: center;
}

html body .cc-before-image {
  position: relative;
  min-height: 18rem;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--cc-border);
}

html body .cc-before-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36,18,9,0.34) 0 49.6%, rgba(255,255,255,0.22) 50.4% 100%);
}

html body .cc-before-image::after {
  content: "›";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cc-primary);
  background: rgba(255, 255, 255, 0.95);
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 0 0.8rem 1.8rem rgba(36,18,9,0.18);
}

html body .cc-before-image span {
  position: absolute;
  top: 1rem;
  z-index: 1;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: var(--white-color, #ffffff);
  background: rgba(111,52,27,0.86);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 900;
}

html body .cc-before-image span:first-child { left: 1rem; }
html body .cc-before-image span:last-child { right: 1rem; }

html body .cc-before-2 { background-image: url('https://mezzocurtain.com/wp-content/uploads/2021/11/MAH-SING-GROUPS_Southville-City04-300x200.jpg'); }
html body .cc-before-3 { background-image: url('https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House_MAH-SING-GROUPS-Southville-City_00011-300x200.jpg'); }

html body .cc-before-card h3 {
  padding: 1.3rem 1.4rem 1.5rem;
  margin: 0;
  font-size: 2rem;
}

html body .cc-faq-list {
  display: grid;
  gap: 1rem;
}

html body .cc-faq-list details {
  padding: 0;
  overflow: hidden;
}

html body .cc-faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem 2rem;
  color: var(--cc-dark);
  font-size: 1.52rem;
  font-weight: 900;
}

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

html body .cc-faq-list summary::after {
  content: "+";
  color: var(--cc-primary);
  font-size: 2.4rem;
  line-height: 1;
}

html body .cc-faq-list details[open] summary::after {
  content: "−";
}

html body .cc-faq-list details p {
  padding: 0 2rem 1.8rem;
}

html body .cc-final-cta {
  padding: clamp(5.6rem, 7vw, 8.8rem) 0;
  background: var(--white-color, #ffffff);
}

html body .cc-final-cta-inner {
  display: grid;
  grid-template-columns: 34rem minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.8rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 4.2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--cc-border);
  background:
    radial-gradient(circle at 0% 0%, rgba(160,82,45,0.10), transparent 36%),
    linear-gradient(135deg, var(--cc-cream), var(--white-color, #ffffff));
  box-shadow: var(--cc-shadow);
}

html body .cc-final-image {
  min-height: 22rem;
  border-radius: 2rem;
  background: url('https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House_MAH-SING-GROUPS-DSARA-SENTRAL_00042-768x432.jpg') center / cover no-repeat;
  border: 1px solid rgba(222, 192, 154, 0.58);
}

html body .cc-final-cta .cc-btn {
  margin-top: 2.2rem;
}

html body .cc-floating-whatsapp {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 998;
  width: 5.8rem;
  height: 5.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white-color, #ffffff) !important;
  background: var(--c-wa, #25D366);
  box-shadow: 0 1.2rem 2.8rem rgba(37, 211, 102, 0.32);
  font-size: 2.2rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1080px) {
  html body .cc-hero-grid {
    grid-template-columns: 1fr;
  }

  html body .cc-hero-copy {
    max-width: 72rem;
  }

  html body .cc-hero-visual {
    min-height: 38rem;
  }

  html body .cc-problem-grid,
  html body .cc-price-grid,
  html body .cc-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  html body .cc-container,
  html body .cc-narrow-container {
    width: min(100% - 2.8rem, 56rem);
  }

  html body .cc-section {
    padding: 4.8rem 0;
  }

  html body .cc-hero {
    min-height: auto;
    padding: 9.6rem 0 4.4rem;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.93) 55%, rgba(255,248,241,0.90) 100%),
      url('https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House_MAH-SING-GROUPS-DSARA-SENTRAL_00041.jpg') center / cover no-repeat;
  }

  html body .cc-hero-grid {
    gap: 2.4rem;
  }

  html body .cc-hero-copy h1 {
    font-size: clamp(3.6rem, 10.2vw, 5.2rem);
    line-height: 1.02;
    margin-bottom: 1.4rem;
  }

  html body .cc-hero-copy p {
    font-size: 1.55rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
  }

  html body .cc-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  html body .cc-btn {
    width: 100%;
    min-height: 4.9rem;
    padding: 0 1.6rem;
  }

  html body .cc-hero-visual {
    min-height: 30rem;
    border-radius: 2rem;
  }

  html body .cc-min-price-card {
    right: 1.2rem;
    bottom: 1.2rem;
    width: min(20rem, calc(100% - 2.4rem));
    border-radius: 1.6rem;
  }

  html body .cc-min-price-card strong {
    font-size: 4.8rem;
  }

  html body .cc-section-heading {
    margin-bottom: 2.4rem;
  }

  html body .cc-section-heading h2,
  html body .cc-final-cta h2 {
    font-size: clamp(3rem, 8.4vw, 4.2rem);
  }

  html body .cc-section-heading p,
  html body .cc-final-cta p {
    font-size: 1.48rem;
    line-height: 1.65;
  }

  html body .cc-info-card,
  html body .cc-feature-card {
    padding: 1.6rem;
    min-height: auto;
  }

  html body .cc-info-card h3,
  html body .cc-feature-card h3,
  html body .cc-process-card h3,
  html body .cc-price-card h3 {
    font-size: 2.05rem;
  }

  html body .cc-info-card p,
  html body .cc-feature-card p,
  html body .cc-process-card p,
  html body .cc-price-card p {
    font-size: 1.28rem;
    line-height: 1.55;
  }

  html body .cc-icon,
  html body .cc-price-icon {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }

  html body .cc-price-grid,
  html body .cc-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  html body .cc-problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  html body .cc-info-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1.4rem;
    align-items: center;
  }

  html body .cc-info-card .cc-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  html body .cc-info-card h3,
  html body .cc-info-card p {
    margin: 0;
  }

  html body .cc-process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  html body .cc-process-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1.4rem;
    align-items: start;
    padding: 1.6rem;
  }

  html body .cc-process-card span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  html body .cc-before-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.2rem;
    padding: 0 0 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  html body .cc-before-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  html body .cc-before-image {
    min-height: 17rem;
  }

  html body .cc-faq-list summary {
    padding: 1.45rem 1.5rem;
    font-size: 1.42rem;
  }

  html body .cc-faq-list details p {
    padding: 0 1.5rem 1.5rem;
  }

  html body .cc-final-cta-inner {
    grid-template-columns: 1fr;
    padding: 1.6rem;
    text-align: left;
  }

  html body .cc-final-image {
    min-height: 18rem;
  }

  html body .cc-floating-whatsapp {
    width: 5.4rem;
    height: 5.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
  }
}

@media (max-width: 420px) {
  html body .cc-price-grid,
  html body .cc-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  html body .cc-price-card,
  html body .cc-feature-card {
    padding: 1.35rem 1rem;
  }

  html body .cc-price-card strong {
    font-size: 3rem;
  }

  html body .cc-before-card {
    flex-basis: 88%;
  }
}


/* Curtain Cleaning pricing clarity update */
html body .cc-price-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

html body .cc-price-card h3 {
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 1.4vw, 1.95rem);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

html body .cc-price-card strong {
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 1.05;
}

html body .cc-price-card p {
  max-width: 19rem;
  margin: 0.8rem auto 0;
}

html body .cc-price-icon {
  font-family: var(--font-body);
  font-size: 1.75rem;
}

html body .cc-floating-whatsapp {
  display: none !important;
}

@media (max-width: 767px) {
  html body .cc-price-card {
    min-height: 17rem;
  }

  html body .cc-price-card h3 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  html body .cc-price-card strong {
    font-size: 2.7rem;
  }

  html body .cc-price-card p {
    font-size: 1.18rem;
    line-height: 1.45;
  }
}

/* Curtain Cleaning price estimate redesign */
html body .cc-price-estimate-grid {
  align-items: stretch;
}

html body .cc-price-estimate-card {
  min-height: 20rem;
  padding: clamp(2rem, 2.5vw, 2.8rem) !important;
  justify-content: flex-start !important;
  gap: 1.2rem;
  background: linear-gradient(180deg, rgba(255,248,241,0.92), rgba(255,255,255,0.98)) !important;
}

html body .cc-price-estimate-card .cc-price-badge {
  width: 100%;
  min-height: 6.4rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.4rem;
  margin: 0 !important;
  border: 1px solid rgba(36, 24, 21, 0.16);
  border-radius: 1.2rem;
  background: rgba(255, 248, 241, 0.82);
  color: var(--heading-color, #241815) !important;
  font-family: var(--font-body);
  font-size: clamp(2rem, 2.4vw, 3.2rem) !important;
  line-height: 1.1 !important;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

html body .cc-price-basic-card {
  text-align: center;
}

html body .cc-price-basic-card h3 {
  max-width: none !important;
  margin: 0 !important;
  color: var(--cc-dark) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.55rem, 1.35vw, 1.85rem) !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  text-align: center;
}

html body .cc-price-basic-card p,
html body .cc-price-basic-card .cc-price-icon {
  display: none !important;
}

html body .cc-price-premium-card {
  overflow: hidden;
  padding: 0 !important;
  gap: 0 !important;
  border-radius: 2rem !important;
  background: rgba(255, 248, 241, 0.96) !important;
  border: 1px solid rgba(160, 82, 45, 0.24) !important;
  box-shadow: 0 1.6rem 3.6rem rgba(36, 18, 9, 0.12) !important;
  text-align: center;
}

html body .cc-price-premium-card span {
  display: block;
  padding: 1.15rem 1.4rem;
  color: var(--white-color, #ffffff);
  background: var(--cc-primary);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html body .cc-price-premium-card small {
  display: block;
  margin-top: 1.6rem;
  color: var(--cc-primary-dk);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html body .cc-price-premium-card strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--cc-primary);
  font-size: clamp(4.8rem, 4vw, 6.6rem);
  line-height: 0.94;
  margin: 0.35rem 0 0.85rem;
}

html body .cc-price-premium-card em {
  display: block;
  padding: 0 1.4rem 1.8rem;
  color: var(--cc-primary-dk);
  font-style: normal;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  html body .cc-price-estimate-card {
    min-height: 18rem;
  }
}

@media (max-width: 767px) {
  html body .cc-price-estimate-grid {
    grid-template-columns: 1fr !important;
  }

  html body .cc-price-estimate-card {
    min-height: auto;
    padding: 1.8rem !important;
  }

  html body .cc-price-basic-card .cc-price-badge {
    min-height: 5.6rem;
    font-size: 2.35rem !important;
  }

  html body .cc-price-basic-card h3 {
    font-size: 1.5rem !important;
  }

  html body .cc-price-premium-card {
    padding: 0 !important;
  }

  html body .cc-price-premium-card strong {
    font-size: 4.8rem !important;
  }
}


/* Curtain Cleaning Before & After single large card */
html body .cc-before-grid-single {
  grid-template-columns: minmax(0, 96rem) !important;
  justify-content: center;
}

html body .cc-before-card-large {
  width: 100%;
  max-width: 96rem;
  margin: 0 auto;
}

html body .cc-before-card-large .cc-before-image {
  min-height: clamp(32rem, 44vw, 52rem);
  background-size: cover !important;
  background-position: center !important;
}

html body .cc-before-card-large .cc-before-image span {
  top: 1.4rem;
  padding: 0.6rem 1.15rem;
  font-size: 1.2rem;
}

html body .cc-before-card-large .cc-before-image span:first-child { left: 1.4rem; }
html body .cc-before-card-large .cc-before-image span:last-child { right: 1.4rem; }

html body .cc-before-card-large .cc-before-image::after {
  width: 5rem;
  height: 5rem;
  font-size: 2.8rem;
}

html body .cc-before-card-large h3 {
  font-size: clamp(2rem, 2vw, 2.8rem) !important;
  padding: 1.8rem 2rem 2rem !important;
}

@media (max-width: 1024px) {
  html body .cc-before-grid-single {
    grid-template-columns: minmax(0, 100%) !important;
  }

  html body .cc-before-card-large .cc-before-image {
    min-height: 34rem;
  }
}

@media (max-width: 767px) {
  html body .cc-before-grid-single {
    grid-template-columns: 1fr !important;
  }

  html body .cc-before-card-large {
    max-width: 100%;
  }

  html body .cc-before-card-large .cc-before-image {
    min-height: 28rem;
  }

  html body .cc-before-card-large .cc-before-image::after {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2.5rem;
  }

  html body .cc-before-card-large h3 {
    font-size: 1.9rem !important;
    padding: 1.5rem 1.6rem 1.7rem !important;
  }
}

/* About page image fixes */
html body .about-image-card {
  background-image: url("http://localhost/mezzocurtain/wp-content/uploads/2026/05/MezzoCurtainHouse.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

html body .founder-image-card {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.41.54-PM.jpeg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 1024px) {
  html body .about-image-card,
  html body .founder-image-card {
    min-height: 42rem !important;
  }
}

@media (max-width: 767px) {
  html body .about-image-card,
  html body .founder-image-card {
    min-height: 32rem !important;
  }
}

/* Performance patch: keep curtain overlay/preloader disabled globally. */
html body .curtain, html body .curtain-left, html body .curtain-right { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }


/* Home hero image area - replaces customer video for better performance */
html body .hero-media-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(32rem, 38vw, 54rem);
  border-radius: 3.2rem;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 76%, 78% 100%, 0 100%, 0 18%);
  background:
    radial-gradient(circle at 18% 0%, rgba(201,154,94,0.16), transparent 36%),
    linear-gradient(135deg, rgba(255,248,241,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 0 0 1px rgba(201,154,94,0.16);
}

html body .hero-media-image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02);
}

html body .hero-media-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(36,18,9,0.48), transparent 58%),
    linear-gradient(135deg, rgba(36,18,9,0.10), transparent 42%);
  z-index: 1;
}

html body .hero-media-image-caption {
  position: absolute;
  left: clamp(1.8rem, 4vw, 3.2rem);
  right: clamp(1.8rem, 4vw, 3.2rem);
  bottom: clamp(1.8rem, 4vw, 3.2rem);
  z-index: 2;
  padding: 1.4rem 1.6rem;
  border-radius: 1.8rem;
  background: rgba(255,248,241,0.92);
  color: var(--text-heading-dark);
  box-shadow: 0 1.2rem 2.8rem rgba(0,0,0,0.18);
  border: 1px solid rgba(222,192,154,0.75);
  backdrop-filter: blur(0.8rem);
}

html body .hero-media-image-caption small {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--c-primary);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html body .hero-media-image-caption strong {
  display: block;
  color: var(--text-heading-dark);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.1;
  font-weight: 700;
}

html body .hero-review-video-card,
html body .hero-review-video,
html body .video-play-overlay {
  display: none !important;
}

@media (max-width: 1080px) {
  html body .hero-media-image-card {
    min-height: clamp(28rem, 52vw, 46rem);
  }
}

@media (max-width: 760px) {
  html body .hero-media-image-card {
    min-height: 34rem;
    border-radius: 2.4rem;
    clip-path: polygon(10% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 14%);
  }

  html body .hero-media-image-caption {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    padding: 1.2rem 1.3rem;
  }

  html body .hero-media-image-caption strong {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  html body .hero-media-image-card {
    min-height: 30rem;
  }
}


/* FAQ consultation CTA button scrolls to Free Consultation section */
html body #mezzo-home-consultation-cta {
  scroll-margin-top: clamp(9rem, 10vw, 12rem);
}

html body .mz-faq-whatsapp-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  margin-top: 1.8rem;
  padding: 0 2.2rem;
  border-radius: 999px;
  background: var(--c-wa, #25D366);
  color: var(--white-color, #ffffff) !important;
  font-family: var(--font-body);
  font-size: var(--fs-button);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  box-shadow: 0 1.2rem 2.6rem rgba(37, 211, 102, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

html body .mz-faq-whatsapp-scroll-btn::before {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.8rem;
  border-radius: 50%;
  border: 0.2rem solid currentColor;
  box-shadow: inset -0.35rem -0.35rem 0 -0.18rem currentColor;
  flex: 0 0 auto;
}

html body .mz-faq-whatsapp-scroll-btn:hover,
html body .mz-faq-whatsapp-scroll-btn:focus-visible {
  background: var(--c-primary, var(--primary-color, #A0522D));
  color: var(--white-color, #ffffff) !important;
  transform: translateY(-0.2rem);
  box-shadow: 0 1.6rem 3rem rgba(160, 82, 45, 0.24);
}

@media (max-width: 767px) {
  html body .mz-faq-whatsapp-scroll-btn {
    width: 100%;
    min-height: 5rem;
    margin-top: 1.6rem;
    padding: 0 1.8rem;
  }
}

/* Complete Curtain & Furnishing Solutions - media image cards */
html body .flip-card-front .flip-card-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

html body .flip-card-front::before {
  z-index: 1;
  pointer-events: none;
}

html body .flip-card-front .front-label,
html body .flip-card-front .tap-hint {
  z-index: 2;
}

html body .flip-link.mezzo-consult-scroll-link {
  background: var(--c-wa, #25D366) !important;
  color: var(--white-color, #ffffff) !important;
  text-decoration: none !important;
  box-shadow: 0 1rem 2.4rem rgba(37, 211, 102, 0.24) !important;
}

html body .flip-link.mezzo-consult-scroll-link:hover,
html body .flip-link.mezzo-consult-scroll-link:focus-visible {
  background: var(--c-primary, var(--primary-color, #A0522D)) !important;
  color: var(--white-color, #ffffff) !important;
}

html body .flip-link.mezzo-consult-scroll-link::before {
  content: "";
  width: 1.55rem;
  height: 1.55rem;
  margin-right: 0.7rem;
  border: 0.18rem solid currentColor;
  border-radius: 50%;
  box-shadow: inset -0.3rem -0.3rem 0 -0.16rem currentColor;
}

/* Fixed vertical social display: official brand colours, no looping animation */
html body .mezzo-social-float {
  position: fixed;
  right: 1.6rem;
  top: 50%;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transform: translateY(-50%);
  pointer-events: none;
}

html body .mezzo-social-float-link {
  min-width: 6.4rem;
  min-height: 4.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  color: var(--white-color, #ffffff) !important;
  font-family: var(--font-body, Raleway, sans-serif);
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.16);
  pointer-events: auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

html body .mezzo-social-float-link:hover,
html body .mezzo-social-float-link:focus-visible {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.2);
}

html body .mezzo-social-whatsapp {
  background: #25D366;
}

html body .mezzo-social-facebook {
  background: #1877F2;
}

html body .mezzo-social-instagram {
  background: linear-gradient(135deg, #F58529 0%, #FEDA77 20%, #DD2A7B 52%, #8134AF 78%, #515BD4 100%);
}

@media (max-width: 767px) {
  html body .mezzo-social-float {
    right: 1rem;
    top: auto;
    bottom: 8.8rem;
    transform: none;
    gap: 0.7rem;
  }

  html body .mezzo-social-float-link {
    min-width: 5.6rem;
    min-height: 4.4rem;
    border-radius: 1rem;
    font-size: 1.12rem;
  }

  html body .flip-card-front .front-label {
    bottom: 5.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .mezzo-social-float-link,
  html body .flip-link.mezzo-consult-scroll-link {
    transition: none !important;
  }
}


/* Complete Curtain & Furnishing Solutions - clickable cards and globally controlled flip */
html body .flip-card[data-card-url] {
  cursor: pointer;
  outline: none;
}

html body .flip-card[data-card-url]:focus-visible .flip-card-front,
html body .flip-card[data-card-url]:focus-visible .flip-card-back {
  outline: 0.3rem solid rgba(160, 82, 45, 0.38);
  outline-offset: 0.4rem;
}

html body .flip-card[data-card-url] .flip-card-inner {
  will-change: transform;
}

html body .flip-card[data-card-url] .flip-link {
  position: relative;
  z-index: 6;
}

html body .flip-card[data-card-url] .tap-hint {
  pointer-events: none !important;
}

@media (hover: hover) and (pointer: fine) {
  html body .flip-card[data-card-url]:hover .flip-card-inner,
  html body .flip-card[data-card-url]:focus-within .flip-card-inner {
    transform: rotateY(180deg);
  }
}

@media (hover: none), (pointer: coarse) {
  html body .flip-card[data-card-url]:hover .flip-card-inner,
  html body .flip-card[data-card-url]:focus-within .flip-card-inner {
    transform: none;
  }

  html body .flip-card[data-card-url] .tap-hint {
    display: inline-flex !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .flip-card[data-card-url] .flip-card-inner {
    transition: none !important;
    will-change: auto;
  }
}


/* Curtain Cleaning uploadable hero and before/after images */
html body .cc-before-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(32rem, 44vw, 52rem);
  background: rgba(255, 248, 241, 0.72);
}

html body .cc-before-compare::before {
  background: linear-gradient(90deg, rgba(36,18,9,0.22) 0 49.6%, rgba(255,255,255,0.08) 50.4% 100%);
  z-index: 2;
  pointer-events: none;
}

html body .cc-before-compare::after {
  z-index: 3;
}

html body .cc-before-panel {
  position: relative;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
}

html body .cc-before-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

html body .cc-before-panel span {
  z-index: 4;
}

html body .cc-before-panel-before span {
  left: 1.4rem !important;
  right: auto !important;
}

html body .cc-before-panel-after span {
  right: 1.4rem !important;
  left: auto !important;
}

@media (max-width: 1024px) {
  html body .cc-before-compare {
    min-height: 34rem;
  }
}

@media (max-width: 767px) {
  html body .cc-before-compare {
    min-height: 28rem;
  }
}


/* Curtain Cleaning Measurement Guide Image */
html body .cc-measure-photo-wrap {
  width: min(92rem, 100%);
  margin: clamp(3rem, 4vw, 5rem) auto 0;
  text-align: center;
}

html body .cc-measure-photo-heading {
  max-width: 64rem;
  margin: 0 auto 1.8rem;
}

html body .cc-measure-photo-heading h3 {
  margin: 0.6rem 0 0;
  color: var(--cc-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 3vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
}

html body .cc-measure-photo-card {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--cc-border);
  border-radius: 2rem;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 1.4rem 3.4rem rgba(96, 48, 20, 0.08);
}

html body .cc-measure-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 54rem;
  object-fit: contain;
  object-position: center center;
  background: var(--white-color, #ffffff);
}

@media (max-width: 767px) {
  html body .cc-measure-photo-wrap {
    width: 100%;
    margin-top: 3rem;
  }

  html body .cc-measure-photo-heading h3 {
    font-size: 2.8rem;
  }

  html body .cc-measure-photo-card {
    border-radius: 1.4rem;
  }

  html body .cc-measure-photo-card img {
    max-height: none;
  }
}

/* Final UX patch: social buttons bottom-right + primary happy video panel */
html body .mezzo-social-float {
  right: clamp(1rem, 2vw, 2rem) !important;
  top: auto !important;
  bottom: clamp(2rem, 3vw, 3.2rem) !important;
  transform: none !important;
  gap: 0.85rem !important;
}

html body .mezzo-social-float-link {
  min-width: 6.8rem !important;
  min-height: 4.8rem !important;
  padding: 0 1.2rem !important;
  border-radius: 1.1rem !important;
  font-size: 1.6rem !important;
}

html body .customer-video-panel {
  background:
    var(--c-primary-glow),
    var(--c-primary-gradient) !important;
}

html body .customer-video-panel .video-panel-title h3,
html body .customer-video-panel .video-caption {
  color: var(--white-color, #ffffff) !important;
}

html body .customer-video-panel .video-panel-title span {
  color: var(--white-color, #ffffff) !important;
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.24) !important;
}

@media (max-width: 767px) {
  html body .mezzo-social-float {
    right: 1rem !important;
    bottom: 1.4rem !important;
    gap: 0.6rem !important;
  }

  html body .mezzo-social-float-link {
    min-width: 5.4rem !important;
    min-height: 4rem !important;
    border-radius: 0.9rem !important;
    font-size: 18px !important;
    letter-spacing: 0 !important;
  }
}


/* Contact template shared consultation form */
html body .contact-cta-form-card {
  overflow: hidden;
  color: var(--c-on-primary, var(--white-color));
  background: var(--c-primary-gradient, linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark-color) 100%)) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

html body .contact-cta-form-card .section-kicker,
html body .contact-cta-form-card h2,
html body .contact-cta-form-card > p {
  color: var(--c-on-primary, var(--white-color)) !important;
}

html body .contact-cta-form-card .mezzo-home-cta-form {
  margin-top: 2.4rem;
  background: var(--c-card-glass-bg, rgba(255, 255, 255, 0.96)) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
}

html body .contact-cta-form-card .mezzo-home-field label {
  color: var(--primary-dark-color, var(--c-primary-dk)) !important;
}

@media (max-width: 1024px) {
  html body .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  html body .contact-cta-form-card {
    background: var(--c-primary-gradient-mobile, linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark-color) 100%)) !important;
  }
}


/* Home - How to Choose Curtain video section */
html body .mezzo-how-choose-section {
  background: var(--c-warm-section-bg, #fff8f1);
}

html body .mezzo-how-choose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.4rem, 4vw, 6.4rem);
  align-items: center;
}

html body .mezzo-how-choose-copy {
  max-width: 54rem;
}

html body .mezzo-how-choose-copy h2 {
  margin: 0 0 1.6rem;
  color: var(--c-heading);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 4.4vw, 6.4rem);
  line-height: 0.95;
}

html body .mezzo-how-choose-copy p {
  margin: 0 0 2.2rem;
  color: var(--c-text);
  font-size: clamp(1.55rem, 1.1vw, 1.8rem);
  line-height: 1.75;
}

html body .mezzo-how-choose-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 2.4rem;
}

html body .mezzo-how-choose-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(160, 82, 45, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--c-primary);
  font-size: 1.35rem;
  font-weight: 900;
}

html body .mezzo-how-choose-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(160, 82, 45, 0.18);
  background: #ffffff;
  box-shadow: 0 2rem 5rem rgba(36, 18, 9, 0.10);
}

html body .mezzo-how-choose-video,
html body .mezzo-how-choose-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 32rem;
  background: #ffffff;
}

html body .mezzo-how-choose-video {
  object-fit: cover;
}

html body .mezzo-how-choose-placeholder {
  position: relative;
  overflow: hidden;
}

html body .mezzo-how-choose-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

html body .mezzo-how-choose-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,18,9,0.04), rgba(36,18,9,0.30));
  pointer-events: none;
}

html body .mezzo-how-choose-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 0 2rem;
  border-radius: 999px;
  background: var(--c-primary);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 1.2rem 2.6rem rgba(36, 18, 9, 0.18);
}

@media (max-width: 980px) {
  html body .mezzo-how-choose-grid {
    grid-template-columns: 1fr;
  }

  html body .mezzo-how-choose-copy {
    max-width: 68rem;
  }
}

@media (max-width: 767px) {
  html body .mezzo-how-choose-copy h2 {
    font-size: clamp(3.4rem, 10vw, 4.8rem);
  }

  html body .mezzo-how-choose-copy p {
    font-size: 1.48rem;
  }

  html body .mezzo-how-choose-video,
  html body .mezzo-how-choose-placeholder {
    min-height: 22rem;
  }

  html body .mezzo-how-choose-points span {
    min-height: 3.4rem;
    font-size: 1.25rem;
  }
}

/* Home - How to Choose Curtain vertical video cover fix */
html body .mezzo-how-choose-section {
  overflow: visible;
}

html body .mezzo-how-choose-grid {
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 42rem);
  align-items: center;
}

html body .mezzo-how-choose-media {
  width: min(100%, 42rem);
  margin-left: auto;
  aspect-ratio: 9 / 16;
  min-height: 54rem;
  transform: translateY(-2.4rem);
}

html body .mezzo-how-choose-video,
html body .mezzo-how-choose-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 980px) {
  html body .mezzo-how-choose-grid {
    grid-template-columns: 1fr;
  }

  html body .mezzo-how-choose-media {
    width: min(100%, 42rem);
    min-height: 52rem;
    margin: 2rem auto 0;
    transform: none;
  }
}

@media (max-width: 767px) {
  html body .mezzo-how-choose-media {
    width: min(100%, 36rem);
    min-height: 48rem;
  }
}

@media (max-width: 420px) {
  html body .mezzo-how-choose-media {
    width: 100%;
    min-height: 44rem;
  }
}

/* Home - Latest Curtain and Design Idea sections */
html body .mezzo-latest-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 2vw, 2.4rem);
}

html body .mezzo-latest-product-card,
html body .mezzo-idea-card,
html body .mezzo-empty-card {
  background: #ffffff;
  border: 1px solid rgba(160, 82, 45, 0.16);
  border-radius: var(--r-card, 2rem);
  overflow: hidden;
  box-shadow: 0 1.2rem 3rem rgba(36, 18, 9, 0.07);
}

html body .mezzo-latest-product-media,
html body .mezzo-idea-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--c-cream, #FFF8F1);
  color: var(--c-primary, #A0522D);
  font-weight: 900;
  text-decoration: none;
}

html body .mezzo-latest-product-media img,
html body .mezzo-idea-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

html body .mezzo-latest-product-body,
html body .mezzo-idea-body {
  display: grid;
  gap: 0.7rem;
  padding: 1.6rem;
}

html body .mezzo-latest-product-body h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 1.4vw, 2rem);
  line-height: 1.25;
  font-weight: 900;
}

html body .mezzo-latest-product-body h3 a,
html body .mezzo-idea-card-link {
  color: var(--c-heading, #241815);
  text-decoration: none;
}

html body .mezzo-latest-product-body h3 a:hover,
html body .mezzo-latest-product-body h3 a:focus-visible,
html body .mezzo-idea-card-link:hover strong,
html body .mezzo-idea-card-link:focus-visible strong {
  color: var(--c-primary, #A0522D);
}

html body .mezzo-latest-product-price {
  color: var(--c-primary, #A0522D);
  font-size: 1.45rem;
  font-weight: 900;
}

html body .mezzo-idea-slider-wrap {
  position: relative;
}

html body .mezzo-idea-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 7.2rem) / 4);
  gap: 2.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0.2rem 1.6rem;
  scrollbar-width: thin;
}

html body .mezzo-idea-card {
  scroll-snap-align: start;
}

html body .mezzo-idea-card-link {
  display: block;
  height: 100%;
}

html body .mezzo-idea-body small {
  color: var(--c-primary, #A0522D);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html body .mezzo-idea-body strong {
  color: var(--c-heading, #241815);
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 1.35;
  font-weight: 900;
}

html body .mezzo-slider-btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 4.6rem;
  height: 4.6rem;
  border: 1px solid rgba(160, 82, 45, 0.24);
  border-radius: 50%;
  background: #ffffff;
  color: var(--c-primary, #A0522D);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 1rem 2.4rem rgba(36, 18, 9, 0.14);
  cursor: pointer;
}

html body .mezzo-slider-prev { left: -2.2rem; }
html body .mezzo-slider-next { right: -2.2rem; }

html body .mezzo-slider-btn:hover,
html body .mezzo-slider-btn:focus-visible {
  background: var(--c-primary, #A0522D);
  color: #ffffff;
}

html body .mezzo-empty-card {
  padding: 3rem;
  text-align: center;
}

html body .mezzo-empty-card p {
  margin: 0;
  color: var(--c-text, #5C524E);
  font-weight: 800;
}

html body .mezzo-design-idea-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.4rem, 3vw, 4rem);
}

html body .mezzo-design-idea-more .btn {
  min-width: min(100%, 24rem);
}

@media (max-width: 767px) {
  html body .mezzo-design-idea-more {
    margin-top: 2.4rem;
  }

  html body .mezzo-design-idea-more .btn {
    width: 100%;
    max-width: 32rem;
  }
}

@media (max-width: 1024px) {
  html body .mezzo-latest-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html body .mezzo-idea-slider {
    grid-auto-columns: calc((100% - 2.4rem) / 2);
  }
}

@media (max-width: 767px) {
  html body .mezzo-how-choose-media {
    aspect-ratio: 4 / 5;
  }

  html body .mezzo-latest-product-grid {
    grid-template-columns: 1fr;
  }

  html body .mezzo-idea-slider {
    grid-auto-columns: 82%;
    gap: 1.4rem;
    padding-inline: 0.2rem;
  }

  html body .mezzo-slider-btn {
    width: 4rem;
    height: 4rem;
    font-size: 2.5rem;
  }

  html body .mezzo-slider-prev { left: 0.8rem; }
  html body .mezzo-slider-next { right: 0.8rem; }
}

/* Home - How to Choose Curtain row alignment fix */
html body .mezzo-how-choose-section .container {
  width: min(118rem, calc(100% - 4rem));
}

html body .mezzo-how-choose-grid {
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 38rem) !important;
  gap: clamp(2.4rem, 4vw, 5.6rem) !important;
  align-items: center !important;
  justify-content: center !important;
}

html body .mezzo-how-choose-copy {
  max-width: 56rem !important;
  justify-self: start !important;
  text-align: left !important;
}

html body .mezzo-how-choose-media {
  width: min(100%, 38rem) !important;
  min-height: auto !important;
  aspect-ratio: 9 / 16 !important;
  margin: 0 auto !important;
  transform: none !important;
  justify-self: center !important;
}

html body .mezzo-how-choose-video,
html body .mezzo-how-choose-placeholder {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 9 / 16 !important;
  min-height: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 980px) {
  html body .mezzo-how-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 3.2rem !important;
  }

  html body .mezzo-how-choose-copy {
    max-width: 68rem !important;
  }

  html body .mezzo-how-choose-media {
    width: min(100%, 38rem) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 767px) {
  html body .mezzo-how-choose-section .container {
    width: min(100% - 2.8rem, 56rem);
  }

  html body .mezzo-how-choose-media {
    width: min(100%, 34rem) !important;
  }
}

@media (max-width: 420px) {
  html body .mezzo-how-choose-media {
    width: 100% !important;
  }
}


/* Home - How to Choose Curtain final compact desktop redraw */
html body .mezzo-how-choose-section {
  overflow: hidden !important;
}

html body .mezzo-how-choose-section .container {
  width: min(100% - 4rem, 110rem) !important;
  max-width: 110rem !important;
}

html body .mezzo-how-choose-grid {
  width: 100% !important;
  max-width: 98rem !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 50rem) minmax(28rem, 36rem) !important;
  gap: clamp(3rem, 4vw, 5.6rem) !important;
  align-items: center !important;
  justify-content: center !important;
}

html body .mezzo-how-choose-copy {
  width: 100% !important;
  max-width: 50rem !important;
  justify-self: start !important;
  text-align: left !important;
}

html body .mezzo-how-choose-media {
  position: relative !important;
  width: min(100%, 36rem) !important;
  max-width: 36rem !important;
  aspect-ratio: 9 / 16 !important;
  min-height: auto !important;
  margin: 0 auto !important;
  transform: none !important;
  justify-self: center !important;
  border-radius: 2.4rem !important;
  overflow: hidden !important;
}

html body .mezzo-how-choose-video,
html body .mezzo-how-choose-placeholder {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 9 / 16 !important;
  min-height: auto !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #ffffff !important;
}

html body .mezzo-how-choose-video-label {
  position: absolute !important;
  top: 1.4rem !important;
  left: 1.4rem !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 3.4rem !important;
  padding: 0 1.4rem !important;
  border-radius: 999px !important;
  background: var(--c-primary) !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 1rem 2.4rem rgba(36, 18, 9, 0.18) !important;
  pointer-events: none !important;
}

@media (max-width: 980px) {
  html body .mezzo-how-choose-section .container {
    width: min(100% - 3.2rem, 72rem) !important;
  }

  html body .mezzo-how-choose-grid {
    max-width: 72rem !important;
    grid-template-columns: 1fr !important;
    gap: 3.2rem !important;
  }

  html body .mezzo-how-choose-copy {
    max-width: 68rem !important;
  }

  html body .mezzo-how-choose-media {
    width: min(100%, 36rem) !important;
    max-width: 36rem !important;
  }
}

@media (max-width: 767px) {
  html body .mezzo-how-choose-section .container {
    width: min(100% - 2.8rem, 56rem) !important;
  }

  html body .mezzo-how-choose-copy h2 {
    max-width: 36rem !important;
  }

  html body .mezzo-how-choose-media {
    width: min(100%, 32rem) !important;
    max-width: 32rem !important;
  }

  html body .mezzo-how-choose-video-label {
    top: 1.2rem !important;
    left: 1.2rem !important;
    min-height: 3.2rem !important;
    padding: 0 1.2rem !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 420px) {
  html body .mezzo-how-choose-media {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* Home - How to Choose Curtain centered play label */
html body .mezzo-how-choose-video-label.mezzo-how-choose-video-play-label {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  z-index: 5 !important;
  transform: translate(-50%, -50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  min-height: 5.6rem !important;
  min-width: 15rem !important;
  padding: 0 1.8rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--c-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  box-shadow: 0 1.4rem 3.2rem rgba(36, 18, 9, 0.22) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease !important;
}

html body .mezzo-how-choose-video-label.mezzo-how-choose-video-play-label:hover,
html body .mezzo-how-choose-video-label.mezzo-how-choose-video-play-label:focus-visible {
  background: var(--c-primary) !important;
  color: #ffffff !important;
  transform: translate(-50%, -50%) scale(1.03) !important;
}

html body .mezzo-how-choose-video-play-label.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body .mezzo-how-choose-play-icon {
  width: 3.4rem !important;
  height: 3.4rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 3.4rem !important;
  border-radius: 50% !important;
  background: var(--c-primary) !important;
  color: #ffffff !important;
}

html body .mezzo-how-choose-video-play-label:hover .mezzo-how-choose-play-icon,
html body .mezzo-how-choose-video-play-label:focus-visible .mezzo-how-choose-play-icon {
  background: #ffffff !important;
  color: var(--c-primary) !important;
}

html body .mezzo-how-choose-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.24rem;
  border-top: 0.62rem solid transparent;
  border-bottom: 0.62rem solid transparent;
  border-left: 0.9rem solid currentColor;
}

@media (max-width: 767px) {
  html body .mezzo-how-choose-video-label.mezzo-how-choose-video-play-label {
    min-height: 5rem !important;
    min-width: 13.4rem !important;
    padding: 0 1.4rem !important;
    font-size: 1.2rem !important;
  }

  html body .mezzo-how-choose-play-icon {
    width: 3rem !important;
    height: 3rem !important;
    flex-basis: 3rem !important;
  }
}

/* Home product/post card read more label */
html body .mezzo-latest-product-body,
html body .mezzo-idea-body {
  align-content: start;
}

html body .mezzo-card-read-more {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: auto;
  padding-top: 0.4rem;
  color: var(--c-primary, #A0522D) !important;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
}

html body .mezzo-card-read-more::after {
  content: "›";
  margin-left: 0.45rem;
  font-size: 1.6rem;
  line-height: 0;
  transform: translateY(-0.05rem);
}

html body .mezzo-card-read-more:hover,
html body .mezzo-card-read-more:focus-visible {
  color: var(--c-heading, #241815) !important;
}


/* Home design idea card metadata and fixed media crop */
html body .mezzo-idea-body .mezzo-blog-card-meta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  color: var(--c-primary, #A0522D) !important;
}

html body .mezzo-idea-body .mezzo-blog-card-meta span + span::before {
  content: "By ";
}

html body .mezzo-idea-media,
html body .mezzo-latest-product-media {
  overflow: hidden;
}

html body .mezzo-idea-media img,
html body .mezzo-latest-product-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Mezzo Facebook-style video cards for blog and design ideas */
html body .mezzo-fb-video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(160, 82, 45, 0.16);
  border-radius: var(--r-card, 2rem);
  box-shadow: 0 1.2rem 3rem rgba(36, 18, 9, 0.07);
  cursor: pointer;
}

html body .mezzo-fb-card-head {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 1.4rem 0.7rem;
}

html body .mezzo-fb-card-head img {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(160, 82, 45, 0.18);
  background: #ffffff;
}

html body .mezzo-fb-card-head strong {
  display: block;
  color: var(--c-heading, #241815);
  font-family: var(--font-body);
  font-size: 1.42rem;
  line-height: 1.25;
  font-weight: 900;
}

html body .mezzo-fb-card-head small {
  display: block;
  margin-top: 0.2rem;
  color: var(--c-text, #5C524E);
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 700;
}

html body .mezzo-fb-card-copy-wrap {
  padding: 0.4rem 1.4rem 1.1rem;
}

html body .mezzo-fb-card-copy-wrap h2,
html body .mezzo-fb-card-title {
  display: block;
  margin: 0 0 0.55rem;
  color: var(--c-heading, #241815);
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 900;
}

html body .mezzo-fb-card-copy-wrap h2 a {
  color: inherit;
  text-decoration: none;
}

html body .mezzo-fb-card-copy {
  --mezzo-fb-copy-max: 4.75em;
  display: block;
  max-height: var(--mezzo-fb-copy-max);
  overflow: hidden;
  margin: 0;
  color: var(--c-text, #5C524E);
  font-size: 1.35rem;
  line-height: 1.58;
  transition: max-height 0.22s ease;
}

html body .mezzo-fb-video-card.is-expanded .mezzo-fb-card-copy {
  max-height: 40rem;
}

html body .mezzo-fb-see-more {
  display: inline-flex;
  align-items: center;
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--c-primary, #A0522D);
  font-family: var(--font-body);
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 900;
  cursor: pointer;
}

html body .mezzo-fb-see-more:hover,
html body .mezzo-fb-see-more:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

html body .mezzo-fb-video-media,
html body .mezzo-single-post-featured.mezzo-fb-single-video {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

html body .mezzo-fb-video-media {
  width: 100%;
  height: clamp(24rem, 18vw, 32rem) !important;
  aspect-ratio: auto !important;
  border-radius: 0;
}

html body .mezzo-fb-video-media img,
html body .mezzo-single-post-featured.mezzo-fb-single-video img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  opacity: 0.94;
}

html body .mezzo-fb-video-media::after,
html body .mezzo-single-post-featured.mezzo-fb-single-video::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.56));
  pointer-events: none;
}

html body .mezzo-fb-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 6.4rem;
  height: 6.4rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 0.3rem solid rgba(255,255,255,0.82);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  text-indent: 0.25rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,0.24);
  backdrop-filter: blur(0.4rem);
}

html body .mezzo-fb-video-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, var(--c-primary, #A0522D), var(--c-primary-dark, #6F341B));
  color: #ffffff;
  font-weight: 900;
}

html body .mezzo-fb-card-footer {
  margin-top: auto;
  padding: 1.2rem 1.4rem 1.4rem !important;
}

html body .mezzo-fb-card-footer .mezzo-card-read-more {
  margin-top: 0;
}

html body .mezzo-single-post-featured.mezzo-fb-single-video {
  min-height: clamp(32rem, 42vw, 52rem);
  border-radius: var(--r-card, 2rem);
  margin-bottom: 2.4rem;
}

@media (max-width: 1024px) {
  html body .mezzo-fb-video-media {
    height: 28rem !important;
  }
}

@media (max-width: 640px) {
  html body .mezzo-fb-card-head {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    padding: 1.2rem 1.2rem 0.7rem;
  }

  html body .mezzo-fb-card-head img {
    width: 3.8rem;
    height: 3.8rem;
  }

  html body .mezzo-fb-card-copy-wrap,
  html body .mezzo-fb-card-footer {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  html body .mezzo-fb-video-media {
    height: 30rem !important;
  }

  html body .mezzo-fb-play {
    width: 5.4rem;
    height: 5.4rem;
    font-size: 2rem;
  }

  html body .mezzo-single-post-featured.mezzo-fb-single-video {
    min-height: 30rem;
  }
}


/* Brand icon update for fixed social buttons */
html body .mezzo-social-float-link {
  gap: 0.55rem !important;
}

html body .mezzo-social-icon {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  display: block;
  color: currentColor;
}

html body .mezzo-social-float-link span {
  display: inline-block;
}

@media (max-width: 767px) {
  html body .mezzo-social-icon {
    width: 18px;
    height: 18px;
  }

  html body .mezzo-social-float-link span {
    font-size: 18px !important;
  }
}


/* Social floating buttons - icon only */
html body .mezzo-social-float-link {
  width: 5.6rem !important;
  height: 5.6rem !important;
  min-width: 5.6rem !important;
  min-height: 5.6rem !important;
  padding: 0 !important;
  border-radius: 1.4rem !important;
  justify-content: center !important;
  gap: 0 !important;
}

html body .mezzo-social-float-link span {
  display: none !important;
}

html body .mezzo-social-icon {
  width: 2.6rem !important;
  height: 2.6rem !important;
  flex: 0 0 2.6rem !important;
}

@media (max-width: 767px) {
  html body .mezzo-social-float-link {
    width: 4.8rem !important;
    height: 4.8rem !important;
    min-width: 4.8rem !important;
    min-height: 4.8rem !important;
    border-radius: 1.2rem !important;
  }

  html body .mezzo-social-icon {
    width: 1.8rem !important;
    height: 1.8rem !important;
    flex-basis: 1.8rem !important;
  }
}

/* Product enquiry display: hide product price where product cards are reused outside WooCommerce shop stylesheet. */
html body .mezzo-latest-product-price {
  display: none !important;
}

/* WooCommerce reusable product card buttons fallback */
html body .mezzo-product-card-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

html body .mezzo-product-readmore-btn,
html body .mezzo-product-whatsapp-btn {
  width: 100%;
  min-height: 4.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.2rem;
  font-family: var(--font-body, Raleway, sans-serif);
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
}


html body .mezzo-product-whatsapp-btn .mezzo-wa-icon {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  display: inline-block;
}

html body .mezzo-product-whatsapp-btn .mezzo-wa-label {
  display: inline-block;
}

html body .mezzo-product-readmore-btn {
  border: 1px solid var(--c-primary, #A0522D);
  background: #ffffff;
  color: var(--c-primary, #A0522D) !important;
}

html body .mezzo-product-readmore-btn:hover,
html body .mezzo-product-readmore-btn:focus-visible {
  background: var(--c-primary, #A0522D);
  color: #ffffff !important;
}

@media (max-width: 380px) {
  html body .mezzo-product-card-buttons {
    grid-template-columns: 1fr;
  }
}


/* Footer legal links menu - controlled from WordPress menu location */
html body .footer-legal-links,
html body .footer-legal-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

html body .footer-legal-links li,
html body .footer-legal-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

html body .footer-legal-links a,
html body .footer-legal-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 3.6rem;
  color: var(--c-gold, #C9A24D);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

html body .footer-legal-links a:hover,
html body .footer-legal-links a:focus-visible,
html body .footer-legal-menu a:hover,
html body .footer-legal-menu a:focus-visible {
  color: var(--white-color, #ffffff);
}

@media (max-width: 767px) {
  html body .footer-bottom {
    gap: 1.4rem;
  }

  html body .footer-legal-links,
  html body .footer-legal-menu {
    width: 100%;
    justify-content: flex-start;
    gap: 0.8rem 1.2rem;
  }

  html body .footer-legal-links a,
  html body .footer-legal-menu a {
    min-height: 3.2rem;
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  html body .footer-legal-links,
  html body .footer-legal-menu {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Our Happy Customers uploadable video play overlay */
html body .mezzo-happy-video-card {
  position: relative;
}

html body .mezzo-happy-video-media {
  position: relative;
  overflow: hidden;
  background: rgba(36, 24, 21, 0.18);
}

html body .mezzo-happy-video-card video,
html body .mezzo-happy-customer-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center center;
  background: #160904;
}

html body .mezzo-happy-video-play-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5.2rem;
  padding: 0 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary, #A0522D);
  font-family: var(--font-body, Raleway, sans-serif);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.22);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

html body .mezzo-happy-video-play-label:hover,
html body .mezzo-happy-video-play-label:focus-visible {
  background: var(--c-primary, #A0522D);
  color: #ffffff;
  border-color: var(--c-primary, #A0522D);
  transform: translate(-50%, -50%) scale(1.04);
  outline: none;
}

html body .mezzo-happy-video-play-label:hover .mezzo-happy-play-icon,
html body .mezzo-happy-video-play-label:focus-visible .mezzo-happy-play-icon {
  background: #ffffff;
}

html body .mezzo-happy-video-play-label:hover .mezzo-happy-play-icon::before,
html body .mezzo-happy-video-play-label:focus-visible .mezzo-happy-play-icon::before {
  border-left-color: var(--c-primary, #A0522D);
}

html body .mezzo-happy-video-play-label.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html body .mezzo-happy-play-icon {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 3.2rem;
  border-radius: 50%;
  background: var(--c-primary, #A0522D);
}

html body .mezzo-happy-play-icon::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.9rem;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1rem solid #ffffff;
}

@media (max-width: 767px) {
  html body .mezzo-happy-video-play-label {
    min-height: 4.8rem;
    padding: 0 1.4rem;
    font-size: 1.25rem;
  }

  html body .mezzo-happy-play-icon {
    width: 2.9rem;
    height: 2.9rem;
    flex-basis: 2.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .mezzo-happy-video-play-label {
    transition: none;
  }
}

/* Home section subheading standard style - line + uppercase tracking */
html body.home .section-heading > span,
html body.page-template-template-home .section-heading > span,
html body.home .mezzo-how-choose-copy > .section-kicker,
html body.page-template-template-home .mezzo-how-choose-copy > .section-kicker,
html body.home .mezzo-home-cta-copy > .section-kicker,
html body.page-template-template-home .mezzo-home-cta-copy > .section-kicker {
  --mz-home-kicker-line-width: 5.2rem;
  --mz-home-kicker-line-height: 0.1rem;
  --mz-home-kicker-gap: 1.4rem;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--mz-home-kicker-gap) !important;
  width: auto !important;
  color: var(--c-primary) !important;
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: var(--fs-eyebrow, 1.2rem) !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.36em !important;
  text-transform: uppercase !important;
  margin: 0 0 1.4rem !important;
}

html body.home .section-heading > span::before,
html body.page-template-template-home .section-heading > span::before,
html body.home .mezzo-how-choose-copy > .section-kicker::before,
html body.page-template-template-home .mezzo-how-choose-copy > .section-kicker::before,
html body.home .mezzo-home-cta-copy > .section-kicker::before,
html body.page-template-template-home .mezzo-home-cta-copy > .section-kicker::before {
  content: "";
  flex: 0 0 var(--mz-home-kicker-line-width);
  width: var(--mz-home-kicker-line-width);
  height: var(--mz-home-kicker-line-height);
  background: currentColor;
  opacity: 0.82;
}

html body.home .section-heading,
html body.page-template-template-home .section-heading {
  text-align: center !important;
}

html body.home .mezzo-how-choose-copy,
html body.page-template-template-home .mezzo-how-choose-copy,
html body.home .mezzo-home-cta-copy,
html body.page-template-template-home .mezzo-home-cta-copy {
  text-align: left !important;
}

html body.home .mezzo-how-choose-copy > .section-kicker,
html body.page-template-template-home .mezzo-how-choose-copy > .section-kicker,
html body.home .mezzo-home-cta-copy > .section-kicker,
html body.page-template-template-home .mezzo-home-cta-copy > .section-kicker {
  justify-content: flex-start !important;
}

@media (max-width: 767px) {
  html body.home .section-heading > span,
  html body.page-template-template-home .section-heading > span,
  html body.home .mezzo-how-choose-copy > .section-kicker,
  html body.page-template-template-home .mezzo-how-choose-copy > .section-kicker,
  html body.home .mezzo-home-cta-copy > .section-kicker,
  html body.page-template-template-home .mezzo-home-cta-copy > .section-kicker {
    --mz-home-kicker-line-width: 3.2rem;
    --mz-home-kicker-gap: 1rem;
    font-size: 1.05rem !important;
    letter-spacing: 0.28em !important;
    max-width: 100% !important;
  }
}

/* Header active menu underline - global control */
:root {
  --header-active-underline-color: var(--c-primary, #A0522D);
  --header-active-underline-height: 0.2rem;
  --header-active-underline-offset: 0.35rem;
}

html body .site-header .nav > ul > li > a {
  position: relative;
}

html body .site-header .nav > ul > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: calc(-1 * var(--header-active-underline-offset));
  width: 0;
  height: var(--header-active-underline-height);
  background: var(--header-active-underline-color);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

html body .site-header .nav > ul > li.current-menu-item > a,
html body .site-header .nav > ul > li.current_page_item > a,
html body .site-header .nav > ul > li.current-menu-parent > a,
html body .site-header .nav > ul > li.current-menu-ancestor > a,
html body .site-header .nav > ul > li.current_page_parent > a,
html body .site-header .nav > ul > li.current_page_ancestor > a {
  color: var(--header-active-underline-color) !important;
  background: transparent !important;
}

html body .site-header .nav > ul > li.current-menu-item > a::before,
html body .site-header .nav > ul > li.current_page_item > a::before,
html body .site-header .nav > ul > li.current-menu-parent > a::before,
html body .site-header .nav > ul > li.current-menu-ancestor > a::before,
html body .site-header .nav > ul > li.current_page_parent > a::before,
html body .site-header .nav > ul > li.current_page_ancestor > a::before {
  width: 100%;
}

html body .site-header .nav .sub-menu li.current-menu-item > a,
html body .site-header .nav .sub-menu li.current_page_item > a,
html body .site-header .nav .sub-menu li.current-menu-parent > a,
html body .site-header .nav .sub-menu li.current-menu-ancestor > a,
html body .site-header .nav .sub-menu li.current_page_parent > a,
html body .site-header .nav .sub-menu li.current_page_ancestor > a {
  color: var(--white-color, #ffffff) !important;
  background: var(--c-primary, #A0522D) !important;
}

html body .mobile-panel .menu li.current-menu-item > a,
html body .mobile-panel .menu li.current_page_item > a,
html body .mobile-panel .menu li.current-menu-parent > a,
html body .mobile-panel .menu li.current-menu-ancestor > a,
html body .mobile-panel .menu li.current_page_parent > a,
html body .mobile-panel .menu li.current_page_ancestor > a {
  color: var(--c-primary, #A0522D) !important;
  background: transparent !important;
  text-decoration: underline;
  text-decoration-thickness: var(--header-active-underline-height);
  text-underline-offset: 0.45rem;
}

/* Manual Chinese templates language fallback */
html body.mezzo-zh-template,
html body.mezzo-zh-template input,
html body.mezzo-zh-template select,
html body.mezzo-zh-template textarea,
html body.mezzo-zh-template button {
  font-family: var(--font-body), "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
}
html body.mezzo-zh-template h1,
html body.mezzo-zh-template h2,
html body.mezzo-zh-template h3,
html body.mezzo-zh-template .hero-title,
html body.mezzo-zh-template .section-title {
  font-family: var(--font-heading), "Noto Serif SC", "Microsoft YaHei", serif;
}


/* Chinese home mobile readability and protected image fallback */
html body.mezzo-zh-template .hero-benefits li span:not(.benefit-icon) {
  font-size: clamp(1.55rem, 3.8vw, 1.9rem) !important;
  line-height: 1.45 !important;
}

html body.mezzo-zh-template .section-heading span,
html body.mezzo-zh-template .section-kicker,
html body.mezzo-zh-template .eyebrow {
  font-size: clamp(1.2rem, 2.8vw, 1.45rem) !important;
  line-height: 1.35 !important;
}

html body.mezzo-zh-template .flip-card-cover {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

@media (max-width: 767px) {
  html body.mezzo-zh-template .hero-benefits {
    gap: 1rem !important;
  }

  html body.mezzo-zh-template .hero-benefits li {
    align-items: flex-start !important;
  }

  html body.mezzo-zh-template .hero-copy p,
  html body.mezzo-zh-template .section-heading p {
    font-size: 1.55rem !important;
    line-height: 1.7 !important;
  }
}

/* Chinese Home hero benefit mobile spacing fix */
@media (max-width: 767px) {
  html body.mezzo-zh-template .hero .hero-benefits-wrap,
  html body.mezzo-zh-template .template-home .hero-benefits-wrap,
  html body.mezzo-zh-template .hero-benefits-wrap {
    margin-top: 1.4rem !important;
    margin-bottom: 1.2rem !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  html body.mezzo-zh-template .hero .hero-benefits,
  html body.mezzo-zh-template .template-home .hero-benefits,
  html body.mezzo-zh-template .hero-benefits {
    gap: 0.55rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body.mezzo-zh-template .hero .hero-benefits li,
  html body.mezzo-zh-template .template-home .hero-benefits li,
  html body.mezzo-zh-template .hero-benefits li {
    gap: 0.65rem !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25 !important;
    align-items: flex-start !important;
  }

  html body.mezzo-zh-template .hero-benefits .benefit-icon {
    flex: 0 0 2rem !important;
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem !important;
    margin-top: 0.1rem !important;
    font-size: 1.05rem !important;
  }

  html body.mezzo-zh-template .hero-benefits li span:not(.benefit-icon) {
    font-size: clamp(1.42rem, 3.55vw, 1.62rem) !important;
    line-height: 1.28 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 420px) {
  html body.mezzo-zh-template .hero .hero-benefits-wrap,
  html body.mezzo-zh-template .template-home .hero-benefits-wrap,
  html body.mezzo-zh-template .hero-benefits-wrap {
    margin-top: 1rem !important;
    margin-bottom: 0.8rem !important;
  }

  html body.mezzo-zh-template .hero .hero-benefits,
  html body.mezzo-zh-template .template-home .hero-benefits,
  html body.mezzo-zh-template .hero-benefits {
    gap: 0.42rem !important;
  }

  html body.mezzo-zh-template .hero-benefits li span:not(.benefit-icon) {
    font-size: 1.36rem !important;
    line-height: 1.22 !important;
  }
}


/* Chinese template H1 readability */
html body.mezzo-zh-template h1,
html body .mezzo-zh-template h1 {
  line-height: 1.5 !important;
}

@media (max-width: 767px) {
  html body.mezzo-zh-template h1,
  html body .mezzo-zh-template h1 {
    line-height: 1.5 !important;
  }
}

/* Why Mezzo showcase redesign - shared English / Chinese home templates */
html body .why-mezzo-showcase-section {
  overflow: hidden;
}

html body .why-mezzo-showcase-heading {
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

html body .why-mezzo-showcase-heading p {
  max-width: 86rem;
  margin-left: auto;
  margin-right: auto;
}

html body .why-showcase-grid {
  align-items: stretch;
  gap: clamp(1.8rem, 2.4vw, 3.2rem);
  perspective: 120rem;
}

html body .why-showcase-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: 0 !important;
  border-radius: 2.4rem;
  background: #fffaf4 !important;
  border: 1px solid rgba(160, 82, 45, 0.24) !important;
  transform-origin: center center;
  will-change: transform;
}

html body .why-showcase-card-one {
  transform: rotate(-1.15deg) translateY(1rem);
}

html body .why-showcase-card-two {
  transform: rotate(0.75deg) translateY(-0.4rem);
}

html body .why-showcase-card-featured {
  transform: rotate(-0.45deg) translateY(-1.4rem);
  border-color: rgba(160, 82, 45, 0.62) !important;
  box-shadow: 0 2.6rem 5.6rem rgba(96, 48, 20, 0.16) !important;
}

html body .why-showcase-card-four {
  transform: rotate(1.1deg) translateY(0.8rem);
}

html body .why-showcase-card:hover,
html body .why-showcase-card:focus-within {
  transform: translateY(-0.8rem) rotate(0deg);
}

html body .why-showcase-card::before {
  display: none !important;
}

html body .why-showcase-media {
  position: relative;
  min-height: clamp(20rem, 18vw, 25rem);
  border-radius: 2.4rem 2.4rem 0 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

html body .why-showcase-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


html body .why-showcase-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 18, 9, 0.06), rgba(36, 18, 9, 0.48));
}

html body .why-showcase-media-one {
  background-image: url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=900&q=80");
}

html body .why-showcase-media-two {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/Mezzo-Curtain-House_Mah-Sing-Show-Unit@Nouvelle-Hotel-Sg-Besi_00022-e1641952186584.jpg");
}

html body .why-showcase-media-three {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/11/MAH-SING-GROUPS_Southville-City04-300x200.jpg");
}

html body .why-showcase-media-four {
  background-image: url("https://mezzocurtain.com/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.41.54-PM.jpeg");
}

html body .why-showcase-media .why-number {
  position: absolute;
  z-index: 2;
  left: 1.8rem;
  top: 1.8rem;
  margin: 0;
}

html body .why-showcase-icon {
  position: absolute;
  z-index: 2;
  left: 2rem;
  bottom: 2rem;
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  color: #ffffff;
  background: var(--c-primary, #a0522d);
  border: 0.2rem solid rgba(255, 255, 255, 0.88);
  font-size: 2.1rem;
  font-weight: 900;
  box-shadow: 0 1rem 2.4rem rgba(36, 18, 9, 0.24);
}

html body .why-showcase-media strong,
html body .why-showcase-media > span:not(.why-number) {
  position: relative;
  z-index: 2;
  display: block;
  color: #ffffff;
  text-shadow: 0 0.5rem 1.6rem rgba(0, 0, 0, 0.22);
}

html body .why-showcase-media strong {
  padding: clamp(8rem, 10vw, 12rem) 2rem 0;
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 4vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

html body .why-showcase-media > span:not(.why-number) {
  padding: 0.6rem 2rem 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 1.6vw, 2.4rem);
  line-height: 1.2;
  font-weight: 900;
}

html body .why-showcase-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: clamp(2rem, 2.5vw, 2.8rem);
}

html body .why-showcase-body h3 {
  margin: 0 !important;
  color: var(--c-dark, #241815) !important;
  font-size: clamp(2rem, 1.75vw, 2.7rem) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
}

html body .why-showcase-body p {
  margin: 0 !important;
  color: #4d403a !important;
  font-size: clamp(1.42rem, 1.05vw, 1.6rem) !important;
  line-height: 1.65 !important;
  font-weight: 600 !important;
}

html body .why-showcase-list {
  display: grid;
  gap: 0.85rem;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

html body .why-showcase-list li {
  position: relative;
  padding-left: 2.3rem;
  color: #4d403a;
  font-size: 1.42rem;
  line-height: 1.55;
  font-weight: 700;
}

html body .why-showcase-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  color: #ffffff;
  background: var(--c-primary, #a0522d);
  font-size: 1rem;
  font-weight: 900;
}

html body .why-showcase-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  min-height: 4.8rem;
  margin-top: auto;
  padding: 0 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(160, 82, 45, 0.22);
  color: var(--c-primary, #a0522d) !important;
  background: rgba(255, 248, 241, 0.75);
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

html body .why-showcase-link::after {
  content: "→";
  font-size: 1.9rem;
  line-height: 1;
}

html body .why-showcase-link:hover,
html body .why-showcase-link:focus-visible,
html body .why-showcase-link-primary {
  color: #ffffff !important;
  background: var(--c-primary, #a0522d);
  border-color: var(--c-primary, #a0522d);
  transform: translateY(-0.2rem);
}

@media (max-width: 1024px) {
  html body .why-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .why-showcase-card,
  html body .why-showcase-card-one,
  html body .why-showcase-card-two,
  html body .why-showcase-card-featured,
  html body .why-showcase-card-four {
    transform: none;
  }
}

@media (max-width: 767px) {
  html body .why-mezzo-showcase-section {
    padding-left: 0;
    padding-right: 0;
  }

  html body .why-showcase-grid {
    display: flex !important;
    gap: 1.4rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 0 1.8rem 1.2rem;
    margin-left: -1.8rem;
    margin-right: -1.8rem;
    -webkit-overflow-scrolling: touch;
  }

  html body .why-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  html body .why-showcase-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    border-radius: 2rem;
  }

  html body .why-showcase-media {
    min-height: 21rem;
    border-radius: 2rem 2rem 0 0;
  }

  html body .why-showcase-body {
    padding: 1.8rem;
  }

  html body .why-showcase-body h3 {
    font-size: 2rem !important;
    line-height: 1.35 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .why-showcase-card,
  html body .why-showcase-link {
    transition: none !important;
    transform: none !important;
  }
}


/* Why Mezzo icon position: center-right bottom of image */
html body .why-showcase-media {
  position: relative;
}

html body .why-showcase-icon {
  position: absolute !important;
  right: 1.6rem !important;
  bottom: 0 !important;
  transform: translateY(50%) !important;
  z-index: 3 !important;
}

@media (max-width: 767px) {
  html body .why-showcase-icon {
    right: 1.2rem !important;
    bottom: 0 !important;
    transform: translateY(50%) !important;
  }
}

/* Mobile hero benefits spacing fix - EN/ZH templates */
@media (max-width: 767px) {
  html body .hero-benefits-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.6rem 0 0 !important;
    padding: 0 !important;
  }

  html body .hero-benefits {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body .hero-benefits li {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.5rem !important;
    line-height: 1.45 !important;
  }

  html body .hero-benefits li > span:last-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
    line-height: 1.45 !important;
  }

  html body .hero-benefits .benefit-icon {
    flex: 0 0 2.2rem !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
    font-size: 1.2rem !important;
    margin-top: 0.1rem !important;
  }

  html body .hero-benefits .emphasis-wavy {
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  html body .hero-benefits li {
    font-size: 1.42rem !important;
    gap: 0.65rem !important;
  }

  html body .hero-benefits .benefit-icon {
    flex-basis: 2rem !important;
    width: 2rem !important;
    height: 2rem !important;
  }
}


/* =========================================================
   FINAL PATCH v20 — Attractive responsive home hero
   - Removed old hero sub-points/checklist
   - Stronger visual background, cleaner spacing and device-safe H1
   ========================================================= */
html body.home .hero,
html body.front-page .hero,
html body.page-template-template-home .hero,
html body.page-template-template-home-zh .hero {
  min-height: min(92rem, calc(100svh - 0px)) !important;
  padding-top: clamp(6.4rem, 6vw, 9.6rem) !important;
  padding-bottom: clamp(5.6rem, 6vw, 8.8rem) !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 161, 58, 0.28), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(11, 79, 74, 0.55), transparent 32%),
    radial-gradient(circle at 64% 82%, rgba(216, 161, 58, 0.20), transparent 34%),
    linear-gradient(135deg, #052d2a 0%, #083532 43%, #0b4f4a 100%) !important;
}

html body.home .hero::before,
html body.front-page .hero::before,
html body.page-template-template-home .hero::before,
html body.page-template-template-home-zh .hero::before {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.08), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0, transparent 7rem, rgba(255,255,255,0.035) 7rem, rgba(255,255,255,0.035) 7.12rem) !important;
}

html body.home .hero .hero-grid,
html body.front-page .hero .hero-grid,
html body.page-template-template-home .hero .hero-grid,
html body.page-template-template-home-zh .hero .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(32rem, 0.96fr) !important;
  gap: clamp(3.2rem, 5.5vw, 7.6rem) !important;
}

html body.home .hero .hero-copy,
html body.front-page .hero .hero-copy,
html body.page-template-template-home .hero .hero-copy,
html body.page-template-template-home-zh .hero .hero-copy {
  max-width: 74rem !important;
}

html body.home .hero .eyebrow,
html body.front-page .hero .eyebrow,
html body.page-template-template-home .hero .eyebrow,
html body.page-template-template-home-zh .hero .eyebrow {
  padding: 0.9rem 1.35rem !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.09) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: rgba(255,248,241,0.92) !important;
  letter-spacing: 0.18rem !important;
}

html body.home .hero .eyebrow::before,
html body.front-page .hero .eyebrow::before,
html body.page-template-template-home .hero .eyebrow::before,
html body.page-template-template-home-zh .hero .eyebrow::before {
  width: 1rem !important;
  height: 1rem !important;
  border-radius: 999px !important;
  background: var(--accent, #D8A13A) !important;
  box-shadow: 0 0 0 0.55rem rgba(216,161,58,0.14) !important;
}

html body.home .hero .hero-copy h1,
html body.front-page .hero .hero-copy h1,
html body.page-template-template-home .hero .hero-copy h1,
html body.page-template-template-home-zh .hero .hero-copy h1,
html body .template-home .hero .hero-copy h1 {
  width: 100% !important;
  max-width: 11.2ch !important;
  margin: 0 0 clamp(1.8rem, 2.4vw, 2.8rem) !important;
  font-size: clamp(4.2rem, 7.4vw, 9.2rem) !important;
  line-height: 0.92 !important;
  letter-spacing: clamp(-0.18rem, -0.18vw, -0.06rem) !important;
  text-wrap: balance !important;
}

html body.home .hero .hero-copy h1 em,
html body.front-page .hero .hero-copy h1 em,
html body.page-template-template-home .hero .hero-copy h1 em,
html body.page-template-template-home-zh .hero .hero-copy h1 em {
  color: #f2c66b !important;
  text-shadow: 0 1rem 3rem rgba(216,161,58,0.25) !important;
}

html body.home .hero .hero-lead,
html body.front-page .hero .hero-lead,
html body.page-template-template-home .hero .hero-lead,
html body.page-template-template-home-zh .hero .hero-lead {
  max-width: 60rem !important;
  margin: 0 0 clamp(2.4rem, 3vw, 3.6rem) !important;
  color: rgba(255,248,241,0.86) !important;
  font-size: clamp(1.6rem, 1.55vw, 2rem) !important;
  line-height: 1.75 !important;
  font-weight: 600 !important;
}

html body.home .hero .hero-benefits-wrap,
html body.front-page .hero .hero-benefits-wrap,
html body.page-template-template-home .hero .hero-benefits-wrap,
html body.page-template-template-home-zh .hero .hero-benefits-wrap,
html body .template-home .hero-benefits-wrap,
html body.home .hero .hero-benefits,
html body.front-page .hero .hero-benefits,
html body.page-template-template-home .hero .hero-benefits,
html body.page-template-template-home-zh .hero .hero-benefits,
html body .template-home .hero-benefits {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body.home .hero .hero-trust,
html body.front-page .hero .hero-trust,
html body.page-template-template-home .hero .hero-trust,
html body.page-template-template-home-zh .hero .hero-trust {
  margin: 0 0 clamp(2.2rem, 2.4vw, 3rem) !important;
  max-width: 58rem !important;
}

html body.home .hero .trust-pill,
html body.front-page .hero .trust-pill,
html body.page-template-template-home .hero .trust-pill,
html body.page-template-template-home-zh .hero .trust-pill {
  border-color: rgba(255,255,255,0.16) !important;
  background: rgba(255,255,255,0.10) !important;
  box-shadow: 0 1.6rem 4rem rgba(0,0,0,0.12) !important;
}

html body.home .hero .hero-actions-after-trust,
html body.front-page .hero .hero-actions-after-trust,
html body.page-template-template-home .hero .hero-actions-after-trust,
html body.page-template-template-home-zh .hero .hero-actions-after-trust {
  margin-top: 0 !important;
}

html body.home .hero .hero-media-image-card,
html body.front-page .hero .hero-media-image-card,
html body.page-template-template-home .hero .hero-media-image-card,
html body.page-template-template-home-zh .hero .hero-media-image-card {
  border-radius: clamp(2.4rem, 3vw, 4.2rem) !important;
  box-shadow: 0 3.6rem 8rem rgba(0,0,0,0.34), inset 0 0 0 1px rgba(255,255,255,0.16) !important;
}

@media (max-width: 1080px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.page-template-template-home .hero,
  html body.page-template-template-home-zh .hero {
    min-height: auto !important;
    padding-top: 5.2rem !important;
    padding-bottom: 6.8rem !important;
  }

  html body.home .hero .hero-grid,
  html body.front-page .hero .hero-grid,
  html body.page-template-template-home .hero .hero-grid,
  html body.page-template-template-home-zh .hero .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 4rem !important;
  }

  html body.home .hero .hero-copy,
  html body.front-page .hero .hero-copy,
  html body.page-template-template-home .hero .hero-copy,
  html body.page-template-template-home-zh .hero .hero-copy {
    max-width: 76rem !important;
  }

  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body.page-template-template-home-zh .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    max-width: 10.8ch !important;
    margin-bottom: 2.2rem !important;
    font-size: clamp(4.4rem, 9.4vw, 7.4rem) !important;
    line-height: 0.95 !important;
  }
}

@media (max-width: 767px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.page-template-template-home .hero,
  html body.page-template-template-home-zh .hero {
    padding: 4.6rem 5vw 5.8rem !important;
  }

  html body.home .hero .hero-copy,
  html body.front-page .hero .hero-copy,
  html body.page-template-template-home .hero .hero-copy,
  html body.page-template-template-home-zh .hero .hero-copy {
    text-align: left !important;
  }

  html body.home .hero .eyebrow,
  html body.front-page .hero .eyebrow,
  html body.page-template-template-home .hero .eyebrow,
  html body.page-template-template-home-zh .hero .eyebrow {
    max-width: 100% !important;
    font-size: 1.08rem !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }

  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body.page-template-template-home-zh .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    max-width: 9.4ch !important;
    font-size: clamp(3.7rem, 13vw, 5.6rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.08rem !important;
  }

  html body.home .hero .hero-lead,
  html body.front-page .hero .hero-lead,
  html body.page-template-template-home .hero .hero-lead,
  html body.page-template-template-home-zh .hero .hero-lead {
    max-width: 100% !important;
    font-size: 1.58rem !important;
    line-height: 1.68 !important;
  }

  html body.home .hero .hero-trust,
  html body.front-page .hero .hero-trust,
  html body.page-template-template-home .hero .hero-trust,
  html body.page-template-template-home-zh .hero .hero-trust {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    margin-bottom: 2.4rem !important;
  }

  html body.home .hero .hero-actions,
  html body.front-page .hero .hero-actions,
  html body.page-template-template-home .hero .hero-actions,
  html body.page-template-template-home-zh .hero .hero-actions {
    width: 100% !important;
    gap: 1rem !important;
  }

  html body.home .hero .hero-actions .btn,
  html body.front-page .hero .hero-actions .btn,
  html body.page-template-template-home .hero .hero-actions .btn,
  html body.page-template-template-home-zh .hero .hero-actions .btn {
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }

  html body.home .hero .hero-visual,
  html body.front-page .hero .hero-visual,
  html body.page-template-template-home .hero .hero-visual,
  html body.page-template-template-home-zh .hero .hero-visual {
    min-height: clamp(34rem, 92vw, 46rem) !important;
  }
}

@media (max-width: 390px) {
  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body.page-template-template-home-zh .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    font-size: clamp(3.25rem, 12.4vw, 4.6rem) !important;
    max-width: 9.1ch !important;
  }
}

/* =========================================================
   FINAL PATCH v21 — Home hero background uses primary colour
   ========================================================= */
html body.home .hero,
html body.front-page .hero,
html body.page-template-template-home .hero,
html body.page-template-template-home-zh .hero {
  background: var(--c-primary, var(--primary-color, #A0522D)) !important;
  background-color: var(--c-primary, var(--primary-color, #A0522D)) !important;
}

html body.home .hero::before,
html body.front-page .hero::before,
html body.page-template-template-home .hero::before,
html body.page-template-template-home-zh .hero::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,0.14), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.10), transparent 32%),
    linear-gradient(115deg, rgba(255,255,255,0.08), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0, transparent 7rem, rgba(255,255,255,0.028) 7rem, rgba(255,255,255,0.028) 7.12rem) !important;
}

/* =========================================================
   FINAL PATCH v22 — Requested hero title / mobile image fixes
   - Highlight “room feels” with #a0522d
   - Remove hero description spacing
   - Desktop H1 fixed at 60px, responsive below desktop
   - Force mobile hero image card to render visibly
   ========================================================= */
html body.home .hero .hero-copy h1,
html body.front-page .hero .hero-copy h1,
html body.page-template-template-home .hero .hero-copy h1,
html body.page-template-template-home-zh .hero .hero-copy h1,
html body .template-home .hero .hero-copy h1 {
  font-size: 60px !important;
  line-height: 0.96 !important;
  letter-spacing: -0.04em !important;
  max-width: 11.5ch !important;
  margin-bottom: clamp(2.2rem, 2.8vw, 3.2rem) !important;
}

html body.home .hero .hero-copy h1 em,
html body.front-page .hero .hero-copy h1 em,
html body.page-template-template-home .hero .hero-copy h1 em,
html body.page-template-template-home-zh .hero .hero-copy h1 em {
  color: #a0522d !important;
  -webkit-text-fill-color: #a0522d !important;
  text-shadow: none !important;
}

html body.home .hero .hero-lead,
html body.front-page .hero .hero-lead,
html body.page-template-template-home .hero .hero-lead,
html body.page-template-template-home-zh .hero .hero-lead {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body.home .hero .hero-visual,
html body.front-page .hero .hero-visual,
html body.page-template-template-home .hero .hero-visual,
html body.page-template-template-home-zh .hero .hero-visual,
html body.home .hero .polygon-wrap,
html body.front-page .hero .polygon-wrap,
html body.page-template-template-home .hero .polygon-wrap,
html body.page-template-template-home-zh .hero .polygon-wrap,
html body.home .hero .hero-media-image-card,
html body.front-page .hero .hero-media-image-card,
html body.page-template-template-home .hero .hero-media-image-card,
html body.page-template-template-home-zh .hero .hero-media-image-card,
html body.home .hero .hero-media-image-card img,
html body.front-page .hero .hero-media-image-card img,
html body.page-template-template-home .hero .hero-media-image-card img,
html body.page-template-template-home-zh .hero .hero-media-image-card img {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 1080px) {
  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body.page-template-template-home-zh .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    font-size: clamp(4.6rem, 8vw, 5.8rem) !important;
    line-height: 1.02 !important;
    max-width: 10.8ch !important;
    letter-spacing: -0.035em !important;
  }
}

@media (max-width: 767px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.page-template-template-home .hero,
  html body.page-template-template-home-zh .hero {
    padding-top: 4.4rem !important;
    padding-bottom: 5.8rem !important;
  }

  html body.home .hero .hero-copy,
  html body.front-page .hero .hero-copy,
  html body.page-template-template-home .hero .hero-copy,
  html body.page-template-template-home-zh .hero .hero-copy {
    text-align: left !important;
    align-items: flex-start !important;
  }

  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body.page-template-template-home-zh .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    width: 100% !important;
    max-width: 9.6ch !important;
    font-size: clamp(3.6rem, 11.6vw, 4.8rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 2.2rem !important;
  }

  html body.home .hero .hero-visual,
  html body.front-page .hero .hero-visual,
  html body.page-template-template-home .hero .hero-visual,
  html body.page-template-template-home-zh .hero .hero-visual {
    display: block !important;
    width: 100% !important;
    max-width: 46rem !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  html body.home .hero .polygon-wrap,
  html body.front-page .hero .polygon-wrap,
  html body.page-template-template-home .hero .polygon-wrap,
  html body.page-template-template-home-zh .hero .polygon-wrap {
    display: block !important;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 32rem !important;
    filter: drop-shadow(0 2rem 3rem rgba(0,0,0,0.28)) !important;
  }

  html body.home .hero .hero-media-image-card,
  html body.front-page .hero .hero-media-image-card,
  html body.page-template-template-home .hero .hero-media-image-card,
  html body.page-template-template-home-zh .hero .hero-media-image-card {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 32rem !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 2.4rem !important;
    clip-path: none !important;
    overflow: hidden !important;
  }

  html body.home .hero .hero-media-image-card img,
  html body.front-page .hero .hero-media-image-card img,
  html body.page-template-template-home .hero .hero-media-image-card img,
  html body.page-template-template-home-zh .hero .hero-media-image-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 32rem !important;
    object-fit: cover !important;
  }
}

@media (max-width: 390px) {
  html body.home .hero .hero-copy h1,
  html body.front-page .hero .hero-copy h1,
  html body.page-template-template-home .hero .hero-copy h1,
  html body.page-template-template-home-zh .hero .hero-copy h1,
  html body .template-home .hero .hero-copy h1 {
    font-size: clamp(3.25rem, 11vw, 4.1rem) !important;
    max-width: 9.4ch !important;
  }
}

/* =========================================================
   V23 — Home hero editorial redesign only
   Header remains untouched. The hero image still uses the
   existing Customizer setting: mezzo_home_hero_image.
   ========================================================= */
html body.home main > section.hero.mezzo-home-editorial-hero,
html body.front-page main > section.hero.mezzo-home-editorial-hero,
html body.page-template-template-home main > section.hero.mezzo-home-editorial-hero,
html body.page-template-template-home-zh main > section.hero.mezzo-home-editorial-hero,
html body main > section.hero.mezzo-home-editorial-hero {
  min-height: auto !important;
  display: block !important;
  align-items: initial !important;
  overflow: hidden !important;
  isolation: isolate !important;
  padding: clamp(1.6rem, 2vw, 2.4rem) 0 clamp(4.4rem, 5vw, 6.4rem) !important;
  background:
    radial-gradient(circle at 78% 0%, rgba(107,26,26,0.38), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(201,154,94,0.12), transparent 28%),
    linear-gradient(135deg, #2b170f 0%, #35190e 46%, #210f08 100%) !important;
}

html body main > section.hero.mezzo-home-editorial-hero::before {
  opacity: 0.28 !important;
  z-index: -1 !important;
}

html body main > section.hero.mezzo-home-editorial-hero::after {
  width: min(76rem, 62vw) !important;
  height: min(76rem, 62vw) !important;
  right: -18rem !important;
  bottom: 10rem !important;
  background: transparent !important;
  border: 1px solid rgba(160, 82, 45, 0.12) !important;
  filter: none !important;
  opacity: 1 !important;
}

html body main > section.hero.mezzo-home-editorial-hero .mezzo-home-hero-frame,
html body.home .hero.mezzo-home-editorial-hero .hero-grid,
html body.front-page .hero.mezzo-home-editorial-hero .hero-grid,
html body.page-template-template-home .hero.mezzo-home-editorial-hero .hero-grid,
html body.page-template-template-home-zh .hero.mezzo-home-editorial-hero .hero-grid {
  width: min(132rem, calc(100% - clamp(3.2rem, 6vw, 9.6rem))) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  align-items: stretch !important;
  transform: none !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-wrap,
html body .hero.mezzo-home-editorial-hero .hero-visual {
  width: 100% !important;
  min-height: 0 !important;
  display: block !important;
  position: relative !important;
  order: 1 !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-inner,
html body .hero.mezzo-home-editorial-hero .polygon-wrap {
  width: 100% !important;
  height: clamp(30rem, 38vw, 48rem) !important;
  min-height: 0 !important;
  display: block !important;
  position: relative !important;
  border-radius: 0 !important;
  transform: none !important;
  filter: none !important;
}

html body .hero.mezzo-home-editorial-hero .shape-outline,
html body .hero.mezzo-home-editorial-hero .gold-orb,
html body .hero.mezzo-home-editorial-hero .hero-media-image-caption {
  display: none !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-card,
html body .hero.mezzo-home-editorial-hero .hero-media-image-card {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 3rem 7rem rgba(0,0,0,0.32) !important;
  background: #160c08 !important;
  transform: none !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-card::after,
html body .hero.mezzo-home-editorial-hero .hero-media-image-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.12) 56%, rgba(43,23,15,0.74) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.36) 0%, transparent 34%, rgba(53,25,14,0.36) 100%) !important;
  z-index: 1 !important;
}

html body .hero.mezzo-home-editorial-hero .hero-media-image-card img,
html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-copy,
html body .hero.mezzo-home-editorial-hero .hero-copy {
  max-width: none !important;
  width: 100% !important;
  order: 2 !important;
  padding: clamp(3.2rem, 4.8vw, 6.4rem) 0 0 !important;
  color: var(--text-white, #fff8f0) !important;
  position: relative !important;
  z-index: 2 !important;
  text-align: left !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-kicker,
html body .hero.mezzo-home-editorial-hero .eyebrow {
  margin: 0 0 clamp(1.8rem, 2.2vw, 2.6rem) !important;
  color: #a0522d !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.1rem, 0.86vw, 1.28rem) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.24em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-kicker::before,
html body .hero.mezzo-home-editorial-hero .eyebrow::before {
  width: clamp(5.2rem, 11vw, 15rem) !important;
  height: 1px !important;
  background: rgba(160, 82, 45, 0.88) !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-title,
html body .hero.mezzo-home-editorial-hero h1,
html body .hero.mezzo-home-editorial-hero h1.hero-animate {
  width: min(92rem, 100%) !important;
  margin: 0 0 clamp(2.4rem, 3vw, 3.6rem) !important;
  color: rgba(255, 248, 241, 0.94) !important;
  font-family: var(--font-heading) !important;
  font-size: 60px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
  font-weight: 600 !important;
  text-wrap: balance !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-title em,
html body .hero.mezzo-home-editorial-hero h1 em {
  color: #a0522d !important;
  font-style: normal !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-actions,
html body .hero.mezzo-home-editorial-hero .hero-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  margin: 0 0 clamp(3rem, 3.8vw, 5rem) !important;
  gap: 0 !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-cta,
html body .hero.mezzo-home-editorial-hero .btn-main {
  min-height: 5.6rem !important;
  min-width: min(32rem, 100%) !important;
  padding: 1.5rem 2.4rem !important;
  border-radius: 0.4rem !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  background: #25D366 !important;
  color: #fff !important;
  box-shadow: 0 1.5rem 3.4rem rgba(37, 211, 102, 0.24) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.22rem, 0.9vw, 1.45rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  justify-content: space-between !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-cta:hover,
html body .hero.mezzo-home-editorial-hero .btn-main:hover {
  background: #1ebe5d !important;
  transform: translateY(-0.18rem) !important;
  box-shadow: 0 1.8rem 3.8rem rgba(37, 211, 102, 0.34) !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-cta-wa-dot {
  width: 2.4rem !important;
  height: 2.4rem !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.16) !important;
  color: #fff !important;
  font-size: 1.15rem !important;
  line-height: 1 !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-cta-arrow {
  display: inline-block !important;
  margin-left: clamp(1rem, 2vw, 2.4rem) !important;
  font-size: 1.9rem !important;
  line-height: 1 !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-trust,
html body .hero.mezzo-home-editorial-hero .hero-trust {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2vw, 2.8rem) !important;
  margin: 0 !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-home-trust-card,
html body .hero.mezzo-home-editorial-hero .trust-pill {
  min-width: 0 !important;
  min-height: clamp(8.4rem, 8vw, 10.4rem) !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  column-gap: clamp(1rem, 1.5vw, 1.8rem) !important;
  row-gap: 0.25rem !important;
  padding: clamp(1.4rem, 1.6vw, 2rem) !important;
  border: 1px solid rgba(255, 248, 241, 0.16) !important;
  border-radius: 0.8rem !important;
  background: rgba(0,0,0,0.18) !important;
  box-shadow: inset 0 0 0 1px rgba(160, 82, 45, 0.08) !important;
  backdrop-filter: blur(0.6rem) !important;
}

html body .hero.mezzo-home-editorial-hero .mezzo-trust-icon {
  grid-row: 1 / span 2 !important;
  display: inline-grid !important;
  place-items: center !important;
  width: clamp(3rem, 3vw, 4.8rem) !important;
  height: clamp(3rem, 3vw, 4.8rem) !important;
  color: #a0522d !important;
  font-size: clamp(2rem, 2vw, 3.2rem) !important;
  line-height: 1 !important;
}

html body .hero.mezzo-home-editorial-hero .trust-pill strong {
  display: block !important;
  margin: 0 !important;
  color: rgba(255,248,241,0.96) !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(2.2rem, 2.5vw, 3.6rem) !important;
  line-height: 0.98 !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}

html body .hero.mezzo-home-editorial-hero .trust-pill span:not(.mezzo-trust-icon) {
  display: block !important;
  color: rgba(255,248,241,0.82) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.1rem, 0.95vw, 1.45rem) !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}

html body .hero.mezzo-home-editorial-hero .scroll-cue {
  display: none !important;
}

@media (max-width: 1024px) {
  html body main > section.hero.mezzo-home-editorial-hero {
    padding-top: 1.4rem !important;
    padding-bottom: 5.2rem !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-inner,
  html body .hero.mezzo-home-editorial-hero .polygon-wrap {
    height: clamp(28rem, 44vw, 42rem) !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-title,
  html body .hero.mezzo-home-editorial-hero h1,
  html body .hero.mezzo-home-editorial-hero h1.hero-animate {
    font-size: clamp(4.6rem, 6.2vw, 6rem) !important;
    max-width: 82rem !important;
  }
}

@media (max-width: 767px) {
  html body.home main > section.hero.mezzo-home-editorial-hero,
  html body.front-page main > section.hero.mezzo-home-editorial-hero,
  html body.page-template-template-home main > section.hero.mezzo-home-editorial-hero,
  html body.page-template-template-home-zh main > section.hero.mezzo-home-editorial-hero,
  html body main > section.hero.mezzo-home-editorial-hero {
    padding: 0 0 3.2rem !important;
    min-height: auto !important;
  }

  html body main > section.hero.mezzo-home-editorial-hero .mezzo-home-hero-frame,
  html body.home .hero.mezzo-home-editorial-hero .hero-grid,
  html body.front-page .hero.mezzo-home-editorial-hero .hero-grid,
  html body.page-template-template-home .hero.mezzo-home-editorial-hero .hero-grid,
  html body.page-template-template-home-zh .hero.mezzo-home-editorial-hero .hero-grid {
    width: 100% !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-inner,
  html body .hero.mezzo-home-editorial-hero .polygon-wrap {
    height: clamp(26rem, 72vw, 38rem) !important;
  }

  html body .hero.mezzo-home-editorial-hero .hero-media-image-card img,
  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-image-card img {
    object-position: center center !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-copy,
  html body .hero.mezzo-home-editorial-hero .hero-copy {
    padding: clamp(2.6rem, 7vw, 3.6rem) clamp(1.8rem, 5vw, 2.4rem) 0 !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-kicker,
  html body .hero.mezzo-home-editorial-hero .eyebrow {
    font-size: clamp(1rem, 3vw, 1.18rem) !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1.8rem !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-kicker::before,
  html body .hero.mezzo-home-editorial-hero .eyebrow::before {
    width: clamp(4.8rem, 20vw, 10rem) !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-title,
  html body .hero.mezzo-home-editorial-hero h1,
  html body .hero.mezzo-home-editorial-hero h1.hero-animate {
    width: 100% !important;
    font-size: clamp(3.8rem, 11.2vw, 5.6rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 2.4rem !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-actions,
  html body .hero.mezzo-home-editorial-hero .hero-actions {
    margin-bottom: 2.8rem !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-cta,
  html body .hero.mezzo-home-editorial-hero .btn-main {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 5.8rem !important;
    padding: 1.45rem 1.7rem !important;
    font-size: clamp(1.12rem, 3.3vw, 1.32rem) !important;
    letter-spacing: 0.16em !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-trust,
  html body .hero.mezzo-home-editorial-hero .hero-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-trust-card,
  html body .hero.mezzo-home-editorial-hero .trust-pill {
    min-height: 11rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0.45rem !important;
    text-align: center !important;
    padding: 1rem 0.45rem !important;
    border-radius: 0.55rem !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-trust-icon {
    width: 2.4rem !important;
    height: 2.4rem !important;
    font-size: 1.9rem !important;
    flex: 0 0 auto !important;
  }

  html body .hero.mezzo-home-editorial-hero .trust-pill strong {
    font-size: clamp(1.75rem, 5.4vw, 2.4rem) !important;
    line-height: 1 !important;
  }

  html body .hero.mezzo-home-editorial-hero .trust-pill span:not(.mezzo-trust-icon) {
    font-size: clamp(0.92rem, 2.55vw, 1.08rem) !important;
    line-height: 1.22 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

@media (max-width: 380px) {
  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-title,
  html body .hero.mezzo-home-editorial-hero h1,
  html body .hero.mezzo-home-editorial-hero h1.hero-animate {
    font-size: clamp(3.35rem, 10.4vw, 4rem) !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-hero-trust,
  html body .hero.mezzo-home-editorial-hero .hero-trust {
    gap: 0.45rem !important;
  }

  html body .hero.mezzo-home-editorial-hero .mezzo-home-trust-card,
  html body .hero.mezzo-home-editorial-hero .trust-pill {
    padding-left: 0.28rem !important;
    padding-right: 0.28rem !important;
  }
}

/* V31 — Why Mezzo mobile top-flip / sticky card scroll effect
   Applies to English and Chinese home templates only through shared section classes. */
@media (max-width: 767px) {
  html body .why-mezzo-showcase-section {
    overflow: visible !important;
  }

  html body .why-mezzo-showcase-section .container {
    overflow: visible !important;
  }

  html body .why-showcase-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.4rem !important;
    overflow: visible !important;
    overscroll-behavior-inline: auto !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    perspective: 100rem !important;
  }

  html body .why-showcase-card,
  html body .why-showcase-card-one,
  html body .why-showcase-card-two,
  html body .why-showcase-card-featured,
  html body .why-showcase-card-four {
    position: sticky !important;
    top: clamp(8.2rem, 14vh, 11rem) !important;
    flex: initial !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: none !important;
    transform-origin: top center !important;
    transform: perspective(100rem) rotateX(0deg) translateY(0) scale(1) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
    box-shadow: 0 2.2rem 4.6rem rgba(96, 48, 20, 0.14) !important;
    will-change: transform !important;
  }

  html body .why-showcase-card-one {
    z-index: 1 !important;
  }

  html body .why-showcase-card-two {
    z-index: 2 !important;
  }

  html body .why-showcase-card-featured {
    z-index: 3 !important;
  }

  html body .why-showcase-card-four {
    z-index: 4 !important;
  }

  html body .why-showcase-media {
    min-height: clamp(19rem, 48vw, 24rem) !important;
  }
}

@supports (animation-timeline: view()) {
  @media (max-width: 767px) {
    html body .why-showcase-card {
      animation-name: mezzoWhyMobileTopFlip !important;
      animation-duration: 1s !important;
      animation-fill-mode: both !important;
      animation-timing-function: ease-out !important;
      animation-timeline: view() !important;
      animation-range: entry 0% cover 42% !important;
    }
  }
}

@keyframes mezzoWhyMobileTopFlip {
  0% {
    opacity: 0.72;
    transform: perspective(100rem) rotateX(-8deg) translateY(3.2rem) scale(0.965);
  }
  58%, 100% {
    opacity: 1;
    transform: perspective(100rem) rotateX(0deg) translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .why-showcase-card {
    animation: none !important;
  }
}


/* Project archive pagination fix: visible on desktop, tablet and mobile */
.mz-archive-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-12);
  margin: var(--sp-48) auto 0;
  text-align: center;
}

.mz-archive-pagination-info {
  margin: 0;
  color: var(--mz-muted);
  font-size: var(--fs-14);
  font-weight: 700;
}

.mz-archive-pagination-links,
.mz-archive-pagination-links .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-8);
}

.mz-archive-pagination a,
.mz-archive-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  min-height: 4rem;
  padding: var(--sp-8) var(--sp-12);
  border: 0.1rem solid var(--mz-tan);
  border-radius: var(--mz-radius-sm);
  background: var(--mz-white);
  color: var(--mz-primary-dark);
  font-size: var(--fs-14);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.mz-archive-pagination a:hover,
.mz-archive-pagination a:focus-visible,
.mz-archive-pagination span.current {
  border-color: var(--mz-primary);
  background: var(--mz-primary);
  color: var(--mz-white);
}

@media (max-width: 48em) {
  .mz-archive-pagination {
    margin-top: var(--sp-32);
  }

  .mz-archive-pagination a,
  .mz-archive-pagination span.page-numbers {
    min-width: 3.8rem;
    min-height: 3.8rem;
    padding: var(--sp-8) var(--sp-10);
  }
}


/* Current ZIP mobile floating social button +2px fix */
@media (max-width: 767px) {
  html body .mezzo-social-float-link {
    width: 5rem !important;
    height: 5rem !important;
    min-width: 5rem !important;
    min-height: 5rem !important;
  }

  html body .mezzo-social-icon {
    width: 2rem !important;
    height: 2rem !important;
    flex-basis: 2rem !important;
  }
}


/* About Customizer image override: keep admin-uploaded About images visible on desktop and mobile. */
html body .about-image-card.has-customizer-image,
html body .founder-image-card.has-customizer-image,
html body .page-image-card.has-customizer-image {
  background-image: none !important;
}

html body .about-image-card.has-customizer-image .about-customizer-image,
html body .founder-image-card.has-customizer-image .about-customizer-image,
html body .page-image-card.has-customizer-image .about-customizer-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* V35 — Home Pricing Section: primary-colour icons/borders + 5-photo responsive gallery */
#sec-pricing.mezzo-pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--c-warm-section-bg);
}

#sec-pricing.mezzo-pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(160, 82, 45, 0.10), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(201, 154, 94, 0.14), transparent 30rem);
}

#sec-pricing .container {
  position: relative;
  z-index: 1;
}


#sec-pricing .mezzo-pricing-banner {
  width: min(112rem, 100%);
  max-width: 100%;
  margin: 0 auto clamp(2.4rem, 4vw, 4.8rem);
  text-align: center;
}

#sec-pricing .mezzo-pricing-banner .section-kicker {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#sec-pricing .mezzo-pricing-banner .mezzo-pricing-start-card {
  width: 100%;
  max-width: 112rem;
  margin: 0 auto;
  text-align: center;
}

#sec-pricing .mezzo-pricing-banner .mezzo-pricing-start-card span,
#sec-pricing .mezzo-pricing-banner .mezzo-pricing-start-card strong {
  text-align: center;
}

#sec-pricing .mezzo-pricing-shell {
  display: grid;
  grid-template-columns: minmax(28rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.4rem, 4vw, 5.6rem);
  align-items: center;
}

#sec-pricing .mezzo-pricing-copy {
  max-width: 58rem;
}

#sec-pricing .section-kicker {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--c-primary);
  font-size: var(--fs-eyebrow);
  font-weight: 900;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

#sec-pricing .section-kicker::before {
  display: none;
}

#sec-pricing .mezzo-pricing-start-card {
  margin-top: 0.6rem;
  padding: clamp(1.8rem, 2.8vw, 2.6rem);
  border: 1px solid rgba(222, 192, 154, 0.58);
  border-radius: var(--r-lg, 2.4rem);
  background:
    var(--c-primary-glow),
    linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 46%, var(--c-primary-dk) 100%);
  box-shadow: var(--shadow-soft);
}

#sec-pricing .mezzo-pricing-start-card span {
  display: block;
  color: var(--text-light);
  font-size: clamp(1.45rem, 1.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#sec-pricing .mezzo-pricing-start-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--c-primary-lt);
  font-size: clamp(4.4rem, 6.6vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-shadow: 0 1rem 3rem rgba(160, 82, 45, 0.24);
}

#sec-pricing .mezzo-pricing-price-card {
  margin-top: 1.8rem;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border: 1px solid rgba(222, 192, 154, 0.62);
  border-radius: var(--r-lg, 2.4rem);
  background: var(--c-card-glass-bg);
  box-shadow: var(--shadow-soft);
}

#sec-pricing .mezzo-pricing-label {
  display: block;
  margin-bottom: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--c-primary);
  font-size: var(--fs-eyebrow);
  font-weight: 900;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

#sec-pricing .mezzo-pricing-price-card strong {
  display: block;
  color: var(--c-primary);
  font-size: clamp(4rem, 6vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

#sec-pricing .mezzo-pricing-price-card p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1.65;
}

#sec-pricing .mezzo-pricing-list {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 2rem 0 2.4rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

#sec-pricing .mezzo-pricing-list li {
  position: relative;
  width: 100%;
  padding: 1.1rem 1.4rem 1.1rem 4rem;
  border: 1px solid rgba(160, 82, 45, 0.26);
  border-color: color-mix(in srgb, var(--c-primary) 26%, transparent);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(160, 82, 45, 0.08), rgba(255, 255, 255, 0.94));
  background: linear-gradient(135deg, color-mix(in srgb, var(--c-primary) 8%, white), rgba(255, 255, 255, 0.94));
  color: var(--text-heading-dark);
  font-size: 1.58rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 1rem 2.6rem rgba(160, 82, 45, 0.10);
  box-shadow: 0 1rem 2.6rem color-mix(in srgb, var(--c-primary) 10%, transparent);
}

#sec-pricing .mezzo-pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 1.4rem;
  top: 50%;
  width: 1.9rem;
  height: 1.9rem;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(160, 82, 45, 0.12);
  background: color-mix(in srgb, var(--c-primary) 12%, white);
  color: var(--c-primary);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(160, 82, 45, 0.28);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-primary) 28%, transparent);
}

#sec-pricing .mezzo-pricing-gallery-wrap {
  min-width: 0;
}

#sec-pricing .mezzo-pricing-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(42rem, 52rem);
  gap: clamp(1.4rem, 2vw, 2.4rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 0.6rem;
  padding: 0.6rem 0.6rem 2rem;
  -webkit-overflow-scrolling: touch;
}

#sec-pricing .mezzo-pricing-gallery:focus {
  outline: 2px solid rgba(160, 82, 45, 0.34);
  outline-offset: 0.4rem;
  border-radius: var(--r-lg, 2.4rem);
}

#sec-pricing .mezzo-pricing-photo-card {
  scroll-snap-align: start;
  margin: 0;
  border: 1px solid rgba(222, 192, 154, 0.58);
  border-radius: var(--r-lg, 2.4rem);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-soft);
}

#sec-pricing .mezzo-pricing-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 26rem;
  object-fit: cover;
  object-position: center center;
}

#sec-pricing .mezzo-pricing-photo-card figcaption {
  padding: 1.6rem 1.8rem 1.8rem;
  border-top: 1px solid rgba(222, 192, 154, 0.50);
  color: var(--text-heading-dark);
  font-size: 1.6rem;
  font-weight: 850;
}

#sec-pricing .mezzo-pricing-scroll-hint {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1024px) {
  #sec-pricing .mezzo-pricing-shell {
    grid-template-columns: 1fr;
  }

  #sec-pricing .mezzo-pricing-copy {
    max-width: 76rem;
    text-align: center;
    margin-inline: auto;
  }

  #sec-pricing .mezzo-pricing-list {
    max-width: 60rem;
    margin-inline: auto;
    text-align: left;
  }

  #sec-pricing .mezzo-pricing-list li {
    text-align: left;
  }

  #sec-pricing .mezzo-pricing-gallery {
    grid-auto-columns: minmax(34rem, 72vw);
  }
}

@media (max-width: 640px) {
  #sec-pricing.mezzo-pricing-section {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }

  #sec-pricing .mezzo-pricing-start-card,
  #sec-pricing .mezzo-pricing-price-card {
    border-radius: 2.2rem;
  }

  #sec-pricing .mezzo-pricing-list li {
    border-radius: 2rem;
    padding-left: 4.2rem;
    padding-right: 1.6rem;
    text-align: left;
    font-size: 1.48rem;
  }

  #sec-pricing .mezzo-pricing-gallery {
    grid-auto-columns: minmax(27rem, 86vw);
    margin-inline: -1.2rem;
    padding-inline: 1.2rem;
  }

  #sec-pricing .mezzo-pricing-photo-card {
    border-radius: 2.2rem;
  }

  #sec-pricing .mezzo-pricing-photo-card img {
    min-height: 19rem;
  }
}

/* Floating WhatsApp enquiry popup form */
html body .mezzo-social-float-link[type="button"],
html body button.mezzo-social-float-link {
  border: 0 !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

html body .mezzo-whatsapp-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 3.2rem);
}

html body .mezzo-whatsapp-popup.is-open {
  display: flex;
}

html body .mezzo-whatsapp-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 22, 16, 0.58);
  backdrop-filter: blur(0.5rem);
}

html body .mezzo-whatsapp-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(74.5rem, 100%);
  max-height: min(88vh, 78rem);
  overflow-y: auto;
  padding: clamp(2rem, 3vw, 3.4rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(1.8rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.38), transparent 30%),
    var(--c-primary-gradient, linear-gradient(135deg, var(--c-primary, #A0522D) 0%, var(--c-primary-dk, #6F341B) 100%));
  box-shadow: 0 2.4rem 7rem rgba(0, 0, 0, 0.28);
}

html body .mezzo-whatsapp-popup-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-primary-dk, #6F341B);
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
}

html body .mezzo-whatsapp-popup-head {
  max-width: 56rem;
  margin: 0 0 1.8rem;
  color: #fff;
}

html body .mezzo-whatsapp-popup-head span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

html body .mezzo-whatsapp-popup-head h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.05;
}

html body .mezzo-whatsapp-popup-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.5rem;
  line-height: 1.6;
}

html body .mezzo-whatsapp-popup-form {
  margin: 0;
  box-shadow: 0 1.8rem 4rem rgba(20, 10, 4, 0.14);
}

html body .mezzo-whatsapp-popup-form .mezzo-home-cta-submit {
  background: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
  border-color: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
  color: #fff !important;
}

html body .mezzo-whatsapp-popup-form .mezzo-home-cta-submit:hover,
html body .mezzo-whatsapp-popup-form .mezzo-home-cta-submit:focus-visible {
  background: var(--c-primary, var(--primary-color, #A0522D)) !important;
  border-color: var(--c-primary, var(--primary-color, #A0522D)) !important;
}

html body.mezzo-wa-popup-lock {
  overflow: hidden;
}

@media (max-width: 1024px) {
  html body .mezzo-whatsapp-popup {
    padding: 2rem;
    align-items: flex-start;
  }

  html body .mezzo-whatsapp-popup-dialog {
    width: min(72rem, 100%);
    max-height: calc(100vh - 4rem);
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  html body .mezzo-whatsapp-popup {
    padding: 1.2rem;
  }

  html body .mezzo-whatsapp-popup-dialog {
    width: 100%;
    max-height: calc(100vh - 2.4rem);
    margin-top: 0;
    padding: 1.8rem;
    border-radius: 2rem;
  }

  html body .mezzo-whatsapp-popup-close {
    top: 0.9rem;
    right: 0.9rem;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 2.4rem;
  }

  html body .mezzo-whatsapp-popup-head {
    padding-right: 3.8rem;
  }

  html body .mezzo-whatsapp-popup-head h2 {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
  }

  html body .mezzo-whatsapp-popup-form {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
    padding: 1.4rem;
    border-radius: 1.6rem;
  }

  html body .mezzo-whatsapp-popup-form .mezzo-home-field-full,
  html body .mezzo-whatsapp-popup-form .mezzo-home-cta-submit {
    grid-column: 1 / -1;
  }
}

/* WhatsApp popup close/text visibility refinement */
html body .mezzo-whatsapp-popup-close {
  width: 5.8rem !important;
  height: 5.8rem !important;
  min-width: 5.8rem !important;
  min-height: 5.8rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: 999px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 3.8rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: var(--c-primary-dk, #6F341B) !important;
}

html body .mezzo-whatsapp-popup-head p {
  color: rgba(255, 255, 255, 0.94) !important;
  text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.14);
}

@media (max-width: 1024px) {
  html body .mezzo-whatsapp-popup-close {
    width: 5.4rem !important;
    height: 5.4rem !important;
    min-width: 5.4rem !important;
    min-height: 5.4rem !important;
    font-size: 3.6rem !important;
  }

  html body .mezzo-whatsapp-popup-head p {
    color: rgba(255, 255, 255, 0.96) !important;
  }
}

@media (max-width: 767px) {
  html body .mezzo-whatsapp-popup-close {
    top: 0.8rem !important;
    right: 0.8rem !important;
    width: 5rem !important;
    height: 5rem !important;
    min-width: 5rem !important;
    min-height: 5rem !important;
    font-size: 3.4rem !important;
  }

  html body .mezzo-whatsapp-popup-head {
    padding-right: 5.4rem !important;
  }

  html body .mezzo-whatsapp-popup-head p {
    color: #fff !important;
  }
}

/* v8 fix: keep floating WhatsApp and popup close button on original colours, no pink hover */
html body .mezzo-social-float .mezzo-social-whatsapp,
html body .mezzo-social-float .mezzo-social-whatsapp:link,
html body .mezzo-social-float .mezzo-social-whatsapp:visited,
html body .mezzo-social-float .mezzo-social-whatsapp:hover,
html body .mezzo-social-float .mezzo-social-whatsapp:focus,
html body .mezzo-social-float .mezzo-social-whatsapp:focus-visible,
html body .mezzo-social-float .mezzo-social-whatsapp:active,
html body button.mezzo-social-whatsapp,
html body button.mezzo-social-whatsapp:hover,
html body button.mezzo-social-whatsapp:focus,
html body button.mezzo-social-whatsapp:focus-visible,
html body button.mezzo-social-whatsapp:active {
  background: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
  background-color: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
  border-color: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
}

html body .mezzo-whatsapp-popup-close,
html body .mezzo-whatsapp-popup-close:hover,
html body .mezzo-whatsapp-popup-close:focus,
html body .mezzo-whatsapp-popup-close:focus-visible,
html body .mezzo-whatsapp-popup-close:active {
  background: rgba(255, 255, 255, 0.95) !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  color: var(--c-primary-dk, var(--primary-dark-color, #6F341B)) !important;
  -webkit-text-fill-color: var(--c-primary-dk, var(--primary-dark-color, #6F341B)) !important;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.16) !important;
}

html body .mezzo-whatsapp-popup-close:hover,
html body .mezzo-whatsapp-popup-close:focus-visible {
  transform: translateY(-0.1rem);
}

@media (max-width: 1024px) {
  html body .mezzo-social-float .mezzo-social-whatsapp:hover,
  html body button.mezzo-social-whatsapp:hover,
  html body .mezzo-whatsapp-popup-close:hover {
    background-color: inherit;
  }
}

@media (max-width: 767px) {
  html body .mezzo-social-float .mezzo-social-whatsapp,
  html body .mezzo-social-float .mezzo-social-whatsapp:hover,
  html body button.mezzo-social-whatsapp,
  html body button.mezzo-social-whatsapp:hover {
    background: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
    background-color: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
  }

  html body .mezzo-whatsapp-popup-close,
  html body .mezzo-whatsapp-popup-close:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
  }
}

/* V9 fix: keep floating WhatsApp / Facebook / Instagram visible on iPhone 12 Pro and all mobile sizes */
html body .mezzo-social-float,
html body footer ~ .mezzo-social-float {
  position: fixed !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 2147483000 !important;
  right: clamp(1rem, 2vw, 2rem) !important;
  bottom: calc(clamp(1.6rem, 3vw, 3.2rem) + env(safe-area-inset-bottom, 0px)) !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 0.85rem !important;
}

html body .mezzo-social-float .mezzo-social-float-link,
html body .mezzo-social-float a.mezzo-social-float-link,
html body .mezzo-social-float button.mezzo-social-float-link {
  position: relative !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  align-items: center !important;
  justify-content: center !important;
  width: 5.6rem !important;
  height: 5.6rem !important;
  min-width: 5.6rem !important;
  min-height: 5.6rem !important;
  padding: 0 !important;
  border-radius: 1.4rem !important;
  color: var(--white-color, #ffffff) !important;
  -webkit-text-fill-color: var(--white-color, #ffffff) !important;
}

html body .mezzo-social-float .mezzo-social-icon {
  display: block !important;
  width: 2.6rem !important;
  height: 2.6rem !important;
  flex: 0 0 2.6rem !important;
}

@media (max-width: 767px) {
  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: calc(1.2rem + env(safe-area-inset-right, 0px)) !important;
    bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px)) !important;
    gap: 0.7rem !important;
    z-index: 2147483000 !important;
  }

  html body .mezzo-social-float .mezzo-social-float-link,
  html body .mezzo-social-float a.mezzo-social-float-link,
  html body .mezzo-social-float button.mezzo-social-float-link {
    width: 5.2rem !important;
    height: 5.2rem !important;
    min-width: 5.2rem !important;
    min-height: 5.2rem !important;
    border-radius: 1.25rem !important;
  }

  html body .mezzo-social-float .mezzo-social-icon {
    width: 2.2rem !important;
    height: 2.2rem !important;
    flex-basis: 2.2rem !important;
  }
}

@media (max-width: 390px) {
  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: calc(0.9rem + env(safe-area-inset-right, 0px)) !important;
    bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  html body .mezzo-social-float .mezzo-social-float-link,
  html body .mezzo-social-float a.mezzo-social-float-link,
  html body .mezzo-social-float button.mezzo-social-float-link {
    width: 4.8rem !important;
    height: 4.8rem !important;
    min-width: 4.8rem !important;
    min-height: 4.8rem !important;
  }
}

/* V10 responsive QA patch: floating buttons, WhatsApp popup, heading and mobile menu across small mobile / medium mobile / tablet / desktop */
html,
html body {
  max-width: 100%;
  overflow-x: hidden;
}

html body .site-header {
  z-index: 2147482200 !important;
}

html body .mobile-toggle {
  z-index: 2147482210 !important;
}

html body .mobile-panel,
html body .mobile-panel.open {
  z-index: 2147482190 !important;
}

html body .mezzo-social-float,
html body footer ~ .mezzo-social-float {
  z-index: 2147482000 !important;
}

html body .mezzo-whatsapp-popup,
html body .mezzo-whatsapp-popup.is-open {
  z-index: 2147483600 !important;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

html body.mezzo-wa-popup-lock .mezzo-social-float,
html body.mezzo-wa-popup-lock footer ~ .mezzo-social-float {
  display: none !important;
  pointer-events: none !important;
}

html body .mezzo-whatsapp-popup-dialog,
html body .mezzo-whatsapp-popup-form,
html body .mezzo-whatsapp-popup-form * {
  box-sizing: border-box;
}

html body .mezzo-whatsapp-popup-dialog {
  max-width: calc(100vw - 3.2rem) !important;
}

html body .mezzo-whatsapp-popup-head h2,
html body .hero h1,
html body .premium-hero-title,
html body h1 {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 1024px) {
  html body .mezzo-whatsapp-popup,
  html body .mezzo-whatsapp-popup.is-open {
    align-items: flex-start !important;
    justify-content: center !important;
    overflow-y: auto !important;
  }

  html body .mezzo-whatsapp-popup-dialog {
    max-width: calc(100vw - 4rem) !important;
    max-height: calc(100vh - 4rem) !important;
    max-height: calc(100dvh - 4rem) !important;
  }
}

@media (max-width: 767px) {
  html body .site-header {
    width: 100% !important;
    max-width: 100vw !important;
  }

  html body .mobile-panel,
  html body .mobile-panel.open {
    top: 6.4rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    max-height: calc(100vh - 6.4rem) !important;
    max-height: calc(100dvh - 6.4rem) !important;
    overflow-y: auto !important;
  }

  html body .mezzo-whatsapp-popup,
  html body .mezzo-whatsapp-popup.is-open {
    padding: 1.2rem !important;
    padding-top: calc(1.2rem + env(safe-area-inset-top, 0px)) !important;
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  html body .mezzo-whatsapp-popup-dialog {
    max-width: calc(100vw - 2.4rem) !important;
    width: 100% !important;
    max-height: calc(100vh - 2.4rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
    max-height: calc(100dvh - 2.4rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
    overflow-y: auto !important;
  }

  html body .mezzo-whatsapp-popup-form input,
  html body .mezzo-whatsapp-popup-form select,
  html body .mezzo-whatsapp-popup-form textarea,
  html body .mezzo-whatsapp-popup-form button {
    max-width: 100% !important;
  }

  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: calc(1rem + env(safe-area-inset-right, 0px)) !important;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 420px) {
  html body .mezzo-social-float .mezzo-social-float-link,
  html body .mezzo-social-float a.mezzo-social-float-link,
  html body .mezzo-social-float button.mezzo-social-float-link {
    width: 4.8rem !important;
    height: 4.8rem !important;
    min-width: 4.8rem !important;
    min-height: 4.8rem !important;
    border-radius: 1.15rem !important;
  }

  html body .mezzo-social-float .mezzo-social-icon {
    width: 2.1rem !important;
    height: 2.1rem !important;
    flex-basis: 2.1rem !important;
  }

  html body .mezzo-whatsapp-popup-head {
    padding-right: 5.3rem !important;
  }

  html body .mezzo-whatsapp-popup-head h2 {
    font-size: clamp(2.4rem, 8.2vw, 3.2rem) !important;
    line-height: 1.08 !important;
  }

  html body .mezzo-whatsapp-popup-head p {
    font-size: 1.38rem !important;
    line-height: 1.5 !important;
  }

  html body .mezzo-whatsapp-popup-form .mezzo-home-field label {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 340px) {
  html body .brand-logo {
    width: min(15rem, 48vw) !important;
  }

  html body .mobile-toggle {
    right: 1rem !important;
    width: 4rem !important;
    height: 4rem !important;
  }

  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: calc(0.7rem + env(safe-area-inset-right, 0px)) !important;
    bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px)) !important;
    gap: 0.55rem !important;
  }

  html body .mezzo-social-float .mezzo-social-float-link,
  html body .mezzo-social-float a.mezzo-social-float-link,
  html body .mezzo-social-float button.mezzo-social-float-link {
    width: 4.4rem !important;
    height: 4.4rem !important;
    min-width: 4.4rem !important;
    min-height: 4.4rem !important;
  }

  html body .mezzo-whatsapp-popup,
  html body .mezzo-whatsapp-popup.is-open {
    padding: 0.8rem !important;
  }

  html body .mezzo-whatsapp-popup-dialog {
    max-width: calc(100vw - 1.6rem) !important;
    max-height: calc(100vh - 1.6rem) !important;
    max-height: calc(100dvh - 1.6rem) !important;
    padding: 1.35rem !important;
    border-radius: 1.6rem !important;
  }

  html body .mezzo-whatsapp-popup-close {
    top: 0.65rem !important;
    right: 0.65rem !important;
    width: 4.6rem !important;
    height: 4.6rem !important;
    min-width: 4.6rem !important;
    min-height: 4.6rem !important;
    font-size: 3.1rem !important;
  }
}


/* =========================================================
   V11 PATCH: restore global sticky/fixed header behavior
   Ensures header stays visible while scrolling on desktop, tablet,
   medium mobile and small mobile. Overrides older inline sticky rules.
   ========================================================= */
html {
  scroll-padding-top: 9.2rem !important;
}

html body .site-header,
html body .site-header.scrolled,
html body .site-header.header-on-hero,
html body:not(.home):not(.front-page) .site-header,
html body:not(.home):not(.front-page) .site-header.header-on-hero {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 8.6rem !important;
  margin: 0 !important;
  z-index: 100000 !important;
  transform: none !important;
  will-change: auto !important;
}

html body.admin-bar .site-header,
html body.admin-bar .site-header.scrolled,
html body.admin-bar .site-header.header-on-hero {
  top: 32px !important;
}

html body .mobile-panel,
html body .mobile-panel.open,
html body .mobile-panel.is-open {
  position: fixed !important;
  z-index: 99999 !important;
}

@media (max-width: 1080px) {
  html body .site-header,
  html body .site-header.scrolled,
  html body .site-header.header-on-hero {
    min-height: 7.8rem !important;
  }
  html {
    scroll-padding-top: 8.4rem !important;
  }
}

@media (max-width: 782px) {
  html body.admin-bar .site-header,
  html body.admin-bar .site-header.scrolled,
  html body.admin-bar .site-header.header-on-hero {
    top: 46px !important;
  }
}

@media (max-width: 760px) {
  html body .site-header,
  html body .site-header.scrolled,
  html body .site-header.header-on-hero {
    min-height: 7.2rem !important;
  }
  html {
    scroll-padding-top: 7.8rem !important;
  }
}

@media (max-width: 380px) {
  html body .site-header,
  html body .site-header.scrolled,
  html body .site-header.header-on-hero {
    min-height: 7rem !important;
  }
}

/* V12 fix: keep the last floating social button 50px from bottom and 10px from right on all devices */
html body .mezzo-social-float,
html body footer ~ .mezzo-social-float {
  position: fixed !important;
  right: 10px !important;
  bottom: 50px !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  z-index: 2147482000 !important;
}

@media (max-width: 1024px) {
  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: 10px !important;
    bottom: 50px !important;
  }
}

@media (max-width: 767px) {
  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: 10px !important;
    bottom: 50px !important;
  }
}

@media (max-width: 420px) {
  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: 10px !important;
    bottom: 50px !important;
  }
}

@media (max-width: 340px) {
  html body .mezzo-social-float,
  html body footer ~ .mezzo-social-float {
    right: 10px !important;
    bottom: 50px !important;
  }
}

/* =========================================================
   V13 PATCH: keep front-end header flush to the top edge
   Removes WordPress admin-bar top offset so the header does not
   appear pushed down during responsive testing while logged in.
   ========================================================= */
html body.admin-bar .site-header,
html body.admin-bar .site-header.scrolled,
html body.admin-bar .site-header.header-on-hero,
html body.admin-bar:not(.home):not(.front-page) .site-header,
html body.admin-bar:not(.home):not(.front-page) .site-header.header-on-hero,
html body .site-header,
html body .site-header.scrolled,
html body .site-header.header-on-hero {
  position: fixed !important;
  top: 0 !important;
  inset-block-start: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin-top: 0 !important;
  transform: none !important;
  z-index: 2147481000 !important;
}

@media (max-width: 782px) {
  html body.admin-bar .site-header,
  html body.admin-bar .site-header.scrolled,
  html body.admin-bar .site-header.header-on-hero {
    top: 0 !important;
    inset-block-start: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 760px) {
  html body.admin-bar .site-header,
  html body.admin-bar .site-header.scrolled,
  html body.admin-bar .site-header.header-on-hero,
  html body .site-header,
  html body .site-header.scrolled,
  html body .site-header.header-on-hero {
    top: 0 !important;
    inset-block-start: 0 !important;
    margin-top: 0 !important;
  }

  html body .mobile-panel,
  html body .mobile-panel.open,
  html body .mobile-panel.is-open {
    top: 7.2rem !important;
  }
}

/* =========================================================
   V14 PATCH: force floating WhatsApp / FB / IG visible
   Keeps the vertical social buttons fixed on top of all page sections,
   including footer and mobile/tablet responsive views.
   ========================================================= */
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float,
html body:not(.mezzo-wa-popup-lock) footer ~ .mezzo-social-float {
  position: fixed !important;
  right: 10px !important;
  bottom: calc(50px + env(safe-area-inset-bottom, 0px)) !important;
  top: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  z-index: 2147483640 !important;
  isolation: isolate !important;
}

html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-float-link,
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float a.mezzo-social-float-link,
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float button.mezzo-social-float-link {
  position: relative !important;
  inset: auto !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  border: 0 !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
  z-index: 2147483641 !important;
}

html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-icon {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  flex: 0 0 22px !important;
  color: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-whatsapp,
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float button.mezzo-social-whatsapp,
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-whatsapp:hover,
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float button.mezzo-social-whatsapp:hover {
  background: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
  background-color: var(--c-whatsapp, var(--c-wa, #25D366)) !important;
}

html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-facebook,
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-facebook:hover {
  background: #1877F2 !important;
  background-color: #1877F2 !important;
}

html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-instagram,
html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-instagram:hover {
  background: linear-gradient(135deg, #F58529 0%, #FEDA77 20%, #DD2A7B 52%, #8134AF 78%, #515BD4 100%) !important;
}

html body.mezzo-wa-popup-lock .mezzo-social-float,
html body.mezzo-wa-popup-lock footer ~ .mezzo-social-float {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  html body:not(.mezzo-wa-popup-lock) .mezzo-social-float,
  html body:not(.mezzo-wa-popup-lock) footer ~ .mezzo-social-float {
    right: 10px !important;
    bottom: calc(50px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 767px) {
  html body:not(.mezzo-wa-popup-lock) .mezzo-social-float,
  html body:not(.mezzo-wa-popup-lock) footer ~ .mezzo-social-float {
    right: 10px !important;
    bottom: calc(50px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 8px !important;
  }

  html body:not(.mezzo-wa-popup-lock) .mezzo-social-float .mezzo-social-float-link,
  html body:not(.mezzo-wa-popup-lock) .mezzo-social-float a.mezzo-social-float-link,
  html body:not(.mezzo-wa-popup-lock) .mezzo-social-float button.mezzo-social-float-link {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
  }
}

/* V15: Header translucent background refinement
   Make the fixed header feel lighter while keeping logo, language switcher,
   hamburger/menu and CTA fully readable. Do not use opacity on the whole
   header because that would fade the content too. */
.site-header,
.site-header.scrolled,
.site-header.header-on-hero,
body.admin-bar .site-header,
body:not(.home):not(.front-page) .site-header,
body:not(.home):not(.front-page) .site-header.header-on-hero {
  background: rgba(255, 248, 241, 0.78) !important;
  background-color: rgba(255, 248, 241, 0.78) !important;
  backdrop-filter: blur(18px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(135%) !important;
  border-bottom: 1px solid rgba(222, 192, 154, 0.42) !important;
  box-shadow: 0 10px 28px rgba(43, 23, 15, 0.06) !important;
  opacity: 1 !important;
}

.site-header.scrolled {
  background: rgba(255, 248, 241, 0.86) !important;
  background-color: rgba(255, 248, 241, 0.86) !important;
  box-shadow: 0 12px 30px rgba(43, 23, 15, 0.09) !important;
}

@media (max-width: 1080px) {
  .site-header,
  .site-header.scrolled,
  .site-header.header-on-hero,
  body.admin-bar .site-header,
  body:not(.home):not(.front-page) .site-header,
  body:not(.home):not(.front-page) .site-header.header-on-hero {
    background: rgba(255, 248, 241, 0.82) !important;
    background-color: rgba(255, 248, 241, 0.82) !important;
    backdrop-filter: blur(18px) saturate(135%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(135%) !important;
  }
}

@media (max-width: 480px) {
  .site-header,
  .site-header.scrolled,
  .site-header.header-on-hero,
  body.admin-bar .site-header,
  body:not(.home):not(.front-page) .site-header,
  body:not(.home):not(.front-page) .site-header.header-on-hero {
    background: rgba(255, 248, 241, 0.84) !important;
    background-color: rgba(255, 248, 241, 0.84) !important;
  }
}

/* =========================================================
   V16 PATCH: keep hero text below translucent fixed header
   The header is fixed/transparent, so the first hero line must start
   after the navigation area on every screen size.
   ========================================================= */
html body.home .hero,
html body.front-page .hero,
html body.home .mz-hero,
html body.front-page .mz-hero {
  padding-top: 15rem !important;
}

html body.home .hero .hero-grid,
html body.front-page .hero .hero-grid,
html body.home .mz-hero .hero-grid,
html body.front-page .mz-hero .hero-grid {
  align-items: center;
}

@media (max-width: 1080px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.home .mz-hero,
  html body.front-page .mz-hero {
    padding-top: 12.8rem !important;
  }
}

@media (max-width: 760px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.home .mz-hero,
  html body.front-page .mz-hero {
    padding-top: 9.6rem !important;
  }
}

@media (max-width: 420px) {
  html body.home .hero,
  html body.front-page .hero,
  html body.home .mz-hero,
  html body.front-page .mz-hero {
    padding-top: 9.2rem !important;
  }
}

/* V20 — Pricing CTA centered across the full section */
#sec-pricing .mezzo-pricing-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: clamp(2.4rem, 4vw, 4.8rem) auto 0;
  text-align: center;
}

#sec-pricing .mezzo-pricing-action .btn {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  #sec-pricing .mezzo-pricing-action {
    margin-top: clamp(2rem, 4vw, 3.6rem);
  }
}

@media (max-width: 640px) {
  #sec-pricing .mezzo-pricing-action {
    padding-inline: 1.2rem;
  }

  #sec-pricing .mezzo-pricing-action .btn {
    width: min(100%, 34rem);
    justify-content: center;
  }
}

/* FINAL PATCH — Happy Customers Google review screenshots from Customizer */
html body .happy-redesign .google-review-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 2.4vw, 2.4rem);
  min-width: 0;
}

html body .happy-redesign .google-review-image-card {
  min-height: 0;
  padding: 0 !important;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(222,192,154,0.82);
  border-radius: 2.2rem;
  overflow: hidden;
}

html body .happy-redesign .google-review-image-card::before {
  content: none !important;
  display: none !important;
}

html body .happy-redesign .google-review-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  background: #fff;
}

html body .happy-redesign .google-review-action {
  display: flex;
  justify-content: center;
  width: 100%;
}

html body .happy-redesign .google-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.4rem;
  padding: 1.45rem 2.8rem;
  border-radius: 999px;
  text-align: center;
  white-space: normal;
}

@media (max-width: 1024px) {
  html body .happy-redesign .google-review-panel {
    gap: 1.8rem;
  }
}

@media (max-width: 767px) {
  html body .happy-redesign .google-review-image-card {
    border-radius: 1.8rem;
  }

  html body .happy-redesign .google-review-button {
    width: min(100%, 34rem);
    min-height: 5.2rem;
    padding-inline: 2rem;
  }
}

@media (max-width: 380px) {
  html body .happy-redesign .google-review-button {
    width: 100%;
  }
}

/* FINAL PATCH v22 — Google review uploaded images cover center-center without changing section layout */
html body .happy-redesign .google-review-grid {
  align-items: stretch;
}

html body .happy-redesign .google-review-image-card {
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  min-height: 25rem !important;
  height: 100% !important;
  aspect-ratio: 4 / 3;
  padding: 0 !important;
  background: rgba(255,255,255,0.92) !important;
  overflow: hidden !important;
}

html body .happy-redesign .google-review-image-card .google-review-photo,
html body .happy-redesign .google-review-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 25rem !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #fff !important;
  border: 0 !important;
}

@media (max-width: 1024px) {
  html body .happy-redesign .google-review-image-card {
    min-height: 24rem !important;
    aspect-ratio: 4 / 3;
  }

  html body .happy-redesign .google-review-image-card .google-review-photo,
  html body .happy-redesign .google-review-photo {
    min-height: 24rem !important;
  }
}

@media (max-width: 767px) {
  html body .happy-redesign .google-review-image-card {
    min-height: 23rem !important;
    aspect-ratio: 4 / 3;
  }

  html body .happy-redesign .google-review-image-card .google-review-photo,
  html body .happy-redesign .google-review-photo {
    min-height: 23rem !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 380px) {
  html body .happy-redesign .google-review-image-card {
    min-height: 21rem !important;
  }

  html body .happy-redesign .google-review-image-card .google-review-photo,
  html body .happy-redesign .google-review-photo {
    min-height: 21rem !important;
  }
}

/* =========================================================
   MEZZO PROJECT RESPONSIVE PATCH v40
   - Keep project cover/logo visible for old + new projects.
   - Reduce oversized single-project spacing on tablet/mobile.
   - Prevent project pages from horizontal overflow.
   ========================================================= */
html body.single-project,
html body.post-type-archive-project {
  overflow-x: hidden !important;
}

html body.single-project .mz-archive-hero {
  padding-top: clamp(8.8rem, 7vw, 11.2rem) !important;
  padding-bottom: clamp(5.2rem, 5vw, 7.2rem) !important;
  min-height: clamp(28rem, 28vw, 38rem) !important;
}

html body.single-project .mz-project-breadcrumb-wrap {
  padding: 2rem 1.8rem !important;
}

html body.single-project .mz-archive-main {
  padding-top: clamp(4rem, 4vw, 6.4rem) !important;
  padding-bottom: clamp(5.6rem, 5vw, 8rem) !important;
}

html body.single-project .mz-archive-container {
  width: min(118rem, calc(100% - 3.2rem)) !important;
  max-width: 118rem !important;
}

html body.single-project .mz-single-cover {
  width: min(96rem, 100%) !important;
  max-width: 96rem !important;
  margin: 0 auto clamp(3.2rem, 4vw, 5.6rem) !important;
  border-radius: 2rem !important;
  overflow: hidden !important;
  border: 1px solid rgba(160, 82, 45, 0.18) !important;
  box-shadow: 0 1.6rem 4.4rem rgba(43, 23, 15, 0.12) !important;
}

html body.single-project .mz-single-cover img,
html body.single-project .mz-single-cover-trigger img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 72rem !important;
  object-fit: contain !important;
  object-position: center center !important;
}

html body.single-project .mz-archive-intro {
  margin-bottom: clamp(3rem, 4vw, 5.2rem) !important;
}

html body.single-project .mz-archive-intro h2 {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

html body.single-project .mz-archive-meta {
  justify-content: center !important;
  text-align: center !important;
}

@media (max-width: 1024px) {
  html body.single-project .mz-archive-hero {
    padding-top: 8.4rem !important;
    padding-bottom: 5.2rem !important;
    min-height: 30rem !important;
  }
  html body.single-project .mz-archive-container {
    width: min(100% - 3rem, 96rem) !important;
  }
  html body.single-project .mz-single-cover {
    border-radius: 1.8rem !important;
  }
}

@media (max-width: 767px) {
  html body.single-project .mz-archive-hero {
    padding: 7.4rem 1.6rem 4.6rem !important;
    min-height: 24rem !important;
  }
  html body.single-project .mz-archive-hero h1 {
    font-size: clamp(3.6rem, 12vw, 4.8rem) !important;
    line-height: 1.02 !important;
  }
  html body.single-project .mz-archive-hero p {
    font-size: 1.45rem !important;
    line-height: 1.65 !important;
  }
  html body.single-project .mz-project-breadcrumb-wrap {
    padding: 1.6rem 1.4rem !important;
  }
  html body.single-project .mz-project-breadcrumb {
    flex-wrap: wrap !important;
    row-gap: 0.6rem !important;
    font-size: 1.2rem !important;
  }
  html body.single-project .mz-archive-main {
    padding-top: 3.6rem !important;
  }
  html body.single-project .mz-archive-container {
    width: calc(100% - 2.4rem) !important;
  }
  html body.single-project .mz-single-cover {
    width: 100% !important;
    margin-bottom: 3.2rem !important;
    border-radius: 1.5rem !important;
  }
  html body.single-project .mz-archive-intro h2 {
    font-size: clamp(3.2rem, 10vw, 4.4rem) !important;
  }
  html body.single-project .mz-archive-meta {
    gap: 0.8rem !important;
  }
  html body.single-project .mz-archive-meta span {
    display: block !important;
    width: 100% !important;
  }
}

@media (max-width: 380px) {
  html body.single-project .mz-archive-hero {
    padding-top: 7rem !important;
    min-height: 22rem !important;
  }
  html body.single-project .mz-archive-container {
    width: calc(100% - 2rem) !important;
  }
}


/* =========================================================
   MEZZO PROJECT SPACING / LOGO SIZE / CONTRAST PATCH v41
   - Project archive + single project hero content starts lower below fixed header.
   - Single project cover/logo before category is limited to a neat 350x400 style.
   - Category eyebrow contrast fixed for desktop/tablet/mobile.
   ========================================================= */
html body.post-type-archive-project .mz-archive-hero,
html body.page-template-template-projects .mz-archive-hero,
html body.single-project .mz-archive-hero,
html body.single-project .mz-single-project-hero {
  padding-top: clamp(12rem, 8vw, 15rem) !important;
  padding-bottom: clamp(5.6rem, 5vw, 7.6rem) !important;
}

html body.post-type-archive-project .mz-archive-hero-inner,
html body.page-template-template-projects .mz-archive-hero-inner,
html body.single-project .mz-archive-hero-inner,
html body.single-project .mz-single-project-hero .mz-archive-hero-inner {
  padding-top: 1.2rem !important;
}

html body.post-type-archive-project .mz-archive-hero .mz-archive-eyebrow,
html body.page-template-template-projects .mz-archive-hero .mz-archive-eyebrow,
html body.single-project .mz-archive-hero .mz-archive-eyebrow,
html body.single-project .mz-single-project-hero .mz-archive-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.4rem !important;
  color: var(--c-gold, #c9a24d) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body.single-project .mz-single-cover,
html body.single-project .mz-single-logo-cover {
  width: min(35rem, 100%) !important;
  max-width: 35rem !important;
  min-height: 0 !important;
  max-height: 40rem !important;
  margin: 0 auto clamp(3.2rem, 4vw, 5.2rem) !important;
  border-radius: 1.6rem !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(160, 82, 45, 0.18) !important;
  box-shadow: 0 1.4rem 3.8rem rgba(43, 23, 15, 0.10) !important;
}

html body.single-project .mz-single-cover img,
html body.single-project .mz-single-logo-cover img,
html body.single-project .mz-single-cover-trigger img {
  display: block !important;
  width: 100% !important;
  max-width: 35rem !important;
  height: auto !important;
  max-height: 40rem !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
}

html body.single-project .mz-single-cover-trigger {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
}

html body.single-project .mz-archive-intro .mz-archive-eyebrow,
html body.single-project .mz-archive-main .mz-archive-eyebrow {
  color: var(--c-primary, #a0522d) !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  letter-spacing: 0.24rem !important;
  font-weight: 900 !important;
}

html body.single-project .mz-archive-intro h2,
html body.single-project .mz-archive-intro p,
html body.single-project .mz-archive-meta,
html body.single-project .mz-archive-meta span {
  opacity: 1 !important;
}

@media (max-width: 1024px) {
  html body.post-type-archive-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.single-project .mz-single-project-hero {
    padding-top: 11rem !important;
    padding-bottom: 5.6rem !important;
  }

  html body.single-project .mz-single-cover,
  html body.single-project .mz-single-logo-cover {
    width: min(34rem, 100%) !important;
    max-width: 34rem !important;
    max-height: 38rem !important;
    margin-bottom: 3.8rem !important;
  }

  html body.single-project .mz-single-cover img,
  html body.single-project .mz-single-logo-cover img,
  html body.single-project .mz-single-cover-trigger img {
    max-width: 34rem !important;
    max-height: 38rem !important;
  }
}

@media (max-width: 767px) {
  html body.post-type-archive-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.single-project .mz-single-project-hero {
    padding-top: 9.6rem !important;
    padding-bottom: 4.8rem !important;
    min-height: 25rem !important;
  }

  html body.post-type-archive-project .mz-archive-hero-inner,
  html body.page-template-template-projects .mz-archive-hero-inner,
  html body.single-project .mz-archive-hero-inner {
    padding-top: 0.8rem !important;
  }

  html body.single-project .mz-single-cover,
  html body.single-project .mz-single-logo-cover {
    width: min(30rem, 100%) !important;
    max-width: 30rem !important;
    max-height: 34rem !important;
    border-radius: 1.4rem !important;
    margin-bottom: 3rem !important;
  }

  html body.single-project .mz-single-cover img,
  html body.single-project .mz-single-logo-cover img,
  html body.single-project .mz-single-cover-trigger img {
    max-width: 30rem !important;
    max-height: 34rem !important;
  }

  html body.single-project .mz-archive-intro .mz-archive-eyebrow,
  html body.single-project .mz-archive-main .mz-archive-eyebrow {
    font-size: 1.1rem !important;
    letter-spacing: 0.18rem !important;
  }
}

@media (max-width: 380px) {
  html body.post-type-archive-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.single-project .mz-single-project-hero {
    padding-top: 9.2rem !important;
    padding-bottom: 4.4rem !important;
  }

  html body.single-project .mz-single-cover,
  html body.single-project .mz-single-logo-cover {
    width: min(28rem, 100%) !important;
    max-width: 28rem !important;
    max-height: 32rem !important;
  }

  html body.single-project .mz-single-cover img,
  html body.single-project .mz-single-logo-cover img,
  html body.single-project .mz-single-cover-trigger img {
    max-width: 28rem !important;
    max-height: 32rem !important;
  }
}

/* =========================================================
   MEZZO PROJECT RESPONSIVE QA PATCH v42
   - Keep project archive + single project text readable below fixed header.
   - Maintain standard hero spacing across desktop/tablet/mobile.
   - Keep single project logo/cover neat before category text.
   - Prevent project archive/single sections from horizontal overflow.
   ========================================================= */
html body.post-type-archive-project,
html body.page-template-template-projects,
html body.single-project {
  overflow-x: hidden !important;
}

html body.post-type-archive-project .mz-archive-hero,
html body.page-template-template-projects .mz-archive-hero,
html body.single-project .mz-archive-hero,
html body.single-project .mz-single-project-hero {
  box-sizing: border-box !important;
  width: 100% !important;
  padding-left: clamp(1.8rem, 4vw, 6.4rem) !important;
  padding-right: clamp(1.8rem, 4vw, 6.4rem) !important;
  padding-top: clamp(12.4rem, 8.4vw, 15.6rem) !important;
  padding-bottom: clamp(5.8rem, 5vw, 7.8rem) !important;
  min-height: clamp(33rem, 30vw, 44rem) !important;
  align-items: center !important;
}

html body.post-type-archive-project .mz-archive-hero-inner,
html body.page-template-template-projects .mz-archive-hero-inner,
html body.single-project .mz-archive-hero-inner,
html body.single-project .mz-single-project-hero .mz-archive-hero-inner {
  width: min(92rem, 100%) !important;
  max-width: 92rem !important;
  margin: 0 auto !important;
  padding-top: 0 !important;
  text-align: center !important;
}

html body.post-type-archive-project .mz-archive-eyebrow,
html body.page-template-template-projects .mz-archive-eyebrow,
html body.single-project .mz-archive-eyebrow {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body.post-type-archive-project .mz-archive-hero h1,
html body.page-template-template-projects .mz-archive-hero h1,
html body.single-project .mz-archive-hero h1,
html body.single-project .mz-single-project-hero h1 {
  width: min(88rem, 100%) !important;
  max-width: 88rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
}

html body.post-type-archive-project .mz-archive-hero p,
html body.page-template-template-projects .mz-archive-hero p,
html body.single-project .mz-archive-hero p,
html body.single-project .mz-single-project-hero p {
  width: min(72rem, 100%) !important;
  max-width: 72rem !important;
  overflow-wrap: anywhere !important;
}

html body.post-type-archive-project .mz-archive-main,
html body.page-template-template-projects .mz-archive-main,
html body.single-project .mz-archive-main {
  width: 100% !important;
  overflow: hidden !important;
}

html body.post-type-archive-project .mz-archive-container,
html body.page-template-template-projects .mz-archive-container,
html body.single-project .mz-archive-container {
  box-sizing: border-box !important;
  width: min(118rem, calc(100% - 4rem)) !important;
  max-width: 118rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body.post-type-archive-project .mz-archive-grid,
html body.page-template-template-projects .mz-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(2rem, 2.4vw, 3.2rem) !important;
  align-items: stretch !important;
}

html body.post-type-archive-project .mz-archive-card,
html body.page-template-template-projects .mz-archive-card {
  min-width: 0 !important;
  overflow: hidden !important;
}

html body.post-type-archive-project .mz-archive-img,
html body.page-template-template-projects .mz-archive-img {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

html body.post-type-archive-project .mz-archive-img img,
html body.page-template-template-projects .mz-archive-img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

html body.post-type-archive-project .mz-archive-content h3,
html body.page-template-template-projects .mz-archive-content h3,
html body.single-project .mz-archive-intro h2 {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

html body.single-project .mz-single-cover,
html body.single-project .mz-single-logo-cover {
  width: min(35rem, calc(100% - 2rem)) !important;
  max-width: 35rem !important;
  max-height: 40rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body.single-project .mz-single-cover img,
html body.single-project .mz-single-logo-cover img,
html body.single-project .mz-single-cover-trigger img {
  max-width: 35rem !important;
  max-height: 40rem !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

html body.single-project .mz-archive-intro .mz-archive-eyebrow,
html body.single-project .mz-archive-main .mz-archive-eyebrow {
  color: var(--c-primary, #a0522d) !important;
  -webkit-text-fill-color: var(--c-primary, #a0522d) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

@media (max-width: 1080px) {
  html body.post-type-archive-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.single-project .mz-single-project-hero {
    padding-top: 11.4rem !important;
    padding-bottom: 5.8rem !important;
    min-height: 32rem !important;
  }

  html body.post-type-archive-project .mz-archive-grid,
  html body.page-template-template-projects .mz-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  html body.post-type-archive-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.single-project .mz-single-project-hero {
    padding-top: 10rem !important;
    padding-bottom: 4.8rem !important;
    min-height: 26rem !important;
  }

  html body.post-type-archive-project .mz-archive-hero h1,
  html body.page-template-template-projects .mz-archive-hero h1,
  html body.single-project .mz-archive-hero h1,
  html body.single-project .mz-single-project-hero h1 {
    font-size: clamp(3.6rem, 11vw, 4.8rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03rem !important;
  }

  html body.post-type-archive-project .mz-archive-hero p,
  html body.page-template-template-projects .mz-archive-hero p,
  html body.single-project .mz-archive-hero p,
  html body.single-project .mz-single-project-hero p {
    font-size: 1.45rem !important;
    line-height: 1.65 !important;
  }

  html body.post-type-archive-project .mz-archive-container,
  html body.page-template-template-projects .mz-archive-container,
  html body.single-project .mz-archive-container {
    width: calc(100% - 2.4rem) !important;
  }

  html body.post-type-archive-project .mz-archive-grid,
  html body.page-template-template-projects .mz-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 2.4rem !important;
  }

  html body.single-project .mz-single-cover,
  html body.single-project .mz-single-logo-cover {
    width: min(30rem, 100%) !important;
    max-width: 30rem !important;
    max-height: 34rem !important;
  }

  html body.single-project .mz-single-cover img,
  html body.single-project .mz-single-logo-cover img,
  html body.single-project .mz-single-cover-trigger img {
    max-width: 30rem !important;
    max-height: 34rem !important;
  }
}

@media (max-width: 380px) {
  html body.post-type-archive-project .mz-archive-hero,
  html body.page-template-template-projects .mz-archive-hero,
  html body.single-project .mz-archive-hero,
  html body.single-project .mz-single-project-hero {
    padding-top: 9.4rem !important;
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
    min-height: 24rem !important;
  }

  html body.post-type-archive-project .mz-archive-container,
  html body.page-template-template-projects .mz-archive-container,
  html body.single-project .mz-archive-container {
    width: calc(100% - 2rem) !important;
  }

  html body.single-project .mz-single-cover,
  html body.single-project .mz-single-logo-cover {
    width: min(28rem, 100%) !important;
    max-width: 28rem !important;
    max-height: 32rem !important;
  }
}

/* =========================================================
   MEZZO PROJECT ARCHIVE CONTRAST PATCH v43
   Purpose: make Portfolio / archive intro eyebrow visible on white background.
   Search remark: MEZZO PROJECT ARCHIVE CONTRAST PATCH v43
   ========================================================= */
html body.post-type-archive-project .mz-archive-intro .mz-archive-eyebrow,
html body.page-template-template-projects .mz-archive-intro .mz-archive-eyebrow,
html body.archive.tax-project_category .mz-archive-intro .mz-archive-eyebrow,
html body.post-type-archive-project .mz-archive-main .mz-archive-eyebrow,
html body.page-template-template-projects .mz-archive-main .mz-archive-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.2rem !important;
  width: auto !important;
  max-width: calc(100% - 2rem) !important;
  margin: 0 auto 1.4rem !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--c-primary, #a0522d) !important;
  -webkit-text-fill-color: var(--c-primary, #a0522d) !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  font-family: var(--font-body, Raleway, sans-serif) !important;
  font-size: clamp(1.1rem, 0.9vw, 1.3rem) !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  overflow-wrap: anywhere !important;
}

html body.post-type-archive-project .mz-archive-intro .mz-archive-eyebrow::before,
html body.page-template-template-projects .mz-archive-intro .mz-archive-eyebrow::before,
html body.archive.tax-project_category .mz-archive-intro .mz-archive-eyebrow::before,
html body.post-type-archive-project .mz-archive-main .mz-archive-eyebrow::before,
html body.page-template-template-projects .mz-archive-main .mz-archive-eyebrow::before {
  content: "" !important;
  display: inline-block !important;
  width: 4.2rem !important;
  height: 1px !important;
  flex: 0 0 4.2rem !important;
  background: var(--c-primary, #a0522d) !important;
  opacity: 0.75 !important;
}

html body.post-type-archive-project .mz-archive-intro h2,
html body.page-template-template-projects .mz-archive-intro h2,
html body.archive.tax-project_category .mz-archive-intro h2 {
  color: var(--c-dark, #231815) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body.post-type-archive-project .mz-archive-intro p,
html body.page-template-template-projects .mz-archive-intro p,
html body.archive.tax-project_category .mz-archive-intro p {
  color: var(--text-muted, #5f5854) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 767px) {
  html body.post-type-archive-project .mz-archive-intro .mz-archive-eyebrow,
  html body.page-template-template-projects .mz-archive-intro .mz-archive-eyebrow,
  html body.archive.tax-project_category .mz-archive-intro .mz-archive-eyebrow,
  html body.post-type-archive-project .mz-archive-main .mz-archive-eyebrow,
  html body.page-template-template-projects .mz-archive-main .mz-archive-eyebrow {
    gap: 0.8rem !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.22em !important;
    line-height: 1.4 !important;
  }

  html body.post-type-archive-project .mz-archive-intro .mz-archive-eyebrow::before,
  html body.page-template-template-projects .mz-archive-intro .mz-archive-eyebrow::before,
  html body.archive.tax-project_category .mz-archive-intro .mz-archive-eyebrow::before,
  html body.post-type-archive-project .mz-archive-main .mz-archive-eyebrow::before,
  html body.page-template-template-projects .mz-archive-main .mz-archive-eyebrow::before {
    width: 2.8rem !important;
    flex-basis: 2.8rem !important;
  }
}
