    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #F0EAD6;
      --black: #0A0A0A;
      --red:   #D0382C;
      --blue:  #2438A8;
      --D: 'Barlow Condensed', sans-serif;
      --B: 'Barlow', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--B); background: var(--cream); color: var(--black); overflow-x: hidden; }

    /* ── NAV (matches landing page) ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 56px;
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; padding: 0 36px;
      background: var(--cream);
      border-bottom: 1px solid rgba(10,10,10,0.1);
    }
    .nav-logo {
      font-family: var(--D); font-weight: 900; font-size: 26px;
      letter-spacing: -0.02em; text-decoration: none;
      color: var(--black);
      display: flex; align-items: baseline; justify-self: start;
    }
    .nav-logo .dot { color: var(--red); }
    .nav-links { display: flex; align-items: center; justify-content: center; }
    .nav-links a {
      font-family: var(--D); font-size: 12px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      text-decoration: none; padding: 0 18px; transition: color 0.2s;
      color: var(--black);
    }
    .nav-links a:hover, .nav-links a.active { color: var(--red); }
    .nav-bag {
      font-family: var(--D); font-size: 12px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; gap: 7px;
      justify-self: end; padding: 0; transition: color 0.2s;
      color: var(--black);
    }
    .nav-bag:hover { color: var(--red); }

    /* ── BACK STRIP ── */
    .back-strip {
      padding-top: 88px;
      background: var(--cream);
    }
    .back-strip-inner {
      padding: 22px 36px 18px;
      border-bottom: 1px solid rgba(10,10,10,0.06);
      display: flex; align-items: center; gap: 12px;
    }
    .back-strip a, .back-strip .bs-current, .back-strip .bs-pos {
      font-family: var(--D); font-size: 11px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
    }
    .back-strip a {
      text-decoration: none;
      color: rgba(10,10,10,0.7);
      transition: color 0.2s;
    }
    .back-strip a:hover { color: var(--red); }
    .back-strip .bs-sep { color: rgba(10,10,10,0.7); }
    .back-strip .bs-current { color: var(--black); }
    .back-strip .bs-pos {
      margin-left: auto;
      color: rgba(10,10,10,0.7);
    }
    @media (max-width: 600px) {
      .back-strip .bs-sep, .back-strip .bs-current { display: none; }
    }

    /* ─── VIEW TRANSITIONS (target side) ─── */
    @view-transition { navigation: auto; }
    ::view-transition-old(product-hero),
    ::view-transition-new(product-hero) {
      animation-duration: 0.5s;
      animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
    .gallery-desktop .gallery-frame:first-child img,
    .gallery-mobile .gallery-slide:first-child img {
      view-transition-name: product-hero;
    }

    /* ─── PREV/NEXT COLORWAY NAV ─── */
    .colorway-nav {
      max-width: 1560px; margin: 0 auto;
      padding: 24px 36px 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
      border-top: 1px solid rgba(10,10,10,0.08);
    }
    .cw-link {
      display: flex; flex-direction: column; gap: 4px;
      padding: 24px 0;
      text-decoration: none; color: var(--black);
      transition: opacity 0.2s;
    }
    .cw-link:hover { opacity: 0.6; }
    .cw-link.cw-next { text-align: right; align-items: flex-end; }
    .cw-arrow {
      font-family: var(--D); font-size: 11px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(10,10,10,0.7);
    }
    .cw-name {
      font-family: var(--D); font-weight: 900;
      font-size: clamp(20px, 2.5vw, 28px);
      letter-spacing: -0.005em; text-transform: uppercase;
    }
    @media (max-width: 600px) { .colorway-nav { padding: 24px 24px 0; } }

    /* ── BUTTONS ── */
    .btn-red {
      font-family: var(--D); font-size: 14px; font-weight: 900;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--cream); background: var(--red);
      border: none; cursor: pointer; padding: 18px 32px;
      text-decoration: none; display: inline-block;
      transition: background 0.18s, transform 0.12s;
    }
    .btn-red:hover { background: #b02d22; transform: translateY(-1px); }

    /* ── PDP HERO ── */
    .pdp {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 56px;
      max-width: 1560px;
      margin: 0 auto;
      padding: 24px 36px 120px;
      align-items: start;
    }

    /* ── DESKTOP: vertical stacked gallery (Toteme / Khaite style) ── */
    .gallery { display: flex; flex-direction: column; gap: 8px; }
    .gallery-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 5;
      background: #ece6d2;
      overflow: hidden;
    }
    .gallery-frame img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .gallery-frame.macro { aspect-ratio: 4 / 5; background: #efe7d6; }
    .gallery-frame.macro img { object-position: center; }

    /* ── MOBILE: swipeable carousel with counter ── */
    .gallery-mobile { display: none; }
    .gallery-track {
      display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .gallery-track::-webkit-scrollbar { display: none; }
    .gallery-slide {
      flex: 0 0 100%; aspect-ratio: 4 / 5;
      scroll-snap-align: start; background: #ece6d2; overflow: hidden;
    }
    .gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .gallery-counter {
      position: absolute; right: 14px; bottom: 14px;
      font-family: var(--D); font-size: 11px; font-weight: 700;
      letter-spacing: 0.16em;
      background: rgba(10,10,10,0.55); color: var(--cream);
      padding: 6px 10px; border-radius: 999px;
      pointer-events: none;
    }
    .mobile-track-wrap { position: relative; }

    /* info column */
    .info {
      position: sticky; top: 80px;
      padding: 0;
      display: flex; flex-direction: column; gap: 0;
    }
    .info-eyebrow {
      font-family: var(--D); font-size: 11px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(10,10,10,0.7);
      margin-bottom: 18px;
    }
    .info-title {
      font-family: var(--D); font-weight: 900;
      font-size: clamp(36px, 4vw, 56px);
      line-height: 0.95; letter-spacing: -0.015em;
      text-transform: uppercase; color: var(--black);
      margin-bottom: 12px;
    }
    .info-stripes {
      font-family: var(--B); font-size: 14px; line-height: 1.5;
      color: rgba(10,10,10,0.6);
      margin-bottom: 22px;
    }
    .info-price {
      font-family: var(--D); font-weight: 900; font-size: 28px;
      color: var(--black); letter-spacing: 0;
    }
    .info-badge {
      font-family: var(--D); font-size: 11px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--cream); background: var(--red);
      padding: 6px 12px;
      align-self: flex-start;
      margin: 16px 0;
    }
    .info-desc {
      font-family: var(--B); font-size: 16px; line-height: 1.65;
      color: rgba(10,10,10,0.75);
      max-width: 380px;
      margin: 24px 0;
    }
    .info-cta {
      width: 100%; text-align: center;
    }
    .info-micro {
      font-family: var(--B); font-size: 14px;
      color: rgba(10,10,10,0.65);
      line-height: 1.4;
      margin-top: 14px;
      display: flex; flex-direction: column; gap: 8px;
    }

    /* accordions */
    .acc {
      border-top: 1px solid rgba(10,10,10,0.1);
      margin-top: 0;
    }
    .acc:last-of-type { border-bottom: 1px solid rgba(10,10,10,0.1); }
    .acc-header {
      width: 100%; background: none; border: none; cursor: pointer;
      padding: 22px 0;
      display: flex; align-items: center; justify-content: space-between;
      font-family: var(--D); font-size: 12px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--black);
    }
    .acc-icon {
      width: 14px; height: 14px;
      position: relative;
      transition: transform 0.25s ease;
      flex-shrink: 0;
    }
    .acc-icon::before, .acc-icon::after {
      content: ""; position: absolute;
      background: var(--black);
    }
    .acc-icon::before {
      top: 50%; left: 0; right: 0; height: 1.5px;
      transform: translateY(-50%);
    }
    .acc-icon::after {
      left: 50%; top: 0; bottom: 0; width: 1.5px;
      transform: translateX(-50%);
    }
    .acc.open .acc-icon { transform: rotate(45deg); }
    .acc-body {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .acc-body-inner {
      padding: 0 0 22px;
      font-family: var(--B); font-size: 16px; line-height: 1.7;
      color: var(--black);
    }
    .acc-body-inner ul { list-style: none; padding: 0; margin: 0; }
    .acc-body-inner .spec-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 24px;
      padding: 8px 0;
      align-items: baseline;
    }
    .acc-body-inner .spec-key {
      font-family: var(--D); font-weight: 700;
      font-size: 11px; letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(10,10,10,0.7);
    }
    .acc-body-inner .spec-val {
      font-family: var(--B); font-size: 15px;
      line-height: 1.55; color: var(--black);
    }
    @media (max-width: 600px) {
      .acc-body-inner .spec-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
      }
    }
    .acc.open .acc-body { max-height: 2000px; }

    /* measurements */
     .measure-img {
       display: block;
       width: 100%;
       max-width: 480px;
       height: auto;
       margin: 0 auto 32px;
       mix-blend-mode: multiply;
       background: transparent;
     }
    .measure-block { padding: 4px 0; }
    .measure-label {
      font-family: var(--D); font-weight: 900;
      font-size: 14px; text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(10,10,10,0.65);
      margin-bottom: 8px;
    }
    .measure-text {
      font-family: var(--B); font-size: 18px;
      line-height: 1.5; color: var(--black);
    }
    .measure-divider {
      height: 1px; background: rgba(0,0,0,0.08);
      margin: 16px 0;
    }
    .acc-link {
      display: inline-block;
      margin-top: 16px;
      font-family: var(--B); font-size: 14px;
      color: rgba(10,10,10,0.65);
      text-decoration: none;
    }
    .acc-link:hover { text-decoration: underline; color: var(--black); }

    /* ── OTHER COLORWAYS ── */
    .others {
      padding: 96px 36px;
      max-width: 1480px;
      margin: 0 auto;
    }
    .others-head {
      text-align: center;
      font-family: var(--D); font-weight: 900;
      font-size: clamp(28px, 4vw, 44px);
      letter-spacing: -0.015em; text-transform: uppercase;
      color: var(--black);
      margin-bottom: 56px;
    }
    .others-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .other-tile {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: #ddd;
      text-decoration: none;
      transition: transform 0.2s ease;
      display: block;
    }
    .other-tile:hover { transform: translateY(-2px); }
    .other-tile.berry  { background: linear-gradient(180deg, #d9b6cd 0%, #b48ca7 100%); }
    .other-tile.sage   { background: linear-gradient(180deg, #cfd8c8 0%, #9caf94 100%); }
    
    .other-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
    .other-tile:hover img { transform: scale(1.04); }
    .other-tile.classic{ background: linear-gradient(180deg, #d6cfb8 0%, #a89a78 100%); }
    .other-tile-foot {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 22px 22px;
      display: flex; align-items: end; justify-content: space-between;
      gap: 16px;
      background: linear-gradient(to top, rgba(10,10,10,0.45), transparent);
    }
    .other-name {
      font-family: var(--D); font-weight: 900; font-size: 22px;
      text-transform: uppercase; letter-spacing: 0.02em;
      line-height: 1; color: var(--cream);
    }
    .other-price {
      font-family: var(--D); font-weight: 900; font-size: 18px;
      color: var(--cream); letter-spacing: 0.02em;
    }

    /* ── WAITLIST (matches landing page) ── */
    .waitlist {
      background: var(--black);
      padding: 80px 40px;
    }
    .waitlist-inner {
      max-width: 720px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 28px; align-items: center;
      text-align: center;
    }
    .waitlist-hl {
      font-family: var(--D); font-weight: 900;
      font-size: clamp(52px, 8vw, 96px);
      text-transform: uppercase; letter-spacing: -0.02em;
      line-height: 1.0; color: var(--cream);
    }
    .waitlist-sub {
      font-family: var(--B); font-size: 15px; line-height: 1.6;
      color: rgba(255,255,255,0.75);
    }
    .waitlist-form {
      display: flex; gap: 8px; width: 100%; max-width: 460px; margin-top: 12px;
    }
    .waitlist-input {
      flex: 1; padding: 14px 16px;
      font-family: var(--B); font-size: 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--cream);
      transition: border-color 0.18s;
    }
    .waitlist-input::placeholder { color: rgba(255,255,255,0.75); }
    .waitlist-input:focus { outline: none; border-color: rgba(255,255,255,0.75); }
    .waitlist-btn {
      font-family: var(--D); font-size: 12px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--cream); background: var(--red);
      border: 1px solid var(--red); cursor: pointer;
      padding: 14px 28px;
      transition: background 0.18s, border-color 0.18s;
    }
    .waitlist-btn:hover { background: #b02d22; border-color: #b02d22; }
    .waitlist-confirm {
      display: none; font-family: var(--D); font-size: 16px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(240,234,214,0.7);
    }

    /* ── FOOTER (matches landing page) ── */
    footer {
      background: var(--cream);
      border-top: 1px solid rgba(10,10,10,0.1);
    }
    .footer-main {
      display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 48px; padding: 64px 40px 48px;
    }
    .footer-wordmark {
      font-family: var(--D); font-weight: 900; font-size: 44px;
      letter-spacing: -0.02em; line-height: 1; color: var(--black);
      margin-bottom: 10px;
    }
    .footer-wordmark .dot { color: var(--red); }
    .footer-copy-text {
      font-family: var(--D); font-size: 10px; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(10,10,10,0.7);
    }
    .footer-col-label {
      font-family: var(--D); font-size: 10px; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(10,10,10,0.7); margin-bottom: 14px;
    }
    .footer-col a {
      display: block; font-family: var(--D); font-size: 16px;
      font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      text-decoration: none; color: var(--black); margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--red); }

    .footer-contact-line { text-align: center; padding: 18px 40px 0; font-family: var(--B); font-size: 13px; color: rgba(10,10,10,0.6); }
    .footer-contact-line a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
    .footer-strip {
      border-top: 1px solid rgba(10,10,10,0.08);
      padding: 16px 40px;
      display: flex; justify-content: center;
    }
    .footer-strip-text {
      font-family: var(--D); font-size: 10px; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(10,10,10,0.7);
    }

    /* ── EDITORIAL TYPOGRAPHIC LINE (between gallery section & others) ── */
    .editorial {
      max-width: 1560px;
      margin: 0 auto;
      padding: 80px 36px 96px;
      text-align: center;
    }
    .editorial-eyebrow {
      font-family: var(--D); font-size: 11px; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(10,10,10,0.7);
      margin-bottom: 28px;
    }
    .editorial-line {
      font-family: var(--D); font-weight: 900;
      font-size: clamp(40px, 7vw, 96px);
      line-height: 0.98; letter-spacing: -0.02em;
      text-transform: uppercase; color: var(--black);
    }
    .editorial-line em {
      font-style: italic; font-family: var(--B); font-weight: 500;
      text-transform: none; color: rgba(10,10,10,0.7);
      letter-spacing: -0.01em;
    }

    /* ── STICKY MOBILE ADD-TO-BAG BAR ── */
    .sticky-bar { display: none; }
    @media (max-width: 900px) {
      .sticky-bar {
        display: flex; align-items: center; justify-content: space-between;
        gap: 12px;
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: var(--black);
        color: var(--cream);
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
      }
      .sticky-bar-left {
        display: flex; flex-direction: column; gap: 2px; min-width: 0;
      }
      .sticky-bar-name {
        font-family: var(--D); font-weight: 900; font-size: 13px;
        letter-spacing: 0.06em; text-transform: uppercase;
        color: var(--cream);
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      }
      .sticky-bar-price {
        font-family: var(--D); font-weight: 700; font-size: 12px;
        color: rgba(240,234,214,0.65);
      }
      .sticky-bar .btn-red {
        padding: 14px 22px; font-size: 12px; flex-shrink: 0;
        background: var(--cream); color: var(--black); border: none;
        font-family: var(--D); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
        cursor: pointer; transition: background 180ms ease, color 180ms ease;
      }
      .sticky-bar .btn-red:hover { background: var(--red); color: var(--cream); }
      body { padding-bottom: 84px; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .pdp { grid-template-columns: 1fr; padding: 16px 0 64px; gap: 0; }
      .info { position: static; padding: 28px 24px 0; }
      .gallery-desktop { display: none; }
      .gallery-mobile { display: block; }
      .others { padding: 80px 24px; }
      .others-grid { grid-template-columns: 1fr; gap: 14px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
      .editorial { padding: 56px 24px 64px; }
    }
    @media (max-width: 600px) {
      nav { padding: 0 20px; }
      .nav-links a { padding: 0 10px; font-size: 11px; }
      .back-strip-inner { padding: 12px 20px; }
      .thumbs { grid-template-columns: repeat(4, 1fr); }
      .thumb { width: 100%; height: auto; aspect-ratio: 1 / 1; }
      .footer-main { grid-template-columns: 1fr; padding: 48px 24px 32px; }
    }

/* ── Scope fixes: only the top header should be fixed ── */
.back-strip nav, .back-strip nav * { position: static; }
.bs-crumbs {
  display: flex; align-items: center; gap: 8px;
  position: static !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  height: auto !important;
}
.bs-crumb {
  font-family: var(--D); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(10,10,10,0.7); text-decoration: none;
  transition: color 0.2s;
}
.bs-crumb:hover { color: var(--red); }
.back-strip-inner .bs-back { margin-left: 16px; }
@media (max-width: 600px) {
  .back-strip-inner .bs-back { display: none; }
  .bs-crumbs { gap: 6px; }
  .bs-crumb { font-size: 10px; letter-spacing: 0.14em; }
}

/* Newsletter band */
.footer-newsletter-band { padding: clamp(72px, 10vw, 128px) 40px 56px; border-top: 1px solid rgba(10,10,10,0.08); border-bottom: 1px solid rgba(10,10,10,0.08); background: var(--cream, #F0EAD6); }
.fnb-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 112px); align-items: end; }
.fnb-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(10,10,10,0.7); margin-bottom: 28px; display: block; }
.fnb-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(40px, 5.4vw, 72px); line-height: 0.95; letter-spacing: -0.02em; color: #0A0A0A; margin: 0; }
.fnb-right { width: 100%; }
.fnb-form { display: block; max-width: 480px; margin-left: auto; }
.fnb-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(10,10,10,0.7); display: block; margin-bottom: 16px; }
.fnb-row { display: flex; align-items: center; border-bottom: 1px solid #0A0A0A; padding-bottom: 14px; }
.fnb-input { flex: 1; background: transparent; border: 0; outline: none; font-family: 'Barlow', sans-serif; font-size: 18px; color: #0A0A0A; padding: 0; min-width: 0; }
.fnb-input::placeholder { color: rgba(10,10,10,0.7); }
.fnb-arrow { background: none; border: 0; cursor: pointer; font-family: 'Barlow', sans-serif; font-size: 22px; color: #0A0A0A; padding: 0 0 0 16px; transition: transform 0.3s ease, color 0.2s; line-height: 1; }
.fnb-arrow:hover { transform: translateX(6px); color: #D0382C; }
.fnb-fineprint { font-family: 'Barlow', sans-serif; font-size: 12px; line-height: 1.5; color: rgba(10,10,10,0.7); margin-top: 18px; }
.fnb-fineprint a { color: #0A0A0A; text-decoration: underline; text-underline-offset: 3px; }
.fnb-msg { font-family: 'Barlow', sans-serif; font-size: 13px; color: #D0382C; margin-top: 14px; }
.fnb-region { max-width: 1280px; margin: clamp(48px, 6vw, 72px) auto 0; padding-top: 28px; border-top: 1px solid rgba(10,10,10,0.08); display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.fnb-region-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(10,10,10,0.7); }
.fnb-region-select { background: transparent; border: 0; padding: 6px 22px 6px 0; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #0A0A0A; cursor: pointer; outline: none; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%230A0A0A' stroke-width='1.5' d='M1 1l4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right center; }
@media (max-width: 768px) {
  .footer-newsletter-band { padding: 72px 24px 40px; }
  .fnb-inner { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .fnb-form { margin-left: 0; }
  .fnb-region { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 40px; padding-top: 24px; }
}
