    /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black: #1A1A1A;
      --white: #FFFFFF;
      --gold: #C8A96E;
      --gold-dark: #B8955A;
      --cream: #F7F4F0;
      --gray-light: #E8E4E0;
      --gray-text: #6B6B6B;
      --font-heading: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Inter', -apple-system, sans-serif;
    }

    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    body {
      font-family: var(--font-body);
      color: var(--black);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; transition: color 0.3s; }
    ul { list-style: none; }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes revealFallback {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal.fallback-animate {
      animation: revealFallback 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; }

    .section-label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-heading {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 20px;
    }

    .section-subheading {
      font-size: 1.05rem;
      color: var(--gray-text);
      max-width: 600px;
      line-height: 1.7;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      border: 2px solid transparent;
      letter-spacing: 0.5px;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }
    .btn-gold:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200, 169, 110, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--black);
      border-color: var(--black);
    }
    .btn-outline:hover {
      background: var(--black);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.4);
    }
    .btn-outline-white:hover {
      background: var(--white);
      color: var(--black);
      transform: translateY(-2px);
    }

    .btn-gold-large {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
      padding: 18px 48px;
      font-size: 1rem;
    }
    .btn-gold-large:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(200, 169, 110, 0.4);
    }

    /* ===== UTILITY BAR (top announcement strip) ===== */
    .util-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1001;
      background: #000;
      color: rgba(255,255,255,0.85);
      font-family: var(--font-body);
      font-size: 0.78rem;
      letter-spacing: 0.2px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(200,169,110,0.18);
    }
    .util-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .util-phone {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--white);
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.3px;
      white-space: nowrap;
      transition: color 0.2s;
    }
    .util-phone svg { opacity: 0.88; }
    .util-phone:hover { color: var(--gold); }
    .util-info {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(255,255,255,0.78);
      white-space: nowrap;
      line-height: 1.3;
    }
    .util-info svg { opacity: 0.72; flex-shrink: 0; }
    .util-lang {
      color: var(--gold);
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* ===== NAV ===== */
    .nav {
      position: fixed;
      top: 36px;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(18px) saturate(180%);
      -webkit-backdrop-filter: blur(18px) saturate(180%);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
      padding: 12px 0;
    }
    .nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .nav-logo img {
      height: 60px;
      width: auto;
      transition: height 0.3s;
    }
    .nav.scrolled .nav-logo img { height: 50px; }
    .nav-logo-name { display: none; }
    /* nav-logo-name hidden — image already contains brand text */

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
    }
    .nav-links a {
      font-size: 0.83rem;
      font-weight: 500;
      color: var(--black);
      position: relative;
      letter-spacing: 0.2px;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover::after { width: 100%; }

    .nav-phone {
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--black);
      letter-spacing: 0.3px;
      white-space: nowrap;
    }
    .nav-phone:hover { color: var(--gold); }

    .nav-cta {
      padding: 10px 22px !important;
      font-size: 0.8rem !important;
      white-space: nowrap;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--black);
      transition: all 0.3s;
      display: block;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--white);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 28px;
      padding: 96px 20px 48px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .mobile-menu.open { display: flex; opacity: 1; }
    .mobile-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: 100%;
    }
    .mobile-section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .mobile-menu a {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--black);
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .btn { margin-top: 16px; }

    /* Mobile section CTA group (phone + Get Free Estimate at bottom of mobile menu) */
    .mobile-section-cta {
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
      align-items: center !important;
      margin-top: 24px;
      padding-top: 28px;
      border-top: 1px solid rgba(0,0,0,0.08);
      width: 80%;
      max-width: 320px;
    }
    .mobile-phone {
      display: inline-flex !important;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body) !important;
      font-size: 1.25rem !important;
      font-weight: 700 !important;
      color: var(--black) !important;
      padding: 8px 0;
    }
    .mobile-phone svg { color: var(--gold); }
    .mobile-section-cta .btn {
      width: 100%;
      margin-top: 0 !important;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: auto;
      display: flex;
      align-items: center;
      padding-top: 132px;
      padding-bottom: 84px;
      background:
        radial-gradient(118% 88% at 93% 2%, rgba(200,169,110,0.13) 0%, rgba(200,169,110,0) 56%),
        linear-gradient(158deg, #FFFFFF 0%, #FBF8F3 50%, #F3EBDD 100%);
      position: relative;
      overflow: hidden;
    }
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      overflow: visible;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 44px 46px 46px;
      background: linear-gradient(178deg, rgba(255,255,255,0.82) 0%, rgba(247,244,240,0.66) 100%);
      border: 1px solid rgba(200,169,110,0.22);
      border-left: 3px solid var(--gold);
      border-radius: 6px;
      box-shadow: 0 30px 72px -28px rgba(26,26,26,0.20);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .hero-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: inline-block;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      color: var(--black);
      margin-bottom: 24px;
      line-height: 1.1;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 1.08rem;
      color: var(--gray-text);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 480px;
    }

    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

    .hero-bg-logo {
      display: none;
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 520px;
      height: 520px;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 0;
    }
    .hero-bg-logo img {
      width: 100%;
      height: auto;
      opacity: 0.07;
      filter: grayscale(1);
    }

    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * {
      opacity: 0;
      animation: heroFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.35s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.5s; }

    .hero-image {
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
      border-radius: 0;
      /* bleed to the right edge of the viewport */
      margin-right: calc(((100vw - 100%) / -2) + var(--container-pad, 0px));
      clip-path: inset(0 0 0 0);
    }
    @keyframes kenBurns {
      0%   { transform: scale(1)    translateX(0)    translateY(0); }
      25%  { transform: scale(1.06) translateX(-1%)  translateY(-1%); }
      50%  { transform: scale(1.1)  translateX(1%)   translateY(1%); }
      75%  { transform: scale(1.06) translateX(-0.5%)translateY(0.5%); }
      100% { transform: scale(1)    translateX(0)    translateY(0); }
    }
    .hero-image img {
      width: 100%;
      height: 580px;
      object-fit: cover;
      animation: kenBurns 14s ease-in-out infinite;
      transform-origin: center center;
    }

    /* Trust Bar */
    .trust-bar {
      background: var(--cream);
      border-top: 1px solid var(--gray-light);
    }
    .trust-bar .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      padding: 22px 40px;
      flex-wrap: wrap;
    }
    .trust-item {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--black);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .trust-item span { font-size: 1.1rem; }

    /* ===== SERVICES ===== */
    .services {
      background: var(--black);
      padding: 120px 0;
      color: var(--white);
    }
    .services .section-label { color: var(--gold); }
    .services .section-heading { color: var(--white); }
    .services .section-subheading { color: rgba(255,255,255,0.6); }

    .services-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .services-header .section-subheading { margin: 0 auto; }

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

    .service-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .service-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .service-card:hover .service-card-img { transform: scale(1.05); }

    .service-card-img-wrap { overflow: hidden; }

    .service-card-body { padding: 24px; }

    .service-card h3 {
      font-size: 1.35rem;
      margin-bottom: 8px;
      color: var(--white);
      font-weight: 500;
    }

    .service-card p {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    /* Center orphan card in last row */
    .services-grid .service-card:last-child:nth-child(3n+1) {
      grid-column: 2;
    }

    /* ===== MOSAIC TILE CATALOG ===== */
    .mosaic-catalog { padding: 120px 0; }
    .mosaic-catalog .services-header { margin-bottom: 56px; }
    .mosaic-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .mosaic-card {
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-light);
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mosaic-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.10);
      border-color: var(--gold);
    }
    .mosaic-card-img-wrap {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #1a1a1a;
      display: flex; align-items: center; justify-content: center;
    }
    .mosaic-card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mosaic-card:hover .mosaic-card-img-wrap img { transform: scale(1.06); }
    .mosaic-card-placeholder {
      background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
      color: rgba(200, 169, 110, 0.4);
    }
    .mosaic-card-placeholder-icon {
      font-size: 4rem;
      letter-spacing: -10px;
      line-height: 1;
    }
    .mosaic-card-body {
      padding: 22px 24px 24px;
    }
    .mosaic-card-body h3 {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--black);
    }
    .mosaic-card-body p {
      font-size: 0.86rem;
      color: var(--gray-text);
      line-height: 1.6;
    }
    .mosaic-cta { text-align: center; margin-top: 48px; }

    /* ===== CITIES SERVED ===== */
    .cities-served {
      padding: 90px 0;
      background: var(--white);
      border-top: 1px solid var(--gray-light);
    }
    .cities-served .section-label { color: var(--gold); }
    .cities-header { text-align: center; margin-bottom: 36px; }
    .cities-header .section-subheading { margin: 0 auto; }
    .cities-list {
      max-width: 920px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 14px;
    }
    .city-chip {
      font-size: 0.82rem;
      color: var(--gray-text);
      background: var(--cream);
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid var(--gray-light);
      transition: all 0.2s;
    }
    .city-chip:hover {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }
    .cities-counties {
      text-align: center;
      margin-top: 22px;
      font-size: 0.85rem;
      color: var(--gray-text);
      font-style: italic;
    }

    /* ===== WHY CHOOSE US ===== */
    .why {
      background: var(--cream);
      padding: 120px 0;
    }
    .why-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .why-header .section-subheading { margin: 0 auto; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .why-card {
      background: var(--white);
      padding: 40px 32px;
      border-radius: 8px;
      text-align: center;
      border: 1px solid transparent;
      transition: all 0.35s;
    }
    .why-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    }

    .why-icon {
      font-size: 2rem;
      margin-bottom: 20px;
      display: block;
    }

    .why-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .why-card p {
      font-size: 0.9rem;
      color: var(--gray-text);
      line-height: 1.7;
    }

    /* ===== PROCESS ===== */
    .process {
      background: var(--white);
      padding: 120px 0;
    }
    .process-header {
      text-align: center;
      margin-bottom: 80px;
    }
    .process-header .section-subheading { margin: 0 auto; }

    .process-steps { max-width: 900px; margin: 0 auto; }

    .process-step {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 40px;
      align-items: start;
      padding: 40px 0;
      border-bottom: 1px solid var(--gray-light);
      position: relative;
    }
    .process-step:last-child { border-bottom: none; }

    .process-number {
      font-family: var(--font-heading);
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      opacity: 0.8;
    }

    .process-step h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .process-step p {
      font-size: 0.95rem;
      color: var(--gray-text);
      line-height: 1.75;
      max-width: 600px;
    }

    /* ===== GALLERY ===== */
    .gallery {
      background: var(--cream);
      padding: 120px 0;
    }
    .gallery-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .gallery-header .section-subheading { margin: 0 auto; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 260px;
      gap: 16px;
    }

    .gallery-item {
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 26, 26, 0.3) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover::after { opacity: 1; }

    /* Masonry-style spanning */
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 2; }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: var(--black);
      padding: 120px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 140%;
      height: 200%;
      background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-section h2 {
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      color: var(--white);
      margin-bottom: 20px;
      position: relative;
    }

    .cta-section p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 48px;
      position: relative;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .cta-section .btn { position: relative; }

    /* ===== CONTACT ===== */
    .contact {
      background: var(--white);
      padding: 120px 0;
    }
    .contact-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .contact-header .section-subheading { margin: 0 auto; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-form { display: flex; flex-direction: column; gap: 20px; }

    .form-group { display: flex; flex-direction: column; gap: 8px; }

    .form-group label {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--gray-text);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--font-body);
      font-size: 0.95rem;
      padding: 14px 18px;
      border: 1px solid var(--gray-light);
      border-radius: 4px;
      background: var(--cream);
      color: var(--black);
      transition: border-color 0.3s, box-shadow 0.3s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
    }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-submit {
      background: var(--gold);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 16px 40px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.35s;
      letter-spacing: 0.5px;
      width: fit-content;
    }
    .form-submit:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200, 169, 110, 0.35);
    }

    .contact-info { padding-top: 16px; }

    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 24px;
    }

    .contact-info p {
      font-size: 0.95rem;
      color: var(--gray-text);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .contact-detail-icon {
      width: 48px;
      height: 48px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .contact-detail-text { font-size: 0.95rem; color: var(--black); }
    .contact-detail-text span { display: block; font-size: 0.8rem; color: var(--gray-text); margin-bottom: 2px; }

    .contact-socials {
      display: flex;
      gap: 12px;
      margin-top: 40px;
    }

    .social-link {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      font-size: 1rem;
    }
    .social-link:hover {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--white);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--black);
      /* extra bottom room so the floating chat launcher never overlaps footer content */
      padding: 80px 0 calc(72px + env(safe-area-inset-bottom, 0px));
      color: var(--white);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .footer-col a {
      display: block;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
      padding: 5px 0;
      transition: color 0.2s, padding-left 0.2s;
    }
    .footer-col a:hover { color: var(--gold); padding-left: 4px; }
    .footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
    .footer-contact-item { margin-bottom: 10px; }
    .footer-contact-item strong { color: rgba(255,255,255,0.92); font-weight: 600; }
    .footer-contact-item a { display: inline; padding: 0; }
    .footer-contact-item .footer-phone { color: var(--gold); font-weight: 700; font-size: 1rem; }
    .footer-hours { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

    .footer-brand .footer-logo { display: inline-block; margin-bottom: 18px; }
    .footer-tagline {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
      margin-bottom: 22px;
      max-width: 280px;
    }
    .footer-cta {
      padding: 11px 28px;
      font-size: 0.82rem;
      letter-spacing: 0.5px;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo { display: inline-flex; align-items: center; }
    .footer-logo img {
      content: url('/images/logo.png');
      box-sizing: content-box;
      height: 72px;
      width: auto;
      max-width: 240px;
      object-fit: contain;
      background: #ffffff;
      padding: 14px 20px;
      border-radius: 14px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.30);
      opacity: 1;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .footer-logo:hover img { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.38); }

    .footer-links {
      display: flex;
      gap: 32px;
    }
    .footer-links a {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }

    .footer-phone {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--gold);
    }
    .footer-phone:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-address {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 28px;
      font-style: normal;
      text-align: center;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .footer-social {
      width: 34px; height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.55);
      transition: all 0.25s;
    }
    .footer-social:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(200,169,110,0.08);
    }

    .footer-copy {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
    }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* ===== REVIEWS ===== */
    .reviews { padding: 100px 0; background: var(--cream); }
    .reviews-header { text-align: center; margin-bottom: 60px; }
    .reviews-stars-total {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
    }
    .reviews-stars-total .stars { color: #F5C518; font-size: 1.4rem; letter-spacing: 2px; }
    .reviews-stars-total span { font-size: 0.9rem; color: var(--gray-text); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .review-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px 28px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
    .review-card-stars { color: #F5C518; font-size: 1rem; letter-spacing: 1px; }
    .review-card-text { font-size: 0.95rem; color: var(--gray-text); line-height: 1.7; flex: 1; font-style: italic; }
    .review-card-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 8px;
    }
    .review-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; color: white; font-size: 1rem;
      flex-shrink: 0;
    }
    .review-card-author-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
    .review-card-author-info span { font-size: 0.78rem; color: var(--gray-text); }
    .reviews-cta {
      text-align: center;
      margin-top: 48px;
    }
    .reviews-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.5px;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* ===== MAP ===== */
    .map-section { padding: 0; }
    .map-section iframe {
      width: 100%;
      height: 420px;
      border: none;
      display: block;
      filter: grayscale(20%) contrast(1.05);
    }

    /* ===== CHAT BUBBLE ===== */
    .chat-bubble {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
    }
    .chat-trigger {
      width: 60px; height: 60px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(200,169,110,0.5);
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
      outline: none;
    }
    .chat-trigger:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(200,169,110,0.6); }
    .chat-trigger svg { width: 26px; height: 26px; fill: white; }
    .chat-trigger .chat-close { display: none; }
    .chat-bubble.open .chat-trigger .chat-icon { display: none; }
    .chat-bubble.open .chat-trigger .chat-close { display: block; }
    .chat-panel {
      position: absolute;
      bottom: 76px;
      right: 0;
      width: 320px;
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
      overflow: hidden;
      opacity: 0;
      transform: translateY(16px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
      transform-origin: bottom right;
    }
    .chat-bubble.open .chat-panel {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: all;
    }
    .chat-panel-header {
      background: var(--black);
      padding: 20px 24px;
      color: white;
    }
    .chat-panel-header strong { display: block; font-size: 1rem; font-weight: 600; }
    .chat-panel-header span { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; display: block; }
    .chat-panel-header .online-dot {
      display: inline-block;
      width: 8px; height: 8px;
      background: #4CAF50;
      border-radius: 50%;
      margin-right: 6px;
      vertical-align: middle;
    }
    .chat-panel-body { padding: 20px 24px 24px; }
    .chat-panel-body p { font-size: 0.88rem; color: var(--gray-text); margin-bottom: 16px; line-height: 1.6; }
    .chat-field {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid var(--gray-light);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.88rem;
      margin-bottom: 10px;
      transition: border-color 0.2s;
      outline: none;
    }
    .chat-field:focus { border-color: var(--gold); }
    .chat-submit {
      width: 100%;
      background: var(--gold);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      font-family: var(--font-body);
      margin-top: 4px;
    }
    .chat-submit:hover { background: var(--gold-dark); }
    .chat-success {
      text-align: center;
      padding: 20px;
      display: none;
    }
    .chat-success .check { font-size: 2rem; margin-bottom: 8px; }
    .chat-success p { font-size: 0.9rem; color: var(--gray-text); margin: 0; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .container { padding: 0 24px; }
      .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .hero-content { padding: 38px 34px 40px; }
      .hero-sub { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .hero-image img, .hero-image video { height: 400px; }
      .hero-image { margin-right: 0; border-radius: 12px; overflow: hidden; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
      .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
      .gallery-item:nth-child(4) { grid-column: span 1; }
      .gallery-item:nth-child(6) { grid-column: span 1; }
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    .hero-mobile-logo { display: none; }

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

    /* Utility bar responsive collapse */
    @media (max-width: 1024px) {
      .util-info { display: none; }
      .util-bar { padding: 8px 0; }
      .util-bar .container { justify-content: space-between; gap: 16px; }
    }
    @media (max-width: 520px) {
      .util-lang { display: none; }
      .util-phone { font-size: 0.85rem; }
      .util-bar .container { justify-content: center; }
    }

    @media (max-width: 768px) {
      .reviews-grid { grid-template-columns: 1fr; }
      .map-section iframe { height: 300px; }
      .chat-panel { width: 290px; }
      .nav-links, .nav-phone-desktop { display: none; }
      .hamburger { display: flex; }
      .hero-mobile-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 28px;
        perspective: 600px;
      }
      .hero-mobile-logo img {
        height: 130px;
        width: auto;
      }
      .hero { padding-top: 104px; min-height: auto; padding-bottom: 44px; }
      .hero-content { padding: 26px 22px 30px; }
      .hero h1 { font-size: 2rem; }
      .hero-image {
        margin-right: 0 !important;
        border-radius: 12px;
        overflow: hidden;
      }
      .hero-image img,
      .hero-image video { height: 280px !important; border-radius: 12px; }
      .trust-bar .container { gap: 24px; padding: 16px 24px; }
      .trust-item { font-size: 0.8rem; }
      .services, .why, .process, .gallery, .cta-section, .contact, .mosaic-catalog, .cities-served { padding: 80px 0; }
      .services-grid { grid-template-columns: 1fr; }
      .mosaic-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
      }
      .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
      .process-step { grid-template-columns: 60px 1fr; gap: 24px; padding: 28px 0; }
      .process-number { font-size: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer { padding: 56px 0 calc(96px + env(safe-area-inset-bottom, 0px)); }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 32px;
      }
      .footer-brand { text-align: center; }
      .footer-brand .footer-logo { margin-left: auto; margin-right: auto; }
      .footer-tagline { margin-left: auto; margin-right: auto; }
      .footer-col h4 { margin-bottom: 12px; }
    }

    @media (max-width: 480px) {
      .hero-buttons { flex-direction: column; align-items: center; }
      .btn { width: 100%; justify-content: center; }
      .form-submit { width: 100%; }
    }

    /* ===== BLOG SECTION ===== */
    .blog-section {
      background: var(--white);
      padding: 120px 0;
    }
    .blog-section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .blog-section-header .section-subheading { margin: 0 auto; }

    .blog-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .blog-card {
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-light);
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .blog-card-img-wrap {
      overflow: hidden;
      height: 220px;
    }
    .blog-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }

    .blog-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-card-cat {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .blog-card-body h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-card-body p {
      font-size: 0.88rem;
      color: var(--gray-text);
      line-height: 1.6;
      flex: 1;
    }

    .blog-card-meta {
      font-size: 0.78rem;
      color: var(--gray-text);
      margin-top: 16px;
      padding-top: 12px;
      border-top: 1px solid var(--gray-light);
    }

    .blog-section-cta {
      text-align: center;
      margin-top: 48px;
    }

    @media (max-width: 1024px) {
      .blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .blog-section { padding: 80px 0; }
      .blog-cards-grid { grid-template-columns: 1fr; }
    }

    /* Social icon SVGs (inline) */
    .social-svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================================
   ADDED 2026-05-20: Multi-page architecture
   ============================================================ */

/* ===== DROPDOWN NAV ===== */
.nav-links { position: relative; }
.has-dropdown { position: relative; }
.has-dropdown > a::after,
.has-dropdown > .dropdown-trigger::after {
  content: '\25BE';
  font-size: 0.65rem;
  margin-left: 5px;
  opacity: 0.55;
  transition: transform 0.25s, opacity 0.25s;
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after,
.has-dropdown:hover > .dropdown-trigger::after,
.has-dropdown:focus-within > .dropdown-trigger::after {
  transform: rotate(180deg);
  opacity: 1;
}
/* Non-clickable dropdown trigger (used for "More" so it can't be confused with a real page link) */
.dropdown-trigger {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.2px;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  display: inline-block;
  padding: 4px 0;
  outline: none;
}
.dropdown-trigger:hover { color: var(--gold); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.14);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--white);
  border-left: 1px solid var(--gray-light);
  border-top: 1px solid var(--gray-light);
}
.dropdown-menu a {
  display: block;
  padding: 11px 24px;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--gold-dark);
  padding-left: 30px;
}
/* When nav is over-hero (transparent), dropdown still shows white card */
.nav:not(.scrolled) .dropdown-menu { color: var(--black); }
.nav:not(.scrolled) .dropdown-menu a { color: var(--black); }

/* Mobile menu accordion */
.mobile-section { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 14px; margin-top: 14px; }
.mobile-section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding: 0 8px;
}
.mobile-section a {
  font-size: 1rem !important;
  padding: 10px 8px !important;
  opacity: 0.85;
}

/* ===== SUBPAGE: PAGE HERO (smaller than homepage hero) ===== */
.page-hero {
  position: relative;
  padding: 176px 0 80px;
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero.has-image {
  padding: 236px 0 100px;
}
.page-hero.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}
.page-hero[data-bg="space-loft"]::before        { background-image: url('/images/space-loft.jpg'); }
.page-hero[data-bg="space-pool"]::before        { background-image: url('/images/space-pool.jpg'); }
.page-hero[data-bg="bath-hexagonal"]::before    { background-image: url('/images/bath-hexagonal.jpg'); }
.page-hero[data-bg="fixture-toilet"]::before    { background-image: url('/images/fixture-toilet.jpg'); }
.page-hero[data-bg="fixture-faucet"]::before    { background-image: url('/images/fixture-faucet.jpg'); }
.page-hero[data-bg="space-coworking"]::before   { background-image: url('/images/space-coworking.jpg'); }
.page-hero[data-bg="space-lobby"]::before       { background-image: url('/images/space-lobby.jpg'); }
/* Inline-background hero variant (set via style="--hero-bg: url(...)") */
.page-hero.has-inline-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

/* ===== PRODUCT GALLERY GRID ===== */
.product-gallery-section { padding: 56px 0 80px; background: var(--white); }
.product-gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
.product-gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.product-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #f4f1ec;
  border: 1px solid var(--gray-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  margin: 0;
}
.product-gallery-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.product-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.product-gallery-item:hover img { transform: scale(1.05); }

/* Catalog/spec-sheet modifier: portrait aspect, no crop, white pad — used when product photos are full catalog pages */
.product-gallery-grid.catalog { gap: 20px; }
.product-gallery-grid.catalog .product-gallery-item {
  aspect-ratio: 5 / 8;
  background: #ffffff;
}
.product-gallery-grid.catalog .product-gallery-item img {
  object-fit: contain;
  padding: 12px;
}
.product-gallery-grid.catalog .product-gallery-item:hover img { transform: none; }
.product-gallery-grid.catalog .product-gallery-item:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.10); }

/* ===== PRODUCT SPEC CATALOG (faucets + LED mirrors share this structure) ===== */
.catalog-section { padding: 64px 0 32px; background: var(--white); }
.catalog-section:nth-of-type(even) { background: var(--cream); }
.catalog-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.catalog-section-header .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 14px;
}
.catalog-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.catalog-section-header p { font-size: 1rem; color: var(--gray-text); line-height: 1.7; }

.faucet-product-grid,
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.faucet-card,
.product-spec-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.catalog-section:nth-of-type(even) .faucet-card,
.catalog-section:nth-of-type(even) .product-spec-card { background: var(--white); }
.faucet-card:hover,
.product-spec-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.faucet-card-img,
.product-spec-card-img {
  aspect-ratio: 1 / 1;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.faucet-card-img img,
.product-spec-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.faucet-card-body,
.product-spec-card-body {
  padding: 16px 18px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--gray-light);
}
.faucet-card-title,
.product-spec-card-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faucet-card-title h4,
.product-spec-card-title h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
  margin: 0;
}
.faucet-card-finish,
.product-spec-card-dim {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  color: var(--gray-text);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.product-spec-card-dim {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.6px;
}
.finish-swatch {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.finish-swatch.finish-pc { background: linear-gradient(135deg, #e5e7e9, #b8babd); }
.finish-swatch.finish-bn { background: linear-gradient(135deg, #b8b1a5, #8d877b); }
.finish-swatch.finish-mb { background: #1a1a1a; }
.finish-swatch.finish-sb { background: linear-gradient(135deg, #d4b07a, #a78656); }
.finish-swatch.finish-cw { background: #f6f4f0; }
.finish-swatch.finish-bg { background: linear-gradient(135deg, #e0c690, #b8995e); }
.faucet-card-spec,
.product-spec-card-spec {
  font-size: 0.7rem;
  color: var(--gray-text);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.product-spec-card-meta {
  font-size: 0.7rem;
  color: var(--gray-text);
  margin: 0;
  padding-top: 6px;
  border-top: 1px dashed var(--gray-light);
}
.product-spec-card-meta strong {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.72rem;
}

/* ===== BATHTUBS LIFESTYLE BANNER (mirrors original "Dive Into Luxury" spread) ===== */
.bathtub-lifestyle {
  padding: 56px 0 72px;        /* was 56 0 24 — more bottom gap before next section */
  background: var(--white);
  position: relative;
  z-index: 1;                  /* ensure stacking above any reveal artefacts */
}
.bathtub-lifestyle-frame {
  position: relative;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  max-width: 720px;
  background: #f4f1ec;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  isolation: isolate;           /* new stacking context — no bleed-through */
}
.bathtub-lifestyle-frame img {
  width: 100%;
  height: auto;
  max-height: 760px;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #f4f1ec;
  position: relative;
  z-index: 1;
}
.bathtub-lifestyle-frame figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 100px 36px 32px;     /* much more top padding → gradient has runway */
  background: linear-gradient(0deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.82) 35%,
    rgba(0,0,0,0.50) 65%,
    rgba(0,0,0,0.15) 90%,
    transparent 100%);
  color: var(--white);
  z-index: 2;                   /* always above the image */
  pointer-events: none;
}
.bathtub-lifestyle-eyebrow {
  display: block;
  font-size: 0.84rem;           /* was 0.72rem — readable on dark gradient */
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.bathtub-lifestyle-frame figcaption h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .bathtub-lifestyle { padding: 40px 0 56px; }
  .bathtub-lifestyle-frame { max-width: 540px; }
  .bathtub-lifestyle-frame img { aspect-ratio: 4 / 5; max-height: 640px; }
  .bathtub-lifestyle-frame figcaption { padding: 72px 22px 22px; }
  .bathtub-lifestyle-eyebrow { font-size: 0.78rem; letter-spacing: 3px; }
}
@media (max-width: 480px) {
  .bathtub-lifestyle-frame img { max-height: 540px; }
  .bathtub-lifestyle-frame figcaption { padding: 60px 18px 20px; }
}

/* ===== VANITY TOPS — CATALOG-STYLE SPEC TABLES (mirrors original /stone-tops/) ===== */
.vanity-section { padding: 72px 0 56px; }
.vanity-section:nth-of-type(even) { background: var(--cream); }
.vanity-section .catalog-section-header { margin-bottom: 36px; }

.vanity-images {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  margin: 0 auto 28px;
  max-width: 920px;
}
.vanity-image {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vanity-image img {
  width: 100%;
  /* Fixed height regardless of column width so both images line up bottom-to-bottom */
  height: clamp(180px, 22vw, 300px);
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  padding: 14px;
}
.vanity-image figcaption {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 10px 14px;
  border-top: 1px solid var(--gray-light);
  background: var(--cream);
  text-align: center;
}
.vanity-section:nth-of-type(even) .vanity-image { background: var(--white); }
.vanity-section:nth-of-type(even) .vanity-image figcaption { background: var(--white); }

/* Available-in finish chip row */
.finish-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 22px;
  flex-wrap: wrap;
}
.finish-row-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-text);
}
.finish-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--black);
}
.finish-chip .finish-swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.finish-swatch.finish-calacatta { background: linear-gradient(135deg, #fafafa 40%, #d6d6d6 60%, #f5f5f5 80%); }
.finish-swatch.finish-carrara   { background: linear-gradient(135deg, #f1f1ef 40%, #c8c9c4 70%, #ebebe8); }
.finish-swatch.finish-white     { background: #ffffff; border-color: rgba(0,0,0,0.25); }

/* Spec table — clean professional catalog style */
.spec-table-wrap {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.spec-table thead th {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 16px;
  white-space: nowrap;
}
.spec-table thead th:last-child { text-align: right; }
.spec-table tbody td {
  padding: 13px 16px;
  border-top: 1px solid var(--gray-light);
  color: var(--black);
  font-variant-numeric: tabular-nums;
}
.spec-table tbody tr:hover { background: var(--cream); }
.spec-table tbody tr:nth-child(even) { background: rgba(248, 244, 238, 0.4); }
.spec-table tbody tr:nth-child(even):hover { background: var(--cream); }
.spec-table-sku {
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}
.spec-table-price {
  font-weight: 700;
  color: var(--gold-dark);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .vanity-images { grid-template-columns: 1fr 1.2fr; gap: 20px; }
  .spec-table thead th, .spec-table tbody td { padding: 12px 12px; font-size: 0.88rem; }
}
@media (max-width: 768px) {
  .vanity-section { padding: 56px 0 40px; }
  .vanity-images { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .vanity-image img { height: clamp(200px, 50vw, 280px); padding: 12px; }
  .vanity-image figcaption { padding: 8px 12px; font-size: 0.68rem; }
  .finish-row { gap: 14px; margin-bottom: 18px; }
  .finish-row-label { font-size: 0.66rem; letter-spacing: 2px; }
  .finish-chip { font-size: 0.86rem; }
  .finish-chip .finish-swatch { width: 18px; height: 18px; }
  /* Allow horizontal scroll on small screens — catalog tables are dense */
  .spec-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .spec-table { min-width: 580px; }
  .spec-table thead th, .spec-table tbody td { padding: 11px 12px; font-size: 0.82rem; }
  .spec-table thead th { font-size: 0.66rem; letter-spacing: 1.5px; }
}
.faucet-card-price,
.product-spec-card-price {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  padding: 12px 0;
  letter-spacing: 0.5px;
}
.faucet-card-price-unit,
.product-spec-card-price-unit {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .faucet-product-grid,
  .product-spec-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 768px) {
  .catalog-section { padding: 48px 0 24px; }
  .faucet-product-grid,
  .product-spec-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
  .faucet-card-img,
  .product-spec-card-img { padding: 10px; }
  .faucet-card-body,
  .product-spec-card-body { padding: 12px 14px 10px; }
  .faucet-card-title h4,
  .product-spec-card-title h4 { font-size: 0.86rem; }
  .faucet-card-spec,
  .product-spec-card-spec { font-size: 0.66rem; }
  .faucet-card-price,
  .product-spec-card-price { font-size: 0.98rem; padding: 10px 0; }
}
@media (max-width: 420px) {
  .faucet-product-grid,
  .product-spec-grid { grid-template-columns: 1fr; gap: 14px; }
  .faucet-card,
  .product-spec-card { max-width: 320px; margin: 0 auto; width: 100%; }
}
/* On mobile, catalog cards need full width so the spec text stays readable */
@media (max-width: 768px) {
  .product-gallery-grid.catalog,
  .product-gallery-grid.cols-3.catalog,
  .product-gallery-grid.cols-4.catalog {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-gallery-grid.catalog .product-gallery-item { aspect-ratio: 5 / 7; }
}

/* ===== CABINET / SLAB / TILE SERIES CARD GRID ===== */
.cabinet-series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cabinet-series-card {
  display: block; background: var(--white);
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  text-decoration: none; color: inherit;
}
.cabinet-series-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.cabinet-series-img {
  aspect-ratio: 4 / 3; overflow: hidden; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
}
.cabinet-series-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.cabinet-series-card:hover .cabinet-series-img img { transform: scale(1.06); }
.cabinet-series-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.cabinet-series-body h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin: 0; }
.cabinet-series-body p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.55; margin: 0; }
.cabinet-series-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-top: 10px;
  transition: gap 0.25s;
}
.cabinet-series-card:hover .cabinet-series-link { gap: 12px; }

/* Cabinet/slab/tile DETAIL section */
.cabinet-series-detail, .tile-series-section { padding: 72px 0; background: var(--white); scroll-margin-top: 120px; }
.cabinet-series-detail:nth-of-type(even), .tile-series-section:nth-of-type(even) { background: var(--cream); }
.cabinet-series-detail-header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.cabinet-series-detail-header .eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-dark); display: block; margin-bottom: 12px;
}
.cabinet-series-detail-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600; margin-bottom: 12px;
}
.cabinet-series-detail-header p { font-size: 1rem; color: var(--gray-text); line-height: 1.7; }

/* ===== QUARTZ PATTERN CATALOG (on /countertops/quartz-slabs.html) ===== */
.quartz-quicknav {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin: 32px 0 56px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 10px;
}
.quartz-quicknav-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-dark);
  margin-right: 8px;
}
.quartz-quicknav a {
  display: inline-block; padding: 7px 16px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--black); text-decoration: none;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.quartz-quicknav a:hover {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.quartz-series-block {
  margin-bottom: 64px;
  scroll-margin-top: 160px;
}
.quartz-series-block:last-child { margin-bottom: 24px; }
.quartz-series-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gold);
}
.quartz-series-eyebrow {
  display: inline-block;
  background: var(--black); color: var(--white);
  padding: 4px 12px; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.quartz-series-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 600; margin: 0 0 8px; color: var(--black);
}
.quartz-series-header p {
  font-size: 0.96rem; line-height: 1.65; color: var(--gray-text);
  margin: 0; max-width: 820px;
}
.quartz-series-count {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .quartz-quicknav { padding: 14px 16px; gap: 6px; }
  .quartz-quicknav-label { width: 100%; text-align: center; margin: 0 0 4px; }
  .quartz-quicknav a { padding: 6px 12px; font-size: 0.76rem; }
  .quartz-series-block { margin-bottom: 48px; }
}

/* ===== GLASS MOSAIC SHOWROOM SAMPLES (on /wholesale-tile/glass-mosaic.html) ===== */
.showroom-samples {
  margin-top: 56px;
  padding: 32px;
  background: var(--cream);
  border-radius: 12px;
}
.showroom-samples-header {
  text-align: center; max-width: 720px; margin: 0 auto 32px;
}
.showroom-samples-header .eyebrow {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.showroom-samples-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600; margin: 0 0 12px; color: var(--black);
}
.showroom-samples-header p {
  font-size: 0.98rem; line-height: 1.65; color: var(--gray-text); margin: 0;
}
.showroom-samples-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.showroom-sample-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.showroom-sample-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.showroom-sample-img {
  aspect-ratio: 4 / 3; overflow: hidden; background: #f4f1ec;
}
.showroom-sample-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.showroom-sample-body {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.showroom-sample-sku {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold-dark);
}
.showroom-sample-code {
  font-weight: 700; font-size: 1rem; color: var(--black);
  letter-spacing: 0.4px;
}
.showroom-sample-color {
  font-size: 0.86rem; color: var(--gray-text);
}

/* ===== AQUALIFE / CABINET COLLECTION CATALOG ===== */
/* Brand intro strip below the Cabinets page hero */
.aqualife-intro {
  background: var(--cream);
  padding: 64px 0 56px;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.aqualife-intro-inner {
  max-width: 920px; margin: 0 auto; text-align: center;
}
.aqualife-intro-eyebrow {
  display: block; margin-bottom: 14px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-dark);
}
.aqualife-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600; margin-bottom: 16px; color: var(--black);
}
.aqualife-intro p {
  font-size: 1.02rem; line-height: 1.75; color: var(--gray-text);
  margin: 0 auto;
}
.aqualife-intro p + p { margin-top: 14px; }

/* Compact tabbed nav linking to each collection anchor */
.collection-quicknav {
  background: var(--white);
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-light);
  position: sticky; top: 96px; z-index: 60;
}
.collection-quicknav-inner {
  display: flex; flex-wrap: wrap; gap: 8px 6px;
  justify-content: center; align-items: center;
}
.collection-quicknav-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--gold-dark);
  margin-right: 14px;
}
.collection-quicknav a {
  display: inline-block; padding: 8px 18px;
  font-size: 0.84rem; font-weight: 600;
  color: var(--black); text-decoration: none;
  border: 1px solid var(--gray-light); border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.collection-quicknav a:hover {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}

/* Collection section — alternating cream/white, anchor offset for sticky nav */
.collection-section {
  padding: 84px 0 64px;
  background: var(--white);
  scroll-margin-top: 180px;
}
.collection-section:nth-of-type(even) { background: var(--cream); }

/* Split hero: portrait left, intro + finishes right */
.collection-hero {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 56px; align-items: center;
  margin-bottom: 48px;
}
.collection-hero-img {
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.collection-section:nth-of-type(even) .collection-hero-img { background: #f6f3ee; }
.collection-hero-img img {
  width: 100%; height: 100%; object-fit: contain;
}
.collection-hero-body { display: flex; flex-direction: column; gap: 16px; }
.collection-hero-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-dark);
}
.collection-hero-eyebrow .code {
  display: inline-block; margin-left: 10px; padding: 2px 9px;
  background: var(--black); color: var(--white); border-radius: 4px;
  font-size: 0.66rem; letter-spacing: 1.5px;
}
.collection-hero-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600; margin: 0; color: var(--black);
}
.collection-hero-tagline {
  font-size: 0.92rem; font-style: italic; color: var(--gold-dark);
  letter-spacing: 0.3px;
}
.collection-hero-body p {
  font-size: 1.01rem; line-height: 1.7; color: var(--gray-text); margin: 0;
}

/* Mirror + Top type pills shown under intro */
.collection-meta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 8px;
}
.collection-meta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 0.78rem; font-weight: 600;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 999px; color: var(--black);
}
.collection-section:nth-of-type(even) .collection-meta-pill { background: var(--cream); }
.collection-meta-pill .label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-text);
}

/* Cabinet finish swatches — extend existing palette */
.finish-swatch.finish-rock-grey            { background: linear-gradient(135deg, #8d8e90, #6c6e70); }
.finish-swatch.finish-navy-blue            { background: linear-gradient(135deg, #1f3a64, #122544); }
.finish-swatch.finish-plaid-grey-oak       { background: repeating-linear-gradient(90deg, #b4a48f 0 3px, #9a8b76 3px 6px); }
.finish-swatch.finish-brown-ebony          { background: linear-gradient(135deg, #8a4a25, #6b3618); }
.finish-swatch.finish-grey-marble-grain    { background: linear-gradient(135deg, #b6b6b3 30%, #7f7e7c 60%, #aaa9a6); }
.finish-swatch.finish-blackish-green-marble{ background: linear-gradient(135deg, #2a3a30, #1a2620 70%, #2a3a30); }
.finish-swatch.finish-white-marble-grain   { background: linear-gradient(135deg, #fafafa 30%, #d9d6cf 65%, #f4f1e9); }
.finish-swatch.finish-maple                { background: linear-gradient(135deg, #d4a36a, #b78146); }

/* Cabinet spec table — multi-line cells (model + dim + price stacked) */
.cabinet-spec-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.collection-section:nth-of-type(even) .cabinet-spec-wrap { background: var(--white); }
.cabinet-spec-table { width: 100%; border-collapse: collapse; }
.cabinet-spec-table thead th {
  background: var(--black); color: var(--white);
  padding: 16px 18px; text-align: left;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.cabinet-spec-table thead th:first-child { padding-left: 28px; }
.cabinet-spec-table thead th:last-child { text-align: right; padding-right: 28px; }
.cabinet-spec-table tbody td {
  padding: 18px 18px;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
  font-size: 0.92rem; color: var(--black);
}
.cabinet-spec-table tbody td:first-child { padding-left: 28px; }
.cabinet-spec-table tbody td:last-child { padding-right: 28px; text-align: right; }
.cabinet-spec-table tbody tr:last-child td { border-bottom: none; }
.cabinet-spec-table tbody tr:nth-child(even) { background: rgba(248, 244, 238, 0.5); }
.cabinet-spec-table tbody tr:hover { background: var(--cream); }
.cabinet-spec-size {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600; color: var(--black);
}
.cabinet-spec-part {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.4;
}
.cabinet-spec-part .model {
  font-weight: 700; font-size: 0.88rem; color: var(--black);
  letter-spacing: 0.5px;
}
.cabinet-spec-part .dim {
  font-size: 0.74rem; color: var(--gray-text);
}
.cabinet-spec-part .part-price {
  font-size: 0.8rem; color: var(--gold-dark); font-weight: 600;
  margin-top: 2px;
}
.cabinet-spec-fullset {
  font-family: var(--font-heading);
  font-size: 1.45rem; font-weight: 700; color: var(--gold-dark);
  white-space: nowrap;
}
.cabinet-spec-fullset .cents {
  font-size: 0.78rem; color: var(--gray-text); font-weight: 500;
  margin-left: 2px;
}

/* Optional upgrade banner below the spec table (Miami / Zurich) */
.cabinet-options-note {
  margin-top: 18px;
  padding: 14px 22px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 0.88rem; color: var(--gray-text);
}
.collection-section:nth-of-type(even) .cabinet-options-note { background: var(--white); border-left-color: var(--gold); }

/* Catalog detail strip — thumbnails of original catalog spreads */
.catalog-strip {
  margin-top: 44px;
}
.catalog-strip-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray-text); margin-bottom: 14px;
}
.catalog-strip-inner {
  display: flex; gap: 12px; overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.catalog-strip-inner::-webkit-scrollbar { height: 6px; }
.catalog-strip-inner::-webkit-scrollbar-thumb {
  background: var(--gold); border-radius: 3px;
}
.catalog-strip a {
  flex: 0 0 auto;
  display: block; width: 200px; aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--gray-light); border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.2s, transform 0.25s;
}
.catalog-strip a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.catalog-strip a img {
  width: 100%; height: 100%; object-fit: cover;
  background: var(--white);
}

/* LED Mirror options grid (small, below cabinet sections) */
.led-mirror-options {
  margin-top: 44px;
  padding: 28px 32px;
  background: var(--cream);
  border-radius: 12px;
}
.collection-section:nth-of-type(even) .led-mirror-options { background: var(--white); }
.led-mirror-options-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px; flex-wrap: wrap; gap: 8px;
}
.led-mirror-options-header h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  margin: 0;
}
.led-mirror-options-header p { font-size: 0.84rem; color: var(--gray-text); margin: 0; }
.led-mirror-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.led-mirror-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 0.86rem;
}
.led-mirror-item .model { font-weight: 700; color: var(--black); letter-spacing: 0.4px; }
.led-mirror-item .dim   { font-size: 0.72rem; color: var(--gray-text); }
.led-mirror-item .price { font-weight: 600; color: var(--gold-dark); margin-top: 2px; }

/* V-Series cards — reuse cabinet-series-grid pattern */
.v-series-section { padding: 84px 0; background: var(--white); }
.v-series-section:nth-of-type(even) { background: var(--cream); }

/* Lightbox-friendly inline image gallery for V-Series detail */
.v-series-detail-strip {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 22px;
}
.v-series-detail-strip img {
  width: 100%; height: auto; border-radius: 8px;
  border: 1px solid var(--gray-light);
  background: var(--white);
}

/* Responsive */
@media (max-width: 980px) {
  .collection-hero { grid-template-columns: 1fr; gap: 24px; }
  .collection-hero-img { max-width: 320px; margin: 0 auto; }
  .cabinet-spec-table tbody td { padding: 14px 12px; font-size: 0.85rem; }
  .cabinet-spec-table thead th { padding: 12px 12px; font-size: 0.62rem; letter-spacing: 1.8px; }
  .cabinet-spec-table thead th:first-child,
  .cabinet-spec-table tbody td:first-child { padding-left: 16px; }
  .cabinet-spec-table thead th:last-child,
  .cabinet-spec-table tbody td:last-child { padding-right: 16px; }
}
@media (max-width: 720px) {
  .collection-section { padding: 56px 0 40px; }
  .collection-quicknav { position: static; padding: 16px 0; }
  .collection-quicknav-label { width: 100%; text-align: center; margin: 0 0 10px; }
  .collection-quicknav a { padding: 6px 14px; font-size: 0.78rem; }
  .cabinet-spec-wrap { overflow-x: auto; }
  .cabinet-spec-table { min-width: 720px; }
  .led-mirror-options { padding: 22px 18px; }
}

/* ===== FAQ SECTION ===== */
.faq-section { padding: 80px 0 100px; background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--cream); border-radius: 10px;
  padding: 28px 32px; border-left: 3px solid var(--gold);
}
.faq-item h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: var(--black); }
.faq-item p { font-size: 0.98rem; color: var(--gray-text); line-height: 1.7; margin: 0; }

@media (max-width: 1024px) {
  .product-gallery-grid, .product-gallery-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .cabinet-series-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-gallery-grid, .product-gallery-grid.cols-3, .product-gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-gallery-grid.cols-2 { grid-template-columns: 1fr; }
  .cabinet-series-grid { grid-template-columns: 1fr; gap: 16px; }
  .cabinet-series-detail, .tile-series-section { padding: 48px 0; }
  .faq-item { padding: 22px 24px; }
  .product-gallery-section { padding: 36px 0 56px; }
}

.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--cream);
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-light);
}
.breadcrumb a { color: var(--gray-text); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.45; }
.breadcrumb .current { color: var(--black); font-weight: 600; }

/* ===== PRODUCT INTRO ===== */
.product-intro { padding: 84px 0 48px; background: var(--white); }
.product-intro .container { max-width: 760px; text-align: center; }
.product-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.product-intro p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.75;
}
.product-intro p + p { margin-top: 16px; }

/* ===== BENEFITS LIST ===== */
.benefits { padding: 72px 0 96px; background: var(--cream); }
.benefits-header { text-align: center; margin-bottom: 44px; }
.benefits-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  background: var(--white);
  border-radius: 8px;
  padding: 26px 26px 26px 64px;
  position: relative;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.benefit-item::before {
  content: '\2713';
  position: absolute;
  left: 22px;
  top: 26px;
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.benefit-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ===== SHOWCASE GRID ===== */
.showcase { padding: 80px 0 56px; background: var(--white); }
.showcase-alt { padding: 56px 0 80px; background: var(--white); }
.showcase-alt .showcase-header h2 { font-size: clamp(1.55rem, 2.9vw, 2rem); }
.showcase-header { text-align: center; margin-bottom: 48px; }
.showcase-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.showcase-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.showcase-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: #111;
  display: block;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}
.showcase-item.tall { aspect-ratio: 3 / 4; }
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.45s ease;
  filter: brightness(0.88) saturate(1.02);
}
.showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 40%, transparent 70%);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
/* Only link cards read as clickable (pointer cursor + keyboard focus ring); decorative gallery items do not. */
a.showcase-item { cursor: pointer; }
a.showcase-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.showcase-item:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.showcase-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.08); }
.showcase-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px 28px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.showcase-item-overlay .arrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gold);
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.showcase-item:hover .showcase-item-overlay .arrow { transform: translateX(6px); }

/* ===== ABOUT — VIDEO HERO BANNER ===== */
.video-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #0a0a0a;
}
.video-banner video,
.video-banner img.poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-banner img.poster-fallback { display: none; }

/* Respect OS-level reduced-motion preference: swap autoplaying loops for static posters */
@media (prefers-reduced-motion: reduce) {
  .video-banner video,
  .video-split-frame video { display: none !important; }
  .video-banner img.poster-fallback,
  .video-split-frame img.poster-fallback { display: block !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  @keyframes revealFallback { from { opacity: 1; } to { opacity: 1; } }
  @keyframes kenBurns { from { transform: none; } to { transform: none; } }
  .hero-image img, .hero-image video { animation: none !important; }
  /* Disable product gallery / series card / utility bar marquee motion */
  .product-gallery-item,
  .product-gallery-item img,
  .cabinet-series-card,
  .cabinet-series-card .cabinet-series-img img,
  .cabinet-series-link,
  .showcase-item,
  .showcase-item img,
  .showcase-item .arrow,
  .mosaic-tile-card,
  .mosaic-tile-card img,
  .space-item img,
  .blog-card,
  .blog-card img,
  .solution-card,
  .solution-card img { transition: none !important; transform: none !important; }
  .util-bar-marquee-track { animation: none !important; transform: none !important; }
  .util-bar-marquee {
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  .util-bar-marquee-track > .util-bar-marquee-item + .util-bar-marquee-item { display: none !important; }
}
.video-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
  z-index: 1;
}
.video-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 0 56px;
  z-index: 2;
}
.video-banner-content .container {
  max-width: 1100px;
}
.video-banner-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.video-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-bottom: 16px;
}
.video-banner-content h2 em {
  color: var(--gold);
  font-style: normal;
}
.video-banner-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  line-height: 1.65;
}

/* ===== ABOUT — VIDEO SPLIT (text + cinematic loop) ===== */
.video-split {
  background: var(--black);
  padding: 96px 0;
  color: var(--white);
}
.video-split + .video-split { padding-top: 0; }
.video-split .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.video-split.reverse .container {
  grid-template-columns: 1.15fr 1fr;
}
.video-split.reverse .video-split-content { order: 2; }
.video-split-content .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.video-split-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: var(--white);
}
.video-split-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.78;
  margin-bottom: 16px;
}
.video-split-content p strong { color: rgba(255,255,255,0.92); font-weight: 600; }
.video-split-content p em { color: var(--gold); font-style: normal; }
.video-split-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  background: #111;
}
.video-split-frame video,
.video-split-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-split-frame img.poster-fallback { display: none; }
.video-split-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* ===== ABOUT — PROCESS / CAPABILITIES STRIP ===== */
.capabilities {
  background: var(--cream);
  padding: 96px 0;
}
.capabilities-header { text-align: center; margin-bottom: 56px; }
.capabilities-header .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}
.capabilities-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.capabilities-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-text);
  font-size: 1.02rem;
  line-height: 1.7;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.capability-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: left;
  border: 1px solid var(--gray-light);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.capability-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.capability-step {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.capability-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}
.capability-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .video-split .container, .video-split.reverse .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .video-split.reverse .video-split-content { order: initial; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .video-banner { aspect-ratio: 4 / 3; }
  .video-banner-content { padding: 48px 0 36px; }
  .video-split { padding: 64px 0; }
  .capabilities { padding: 72px 0; }
  .capabilities-grid { grid-template-columns: 1fr; gap: 16px; }
  .capability-card { padding: 28px 24px; }
}

/* ===== STRONG SUBPAGE CTA ===== */
.page-cta {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.page-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}
.page-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.page-cta .btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== "COMPLETE SOLUTIONS" homepage preview (replaces full services section) ===== */
.solutions-preview {
  padding: 110px 0;
  background: var(--white);
}
.solutions-preview .services-header { margin-bottom: 56px; text-align: center; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.solution-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  transition: opacity 0.35s;
}
.solution-card:hover { transform: translateY(-6px); }
.solution-card:hover img { transform: scale(1.08); }
.solution-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  z-index: 2;
  color: var(--white);
}
.solution-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.solution-card-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 14px;
}
.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
}
.solution-card:hover .solution-card-link { gap: 12px; }
.solution-card-link::after { content: '\2192'; transition: transform 0.25s; }

@media (max-width: 1100px) {
  .nav-links, .nav-phone-desktop { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card { aspect-ratio: 4 / 4.5; }
  .showcase-grid, .showcase-grid.three-col { grid-template-columns: repeat(2, 1fr); }
  .benefits-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { aspect-ratio: 4 / 4; }
  .showcase-grid, .showcase-grid.three-col { grid-template-columns: 1fr; gap: 16px; }
  .showcase-item { aspect-ratio: 5 / 4; }
  .showcase-item-overlay { padding: 20px 22px; font-size: 1.1rem; }
  .benefits-list { grid-template-columns: 1fr; gap: 14px; }
  .benefit-item { padding: 22px 22px 22px 60px; }
  .page-hero { padding: 144px 0 60px; }
  .page-hero.has-image { padding: 168px 0 70px; }
  .product-intro { padding: 56px 0 36px; }
  .showcase { padding: 48px 0 36px; }
  .benefits { padding: 52px 0 72px; }
  .page-cta, .solutions-preview { padding: 60px 0; }
  .footer-top { gap: 18px; }
  .footer-logo img { height: 58px; padding: 12px 16px; border-radius: 12px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero-sub { font-size: 0.98rem; padding: 0 6px; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .util-bar { padding: 7px 0; font-size: 0.72rem; }
  .util-bar .container { gap: 10px; padding: 0 16px; }
  .util-bar-info {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }
  .util-bar-cta { font-size: 0.68rem; letter-spacing: 1.5px; }
  .nav { top: 32px; }
}
@media (max-width: 480px) {
  .util-bar-info::before { display: none; }
  .util-bar-info { font-size: 0.7rem; }
}
