﻿    @media (prefers-reduced-motion: no-preference) {
      @keyframes fuUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }

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

      .fu {
        animation: fuUp 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
      }

      .fu-d1 {
        animation-delay: 0.08s;
      }

      .fu-d2 {
        animation-delay: 0.16s;
      }

      .fu-d3 {
        animation-delay: 0.24s;
      }

      .fu-d4 {
        animation-delay: 0.32s;
      }

      @keyframes fuRight {
        from {
          opacity: 0;
          transform: translateX(40px);
        }

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

      @keyframes fuLeft {
        from {
          opacity: 0;
          transform: translateX(-40px);
        }

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

      .fu-right {
        animation: fuRight 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
      }

      .fu-left {
        animation: fuLeft 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
      }
    }

    body {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
    }

    /* Paper Shell */
    .paper {
      background: var(--color-background-primary);
      width: 100%;
      max-width: var(--content-width);
      padding: 0rem 0rem;
    }

    /* Top bar */
    .paper-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 2.5rem;
      margin-top: 2.5rem;
    }

    .logo {
      font-size: calc(13px * var(--font-scale));
      font-weight: 600;
      letter-spacing: 0.18em;
      color: var(--color-text-primary);
      text-transform: uppercase;
    }

    .breadcrumb {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
      letter-spacing: 0.06em;
    }

    .art-no {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
    }

    /* Sidebar + sheet side-by-side */
    .paper-body {
      display: flex;
      gap: 2.5rem;
      align-items: flex-start;
    }

    .cat-sidebar {
      width: 160px;
      flex-shrink: 0;
      border-right: 0.5px solid var(--color-border-tertiary);
      padding-right: 1.25rem;
      position: sticky;
      top: calc(var(--header-height) + 3rem);
      height: calc(75vh - var(--header-height) - 3rem);
      overflow-y: auto;
      scrollbar-width: none;
    }

    .cat-sidebar::-webkit-scrollbar {
      display: none;
    }

    .sheet-col {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    #sheet {
      min-width: 0;
      transition: min-height 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .cat-rail {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .cat-tab {
      padding: 9px 0 9px 14px;
      font-size: calc(13px * var(--font-scale));
      letter-spacing: 0.06em;
      color: var(--color-text-primary);
      cursor: pointer;
      border-left: 2px solid transparent;
      text-align: left;
      white-space: nowrap;
      background: none;
      border-top: none;
      border-right: none;
      border-bottom: none;
      transition:
        color 0.15s,
        border-color 0.15s;
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
    }

    .cat-tab:hover {
      color: var(--color-accent);
    }

    .cat-tab.active {
      color: var(--color-accent);
      border-left: 2px solid var(--color-text-primary);
    }

    .cat-tab-num {
      font-size: calc(10px * var(--font-scale));
      color: #ccc;
      letter-spacing: 0.06em;
    }

    .cat-tab.active .cat-tab-num {
      color: var(--color-text-faint);
    }

    /* Product sheet */
    .product-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-bottom: 2.5rem;
    }

    .product-image {
      width: 100%;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: var(--color-background-secondary);
      flex-shrink: 0;
      position: relative;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
    }

    .product-image img.loaded,
    .ba-after-layer img.loaded {
      opacity: 1;
    }

    @keyframes imgShimmer {
      0% {
        background-position: -200% 0;
      }

      100% {
        background-position: 200% 0;
      }
    }

    :is(.product-image, .ba-after-layer, .bsp-img-wrap).loading {
      background: linear-gradient(90deg,
          #eeeceb 0%,
          #e5e3e0 35%,
          #eeeceb 60%);
      background-size: 200% 100%;
      animation: imgShimmer 1.6s ease-in-out infinite;
    }

    .product-image:not(.loading) {
      background: transparent;
      animation: none;
    }

    .product-image svg {
      width: 100%;
      height: 100%;
    }

    /* Dims */
    .dims-row {
      display: flex;
      gap: 0;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 0.5px solid var(--color-border-tertiary);
    }

    .dim-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
      padding: 0 1.5rem;
    }

    .dim-item:first-child {
      padding-left: 0;
    }

    .dim-item:last-child {
      padding-right: 0;
    }

    .dim-item+.dim-item {
      border-left: 0.5px solid var(--color-border-tertiary);
    }

    .dim-label {
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-faint);
    }

    .dim-val {
      font-size: calc(12px * var(--font-scale));
      color: var(--color-text-primary);
      font-weight: 500;
      line-height: 1.6;
      overflow-wrap: break-word;
    }

    .product-title {
      font-family: "Cormorant Garamond", serif;
      font-size: calc(30px * var(--font-scale));
      font-weight: 400;
      color: var(--color-text-primary);
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }

    .product-en {
      font-size: calc(13px * var(--font-scale));
      color: var(--color-text-faint);
      margin-bottom: 2rem;
      letter-spacing: 0.06em;
    }

    .spec-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 2rem;
    }

    .spec-table tr {
      border-bottom: 0.5px solid var(--color-border-warm);
    }

    .spec-table td {
      padding: 10px 0;
      font-size: calc(12px * var(--font-scale));
      vertical-align: top;
      line-height: 1.6;
    }

    .spec-table td:first-child {
      color: var(--color-text-faint);
      width: 38%;
      font-weight: 400;
      letter-spacing: 0.04em;
    }

    .spec-table td:last-child {
      color: var(--color-text-primary);
    }

    .swatch-section-label {
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-faint);
      margin-bottom: 12px;
    }

    .swatch-row {
      display: flex;
      gap: 12px;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .swatch-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .swatch {
      --swatch-w: 64px;
      --swatch-h: 64px;
      width: var(--swatch-w);
      height: var(--swatch-h);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .swatch-name {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-muted);
    }

    /* Buttons */
    .cta-row {
      display: flex;
      gap: 10px;
      margin-top: 0;
    }

    .btn-p,
    .btn-s {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      text-decoration: none;
      cursor: pointer;
      font-size: calc(9px * var(--font-scale));
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 15px 28px;
      border: 0.5px solid transparent;
      transition:
        background 0.15s,
        color 0.15s,
        border-color 0.15s,
        transform 0.1s;
    }

    .cta-row .btn-p,
    .cta-row .btn-s {
      flex: 1;
    }

    .btn-p {
      background: var(--color-text-primary);
      color: var(--color-background-primary);
      border-color: var(--color-text-primary);
    }

    .btn-p:hover {
      background: #4a4540;
      border-color: #4a4540;
    }

    .btn-p:active {
      transform: scale(0.98);
    }

    .btn-s {
      background: transparent;
      color: var(--color-text-primary);
      border-color: var(--color-border-warm-md);
    }

    .btn-s:hover {
      background: var(--color-text-primary);
      color: var(--color-background-primary);
      border-color: var(--color-text-primary);
    }

    .btn-s:active {
      transform: scale(0.98);
    }

    .divider {
      border: none;
      border-top: 2px solid var(--color-border-tertiary);
      margin: 2.5rem 0;
    }

    /* Service flow */
    .flow-label {
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-text-faint);
      margin-bottom: 6px;
    }

    .flow-title {
      font-family: "Cormorant Garamond", serif;
      font-size: calc(20px * var(--font-scale));
      font-weight: 400;
      color: var(--color-text-primary);
      margin-bottom: 2rem;
    }

    .flow-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 0.5px solid var(--color-text-primary);
    }

    .flow-card {
      padding: 2rem 1rem 1.5rem 1rem;
      border-right: 0.5px solid var(--color-border-tertiary);
      transition:
        background 0.15s,
        transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .flow-card:last-child {
      border-right: none;
    }

    .flow-card:hover {
      background: var(--color-background-secondary);
      transform: translateY(-5px);
    }

    .flow-num {
      font-family: "Cormorant Garamond", serif;
      font-size: calc(36px * var(--font-scale));
      font-weight: 300;
      color: var(--color-text-faint);
      margin-bottom: 14px;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .flow-card:hover .flow-num {
      color: var(--color-text-muted);
    }

    .flow-card-title {
      font-size: calc(13px * var(--font-scale));
      font-weight: 600;
      color: var(--color-text-primary);
      margin-bottom: 8px;
      letter-spacing: 0.04em;
    }

    .flow-body {
      font-size: calc(12px * var(--font-scale));
      color: var(--color-text-muted);
      line-height: 1.7;
    }

    /* Before/After slider */
    .ba-wrap {
      width: 100%;
    }

    .ba-compare {
      position: relative;
      overflow: hidden;
      cursor: ew-resize;
      user-select: none;
      -webkit-user-select: none;
      aspect-ratio: 4 / 5;
    }

    .ba-after-layer {
      height: 100%;
    }

    .ba-after-layer.loading {
      min-height: 100%;
    }

    .ba-after-layer img {
      opacity: 0;
      transition: opacity 0.4s ease;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ba-before-layer {
      position: absolute;
      top: 0;
      left: 0;
      overflow: hidden;
      height: 100%;
    }

    .ba-before-layer img {
      display: block;
      height: 100%;
      object-fit: cover;
    }

    .ba-sep-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: rgba(255, 255, 255, 0.85);
      z-index: 2;
      pointer-events: none;
      transform: translateX(-50%);
    }

    .ba-drag-handle {
      position: absolute;
      top: 50%;
      z-index: 3;
      transform: translate(-50%, -50%);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      font-size: 10px;
      color: #555;
      letter-spacing: -1px;
    }

    .ba-img-label {
      position: absolute;
      top: 8px;
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 600;
      color: #fff;
      background: rgba(0, 0, 0, 0.38);
      padding: 3px 8px;
      letter-spacing: 0.1em;
      z-index: 3;
      pointer-events: none;
    }

    .ba-label-before {
      left: 8px;
    }

    .ba-label-after {
      right: 8px;
    }

    .ba-nav-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }

    .ba-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.15s;
    }

    .ba-dot.active {
      background: var(--color-text-primary);
    }

    /* Nav bar */
    .sheet-nav-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      min-width: 0;
      width: 100%;
    }

    .sheet-meta {
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.1em;
      color: var(--color-text-faint);
      text-transform: uppercase;
      flex: 1;
      min-width: 0;
      overflow: hidden;
    }

    .sheet-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-page-counter {
      font-size: calc(8px * var(--font-scale));
      color: var(--color-text-faint);
      letter-spacing: 0.06em;
      min-width: 50px;
      text-align: center;
    }

    .nav-btn-sq {
      width: 28px;
      height: 28px;
      background: var(--color-text-primary);
      color: var(--color-background-primary);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition:
        background 0.15s,
        transform 0.1s;
    }

    .nav-btn-sq:hover {
      background: #444;
    }

    .nav-btn-sq:active {
      transform: scale(0.95);
    }

    /* Placeholder */
    .placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 300px;
      color: #bbb;
      font-size: calc(12px * var(--font-scale));
      flex-direction: column;
      gap: 10px;
      letter-spacing: 0.06em;
      animation: phPulse 2.8s ease-in-out infinite;
    }

    /* ── Mobile Responsive ── */
    @media (max-width: 768px) {
      body {
        padding: 0.75rem;
        gap: 1.5rem;
      }

      .paper {
        padding: 0rem;
      }

      .paper-top {
        margin-bottom: 1.75rem;
      }

      .logo {
        font-size: calc(13px * var(--m-font-scale));
      }

      .breadcrumb,
      .art-no {
        font-size: calc(11px * var(--m-font-scale));
      }

      .paper-body {
        flex-direction: column;
        gap: 1.5rem;
      }

      .cat-sidebar {
        width: 100%;
        height: auto;
        overflow-y: visible;
        border-right: none;
        border-bottom: 0.5px solid var(--color-border-tertiary);
        padding-right: 0;
        padding-bottom: 1rem;
        position: relative;
        top: auto;
      }

      .cat-sidebar.fade-right::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 1rem;
        width: 3rem;
        background: linear-gradient(to right, transparent, #fff);
        pointer-events: none;
        z-index: 1;
      }

      .cat-sidebar.fade-left::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 1rem;
        width: 3rem;
        background: linear-gradient(to left, transparent, #fff);
        pointer-events: none;
        z-index: 1;
      }

      .cat-rail {
        flex-direction: row;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }

      .cat-rail::-webkit-scrollbar {
        display: none;
      }

      .cat-tab {
        padding: 8px 14px;
        font-size: calc(13px * var(--m-font-scale));
        border-left: none;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
        width: auto;
      }

      .cat-tab.active {
        border-left: none;
        border-bottom: 2px solid var(--color-text-primary);
      }

      .cat-tab-num {
        font-size: calc(10px * var(--m-font-scale));
      }

      .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .dims-row {
        flex-direction: column;
        gap: 0;
      }

      .dim-item {
        flex: none;
        width: 100%;
        padding: 0.875rem 0 0;
        border-top: 0.5px solid var(--color-border-tertiary);
      }

      .dim-item+.dim-item {
        border-left: none;
      }

      .dim-item:first-child {
        padding-top: 0;
        border-top: none;
      }

      .dim-label {
        font-size: calc(10px * var(--m-font-scale));
      }

      .dim-val {
        font-size: calc(13px * var(--m-font-scale));
      }

      .product-title {
        font-size: calc(26px * var(--m-font-scale));
      }

      .product-en {
        font-size: calc(13px * var(--m-font-scale));
        margin-bottom: 1.25rem;
      }

      .spec-table td {
        font-size: calc(13px * var(--m-font-scale));
        padding: 8px 0;
      }

      .swatch-section-label {
        font-size: calc(10px * var(--m-font-scale));
      }

      .swatch-name {
        font-size: calc(11px * var(--m-font-scale));
      }

      .btn-p,
      .btn-s {
        font-size: calc(10px * var(--m-font-scale));
        padding: 15px 22px;
      }

      .cta-row {
        flex-direction: column;
      }

      .cta-row .btn-p,
      .cta-row .btn-s {
        flex: unset;
        width: 100%;
      }

      .flow-label {
        font-size: calc(10px * var(--m-font-scale));
      }

      .flow-title {
        font-size: calc(18px * var(--m-font-scale));
        margin-bottom: 1.25rem;
      }

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

      .flow-card {
        padding: 1.25rem 0.75rem 1rem 0.55rem;
      }

      .flow-num {
        font-size: calc(28px * var(--m-font-scale));
      }

      .flow-card-title {
        font-size: calc(13px * var(--m-font-scale));
      }

      .flow-body {
        font-size: calc(12px * var(--m-font-scale));
      }

      .sheet-meta {
        font-size: calc(10px * var(--m-font-scale));
      }

      .placeholder {
        font-size: calc(12px * var(--m-font-scale));
        min-height: 180px;
      }

      .divider {
        margin: 5rem 0;
      }
    }

    /* Extra Section Wrapper */
    #extras-wrap {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      width: 100%;
      max-width: var(--content-width);
      padding-bottom: 2rem;
    }

    @media (max-width: 768px) {
      #extras-wrap {
        gap: 1rem;
      }
    }

    /* ── Bespoke Base Logic ── */
    .bsp-detail {
      display: none;
    }

    .bsp-detail.show {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
      gap: 3rem;
      align-items: stretch;
    }

    .bsp-img {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: var(--color-background-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }

    .bsp-img-wrap {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .bsp-img-wrap img {
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .bsp-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .bsp-img:hover img {
      transform: scale(1.04);
    }

    .bsp-img-wrap img.loaded {
      opacity: 1;
    }

    .bsp-img-ph {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: #ccc;
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .bsp-img-ph i {
      font-size: calc(28px * var(--font-scale));
      opacity: 0.35;
    }

    .bsp-name {
      font-family: "Cormorant Garamond", serif;
      font-size: calc(22px * var(--font-scale));
      font-weight: 400;
      color: var(--color-text-primary);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .bsp-brand-logo {
      height: 26px;
      width: auto;
      flex-shrink: 0;
      opacity: 0.88;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .bsp-detail.show {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .bsp-img {
        aspect-ratio: 3 / 2;
        order: -1;
      }

      .bsp-name {
        font-size: calc(18px * var(--m-font-scale));
      }
    }

    /* ── Plant Project Gallery ── */
    .pr-gallery-wrap {
      margin-top: 3rem;
      padding-top: 3rem;
      overflow: hidden;
    }

    .pr-gallery-header {
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .pr-gallery-scroll {
      display: flex;
      gap: 1px;
      background: var(--color-border-warm);
      overflow-x: scroll;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .pr-gallery-scroll::-webkit-scrollbar {
      display: none;
    }

    .pr-gallery-item {
      flex: 0 0 31.25%;
      min-width: 31.25%;
      scroll-snap-align: start;
      background: var(--color-background-primary);
      padding-bottom: 1rem;
    }

    .pr-gallery-img {
      background: var(--color-background-secondary);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .pr-gallery-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .pr-gallery-item:hover .pr-gallery-img img {
      transform: scale(1.05);
    }

    .pr-gallery-name {
      font-size: calc(12px * var(--font-scale));
      color: var(--color-text-primary);
      font-weight: 500;
      padding: 0 1rem;
    }

    .pr-gallery-sub {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
      margin-top: 2px;
      padding: 0 1rem;
    }

    .pr-float-up {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .pr-float-up.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .pr-gallery-item {
        flex: 0 0 80%;
        min-width: 80%;
      }
    }

    /* ── Care Guide Basic Elements ── */
    .cg-care-title {
      font-size: calc(15px * var(--font-scale));
      font-weight: 500;
      color: var(--color-text-primary);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cg-care-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin-bottom: 10px;
    }

    .cg-care-num {
      font-size: calc(10px * var(--font-scale));
      background: var(--color-text-primary);
      color: #fff;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .cg-care-text {
      font-size: calc(12px * var(--font-scale));
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    .cg-stain-step {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin-bottom: 9px;
    }

    .cg-stain-dot {
      width: 4px;
      height: 4px;
      background: var(--color-text-primary);
      flex-shrink: 0;
      margin-top: 8px;
    }

    .cg-tip-box {
      background: #f0ede8;
      padding: 10px 14px;
      margin-top: 14px;
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    .cg-tag {
      display: inline-block;
      font-size: calc(10px * var(--font-scale));
      background: var(--color-background-secondary);
      color: var(--color-text-muted);
      padding: 3px 10px;
      margin-bottom: 12px;
      border: 0.5px solid var(--color-border-warm);
    }

    @media (max-width: 768px) {
      .cg-care-text {
        font-size: calc(12px * var(--m-font-scale));
      }

      .cg-tip-box {
        font-size: calc(11px * var(--m-font-scale));
      }
    }

    /* ── RUGS CALCULATOR (Fully Retained) ── */
    .cs-layout {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 0;
      border: 0.5px solid var(--color-border-warm);
      align-items: stretch;
      height: 65vh;
    }

    .cs-left {
      border-right: 0.5px solid var(--color-border-tertiary);
      overflow-y: auto;
      min-height: 0;
    }

    .cs-left::-webkit-scrollbar {
      width: 3px;
    }

    .cs-left::-webkit-scrollbar-thumb {
      background: var(--color-border-tertiary);
    }

    .cs-left-hd {
      padding: 12px 12px 8px;
      border-bottom: 0.5px solid var(--color-border-tertiary);
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 1;
    }

    .cs-left-hd p {
      font-size: calc(10px * var(--font-scale));
      color: var(--color-text-faint);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 3px;
    }

    .cs-left-hd strong {
      font-size: calc(12px * var(--font-scale));
      font-weight: 500;
      color: var(--color-text-primary);
    }

    .cs-swatch-list {
      padding: 6px;
    }

    .cs-swatch-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 5px 7px;
      cursor: pointer;
      border: 0.5px solid transparent;
      transition: background 0.1s;
    }

    .cs-swatch-item:hover {
      background: var(--color-background-secondary);
    }

    .cs-swatch-item.active {
      background: var(--color-background-secondary);
      border-color: var(--color-border-tertiary);
    }

    .cs-swatch-bar {
      width: 38px;
      height: 24px;
      flex-shrink: 0;
      border: 0.5px solid var(--color-border-tertiary);
      overflow: hidden;
      background: var(--color-background-secondary);
    }

    .cs-swatch-bar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.85) brightness(1.05);
    }

    .cs-swatch-name {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-primary);
    }

    .cs-right {
      padding: 1.25rem 1.5rem;
      overflow-y: auto;
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .cs-preview {
      width: 480px;
      height: 90%;
      flex-shrink: 0;
      align-self: stretch;
      min-height: 180px;
      border: 0.5px solid var(--color-border-tertiary);
      position: relative;
      overflow: hidden;
      filter: saturate(0.85) brightness(1.05);
    }

    .cs-preview-shimmer {
      position: absolute;
      inset: 0;
      z-index: 3;
      background: linear-gradient(90deg,
          rgba(238, 236, 235, 0.9) 0%,
          rgba(229, 227, 224, 0.9) 35%,
          rgba(238, 236, 235, 0.9) 60%);
      background-size: 200% 100%;
      animation: imgShimmer 1.6s ease-in-out infinite;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }

    .cs-preview-shimmer.active {
      opacity: 1;
      pointer-events: auto;
    }

    .cs-preview-nav {
      position: absolute;
      bottom: 8px;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .cs-preview-nav .nav-btn-sq {
      width: 22px;
      height: 22px;
      font-size: 10px;
    }

    .cs-preview-count {
      font-size: 10px;
      color: #fff;
      background: rgba(0, 0, 0, 0.45);
      padding: 1px 7px;
      border-radius: 10px;
      letter-spacing: 0.04em;
    }

    .cs-right-body {
      flex: 1;
      width: 100%;
      min-width: 0;
    }

    .cs-right-nav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-bottom: 0.75rem;
    }

    .cs-series-hd {
      margin-bottom: 1rem;
      padding-bottom: 0.75rem;
      border-bottom: 0.5px solid var(--color-border-tertiary);
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 8px;
    }

    .cs-series-hd-left {
      flex: 1;
      min-width: 0;
    }

    .cs-series-id {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
      letter-spacing: 0.08em;
      white-space: nowrap;
      flex-shrink: 0;
      padding-top: 3px;
    }

    .cs-series-name {
      font-family: "Cormorant Garamond", serif;
      font-size: calc(18px * var(--font-scale));
      font-weight: 400;
      color: var(--color-text-primary);
      margin-bottom: 2px;
    }

    .cs-series-sub {
      font-size: calc(12px * var(--font-scale));
    }

    .cs-calc-title {
      font-size: calc(10px * var(--font-scale));
      font-weight: 500;
      color: var(--color-text-faint);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .cs-dim-row {
      display: flex;
      gap: 10px;
      margin-bottom: 4px;
    }

    .cs-dim-field {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .cs-dim-field label {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
    }

    .cs-dim-input {
      width: 100%;
      font-size: calc(13px * var(--font-scale));
      padding: 8px 10px;
      border: 0.5px solid var(--color-border-tertiary);
      background: #fff;
      color: var(--color-text-primary);
      outline: none;
      transition: border-color 0.15s;
    }

    .cs-dim-input:focus {
      border-color: var(--color-text-primary);
    }

    .cs-dim-input::placeholder {
      color: #ccc;
    }

    .cs-err-msg {
      font-size: calc(10px * var(--font-scale));
      color: #c0392b;
      margin-bottom: 0.5rem;
      min-height: 14px;
    }

    .cs-shape-field {
      margin-bottom: 0.875rem;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .cs-shape-field label {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
    }

    .cs-shape-select {
      width: 100%;
      font-size: calc(12px * var(--font-scale));
      padding: 8px 10px;
      border: 0.5px solid var(--color-border-warm);
      background: #fff;
      color: var(--color-text-primary);
      outline: none;
      cursor: pointer;
      appearance: auto;
    }

    .cs-shape-select:focus {
      border-color: var(--color-text-primary);
    }

    .cs-result-block {
      margin-top: 0.875rem;
      border: 0.5px solid var(--color-border-tertiary);
      padding: 0 12px;
      background: var(--color-background-secondary);
    }

    .cs-r-warn {
      color: #c0392b;
      font-weight: 500;
    }

    .cs-edge-row {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 5px 0;
      border-bottom: 0.5px solid var(--color-border-warm);
    }

    .cs-edge-label {
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
    }

    .cs-edge-select {
      font-size: calc(11px * var(--font-scale));
      padding: 1px 4px;
      border: 0.5px solid var(--color-border-warm);
      background: transparent;
      color: var(--color-text-muted);
      cursor: pointer;
      outline: none;
    }

    .cs-total-block {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0 4px;
      border-top: 1.5px solid var(--color-text-primary);
      margin-top: 4px;
    }

    .cs-t-label {
      font-size: calc(13px * var(--font-scale));
      font-weight: 500;
      color: var(--color-text-primary);
    }

    .cs-t-val {
      font-size: calc(18px * var(--font-scale));
      font-weight: 500;
      color: var(--color-text-primary);
    }

    .cs-footnote {
      margin-top: 0.875rem;
      padding: 10px 12px;
      border: 0.5px solid var(--color-border-warm);
      font-size: calc(11px * var(--font-scale));
      color: var(--color-text-faint);
      line-height: 1.6;
    }

    .cs-hidden {
      display: none !important;
    }

    @media (max-width: 768px) {
      .cs-layout {
        height: auto;
        grid-template-columns: 1fr;
      }

      .cs-left {
        max-height: 300px;
        border-right: none;
        border-bottom: 0.5px solid var(--color-border-tertiary);
      }

      .cs-right {
        max-height: none;
        flex-direction: column;
      }

      .cs-preview {
        width: 100%;
        max-height: 480px;
        align-self: auto;
      }

      .cs-swatch-name {
        font-size: calc(11px * var(--m-font-scale));
      }

      .cs-series-name {
        font-size: calc(16px * var(--m-font-scale));
      }

      .cs-t-val {
        font-size: calc(16px * var(--m-font-scale));
      }
    }

    /* ══════════════════════════════════════════════════════════
       UNIFIED GENERAL DESIGN SYSTEM (.g-)
       ══════════════════════════════════════════════════════════ */

    .g-grid {
      display: grid;
      gap: 1.5rem;
      font-size: calc(12px * var(--font-scale));
    }

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

    .g-grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .g-grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .g-grid-split-1-2 {
      grid-template-columns: 1fr 2fr;
    }

    @media (max-width: 768px) {

      .g-grid-2,
      .g-grid-3,
      .g-grid-4,
      .g-grid-split-1-2 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
    }

    .g-header {
      margin-bottom: 2.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 0.5px solid var(--color-border-warm);
    }

    .g-eyebrow {
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-text-faint);
      margin-bottom: 8px;
      display: block;
    }

    .g-title {
      font-family: "Cormorant Garamond", serif;
      font-size: calc(28px * var(--font-scale));
      font-weight: 400;
      color: var(--color-text-primary);
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .g-title em {
      font-style: italic;
    }

    .g-desc {
      font-size: calc(13px * var(--font-scale));
      color: var(--color-text-muted);
      line-height: 1.9;
    }

    @media (max-width: 768px) {
      .g-eyebrow {
        font-size: calc(10px * var(--m-font-scale));
      }

      .g-title {
        font-size: calc(22px * var(--m-font-scale));
      }

      .g-desc {
        font-size: calc(12px * var(--m-font-scale));
      }
    }

    .g-card {
      background: var(--color-background-secondary);
      padding: 1.75rem 1.5rem;
      position: relative;
      border: 0.5px solid transparent;
      transition:
        background 0.2s,
        transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .g-card-flat {
      background: var(--color-background-primary);
      border: 0.5px solid var(--color-border-warm);
    }

    .g-card-interactive {
      cursor: pointer;
    }

    .g-card-interactive:hover {
      background: var(--color-background-secondary);
      transform: translateY(-4px);
    }

    .g-card-icon {
      font-size: calc(22px * var(--font-scale));
      color: #555;
      margin-bottom: 12px;
      display: block;
    }

    .g-card-title {
      font-size: calc(13px * var(--font-scale));
      font-weight: 600;
      color: var(--color-text-primary);
      margin-bottom: 8px;
      letter-spacing: 0.04em;
      display: inline-block;
      transform-origin: left center;
      transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .g-card:hover .g-card-title {
      transform: scale(1.1);
    }

    .g-card-title-serif {
      font-family: "Cormorant Garamond", serif;
      font-size: calc(18px * var(--font-scale));
      font-weight: 400;
      color: var(--color-text-primary);
      margin-bottom: 8px;
      display: inline-block;
      transform-origin: left center;
      transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .g-card:hover .g-card-title-serif {
      transform: scale(1.1);
    }

    .g-card-desc {
      font-size: calc(12px * var(--font-scale));
      color: var(--color-text-muted);
      line-height: 1.75;
    }

    .g-card-accent-line::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--color-accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: 2;
    }

    .g-card-accent-line:hover::after {
      transform: scaleX(1);
    }

    .g-badge-link {
      display: inline-block;
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.1em;
      padding: 3px 9px;
      border: 0.5px solid var(--color-border-warm);
      color: var(--color-text-faint);
      text-decoration: none;
      transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
    }

    .g-card:hover .g-badge-link {
      background: var(--color-text-primary);
      border-color: var(--color-text-primary);
      color: var(--color-background-primary);
    }

    @media (max-width: 768px) {
      .g-card-title {
        font-size: calc(13px * var(--m-font-scale));
      }

      .g-card-title-serif {
        font-size: calc(18px * var(--m-font-scale));
      }

      .g-card-desc {
        font-size: calc(12px * var(--m-font-scale));
      }

      .g-reveal-card.g-reveal-in .g-reveal-bg {
        opacity: 1;
      }

      .g-reveal-card.g-reveal-in .g-reveal-fadeout {
        opacity: 0;
      }

      .g-reveal-card.g-reveal-in .g-reveal-text {
        color: var(--color-background-primary);
      }
    }

    .g-reveal-card {
      position: relative;
      overflow: hidden;
      min-height: 200px;
    }

    .g-reveal-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .g-reveal-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(169, 168, 168, 0.5);
    }

    .g-reveal-card:hover .g-reveal-bg {
      opacity: 1;
    }

    .g-reveal-content {
      position: relative;
      z-index: 1;
      transition:
        opacity 0.3s ease,
        color 0.3s ease;
    }

    .g-reveal-card:hover .g-reveal-fadeout {
      opacity: 0;
    }

    .g-reveal-card:hover .g-reveal-text {
      color: var(--color-background-primary);
    }

    .g-table {
      width: 100%;
      border-collapse: collapse;
    }

    .g-table-row {
      border-bottom: 0.5px solid var(--color-border-warm);
      font-size: calc(12px * var(--font-scale));
    }

    .g-table-cell {
      padding: 10px 0;
      font-size: calc(12px * var(--font-scale));
      line-height: 1.6;
      vertical-align: top;
    }

    .g-table-cell:first-child {
      color: var(--color-text-faint);
      width: 38%;
    }

    .g-table-cell:last-child {
      color: var(--color-text-primary);
      font-weight: 500;
    }

    .g-styled-table {
      width: 100%;
      border-collapse: collapse;
      font-size: calc(12px * var(--font-scale));
    }

    .g-styled-table th {
      text-align: left;
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.12em;
      color: var(--color-text-faint);
      padding: 10px 16px;
      border-bottom: 0.5px solid var(--color-border-warm);
      font-weight: 400;
      text-transform: uppercase;
    }

    .g-styled-table td {
      padding: 12px 16px;
      border-bottom: 0.5px solid var(--color-border-warm);
      color: var(--color-text-primary);
      line-height: 1.6;
    }

    .g-styled-table tr:hover td {
      background: var(--color-background-secondary);
    }

    .g-breakout-hero {
      margin: 0 -3.5rem;
      padding: 6rem 3.5rem;
      background: var(--color-background-secondary);
      position: relative;
      overflow: hidden;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    .g-breakout-hero::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
          transparent 40%,
          rgba(88, 88, 58, 0.1) 100%);
      pointer-events: none;
    }

    .g-breakout-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .g-breakout-hero {
        margin-top: 5rem;
        margin-bottom: 5rem;
        padding: 3rem 3.5rem;
      }
    }

    .g-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
    }

    .g-steps::before {
      content: "";
      position: absolute;
      top: 20px;
      left: 10%;
      right: 10%;
      height: 0.5px;
      background: var(--color-border-warm);
      z-index: 0;
    }

    .g-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
      transition: transform 0.2s ease;
    }

    .g-step:hover {
      transform: translateY(-4px);
    }

    .g-step-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--color-background-secondary);
      border: 0.5px solid var(--color-border-warm-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      font-size: calc(12px * var(--font-scale));
      font-weight: 500;
      color: var(--color-text-primary);
      transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
    }

    .g-step-text {
      display: flex;
      flex-direction: column;
    }

    .g-step-text .g-card-title,
    .g-step-text .g-card-desc {
      margin-top: 0;
    }

    .g-step:hover .g-step-circle {
      background: var(--color-text-primary);
      border-color: var(--color-text-primary);
      color: var(--color-background-primary);
    }

    @media (max-width: 768px) {
      .g-steps {
        grid-template-columns: 1fr;
      }

      .g-steps::before {
        display: none;
      }

      .g-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 0.5px solid var(--color-border-warm);
      }

      .g-step:last-child {
        border-bottom: none;
      }

      .g-step-circle {
        margin-bottom: 0;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        align-self: flex-start;
      }
    }

    .g-tab-rail {
      display: flex;
      flex-wrap: wrap;
      overflow-x: auto;
      gap: 8px;
      margin-bottom: 2rem;
    }

    .g-tab-btn {
      padding: 7px 18px;
      font-size: calc(11px * var(--font-scale));
      letter-spacing: 0.08em;
      color: var(--color-text-secondary);
      cursor: pointer;
      border: 0.5px solid var(--color-border-tertiary);
      background: transparent;
      white-space: nowrap;
      transition:
        background 0.15s,
        color 0.15s,
        border-color 0.15s;
    }

    .g-tab-btn:hover {
      border-color: var(--color-text-primary);
      color: var(--color-text-primary);
    }

    .g-tab-btn.active {
      background: var(--color-text-primary);
      color: var(--color-background-primary);
      border-color: var(--color-text-primary);
    }

    /* ── Visual Refinements & Animations ── */
    .product-image img {
      transition:
        opacity 0.4s ease-in-out,
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-image:hover img.loaded {
      transform: scale(1.04);
    }

    .spec-table tr {
      transition: background 0.12s;
    }

    .spec-table tr:hover td {
      background: var(--color-background-secondary);
    }

    .swatch-item {
      transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .swatch-item:hover {
      transform: translateY(-6px);
    }

    .swatch {
      transition: box-shadow 0.28s ease;
    }

    .swatch-item:hover .swatch {
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.11);
    }

    @keyframes phPulse {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 0.65;
      }
    }

    @media (prefers-reduced-motion: no-preference) {
      .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
          transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
      }

      .reveal.in-view {
        opacity: 1;
        transform: none;
      }

      .reveal-d1 {
        transition-delay: 0.08s;
      }

      .reveal-d2 {
        transition-delay: 0.16s;
      }

      .reveal-d3 {
        transition-delay: 0.24s;
      }

      .reveal-d4 {
        transition-delay: 0.32s;
      }
    }

    /* ── Sheet meta tag ── */
    .meta-tag {
      display: inline-block;
      font-size: calc(10px * var(--font-scale));
      letter-spacing: 0.1em;
      color: var(--color-text-faint);
      text-transform: uppercase;
    }

    /* ── Plant: feature point dots ── */
    .pr-point-dot {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      border: 0.5px solid var(--color-border-warm-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: calc(16px * var(--font-scale));
      color: var(--color-text-muted);
    }

    /* ── Plant: gallery nav ── */
    .pr-gallery-btns {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    /* ── Plant: rental plan cards ── */
    .pr-plan-card {
      display: flex;
      flex-direction: column;
      overflow: visible;
    }

    .pr-plan-card.selected {
      border-color: var(--color-text-primary);
    }

    .pr-plan-icon {
      font-size: 22px;
      margin-bottom: 14px;
      display: block;
    }

    .pr-plan-badge {
      position: absolute;
      top: -11px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-text-primary);
      color: var(--color-background-primary);
      font-size: calc(9px * var(--font-scale));
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 12px;
      white-space: nowrap;
    }

    .pr-plan-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .pr-plan-items li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: calc(12px * var(--font-scale));
      color: var(--color-text-muted);
      line-height: 1.6;
    }

    .pr-plan-items li i {
      color: var(--color-text-faint);
      margin-top: 3px;
      flex-shrink: 0;
      font-size: calc(13px * var(--font-scale));
    }

    .pr-plan-min {
      font-size: calc(10px * var(--font-scale));
      color: var(--color-text-faint);
      border-top: 0.5px solid var(--color-border-warm);
      padding-top: 10px;
      letter-spacing: 0.04em;
    }

    /* ── Care guide divider ── */
    .cg-divider {
      border: none;
      border-top: 0.5px solid var(--color-border-tertiary);
      margin: 2.5rem 0;
    }

    /* ── Bespoke content column ── */
    .bsp-body {
      min-width: 0;
    }

    /* ── Footer Overrides ── */
    .site-footer {
      align-self: stretch;
      position: static;
      left: auto;
      width: auto;
      margin-left: -2rem;
      margin-right: -2rem;
      margin-bottom: -2rem;
    }

    @media (max-width: 768px) {
      .site-footer {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        margin-bottom: -0.75rem;
      }
    }
  