    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background-color: #FFFFFF;
      color: #0C0A09;
      font-family: 'Figtree', sans-serif;
      font-weight: 300;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* Grain texture overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.35;
    }

    /* Nav */
    nav#nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.5rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s, backdrop-filter 0.4s, transform 0.35s ease;
      will-change: transform;
    }
    nav#nav.nav-hidden {
      transform: translateY(-100%);
    }
    @media (prefers-reduced-motion: reduce) {
      nav#nav { transition: background 0.4s, backdrop-filter 0.4s; }
    }
    nav#nav.scrolled {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(12, 10, 9, 0.08);
    }
    .nav-logo {
      font-family: 'Figtree', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: #0C0A09;
      text-decoration: none;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      position: relative;
      height: 1.5rem;
    }
    .nav-logo img {
      height: 165px;
      width: auto;
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      pointer-events: auto;
    }
    .nav-links {
      display: flex;
      align-items: center;
    }
    .nav-links a {
      color: rgba(12, 10, 9, 0.5);
      text-decoration: none;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 300;
      transition: color 0.2s;
      margin-left: 2.5rem;
    }
    .nav-links a:hover { color: #0C0A09; }
    .nav-cta {
      border: 1px solid rgba(12, 10, 9, 0.6);
      color: #0C0A09 !important;
      padding: 0.45rem 1.2rem;
      border-radius: 2px;
      transition: background 0.2s, border-color 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover {
      background: rgba(12, 10, 9, 0.12) !important;
      border-color: #0C0A09 !important;
      transform: translateY(-1px);
    }
    .nav-burger {
      display: none;
      background: none;
      border: 0;
      padding: 0.5rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      position: relative;
      z-index: 101;
    }
    .nav-burger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: #0C0A09;
      margin: 5px auto;
      transition: transform 0.3s, opacity 0.3s;
    }
    nav#nav.open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    nav#nav.open .nav-burger span:nth-child(2) { opacity: 0; }
    nav#nav.open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 2.5rem 6rem;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('images/bikes/canigo/canigo%20perfil%20apliada.webp');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      background-color: #F5F4F3;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 40%, rgba(255,255,255,0.1) 100%);
      pointer-events: none;
    }
    .hero-mountain {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 100%);
      z-index: 1;
    }
    .hero-accent {
      position: absolute;
      top: 15%;
      right: 10%;
      width: 45vw;
      height: 45vw;
      max-width: 600px;
      max-height: 600px;
      background: radial-gradient(ellipse at center, rgba(12, 10, 9, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; max-width: 72rem; margin: 0 auto; width: 100%; }
    .hero-tag {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #0C0A09;
      margin-bottom: 1.5rem;
      font-weight: 400;
    }
    .hero-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(4rem, 8vw, 6.875rem);
      font-weight: 300;
      line-height: 0.92;
      letter-spacing: -0.03em;
      color: #0C0A09;
      margin-bottom: 2rem;
    }
    .hero-title em {
      font-style: italic;
      color: rgba(12, 10, 9, 0.5);
    }
    .hero-sub {
      font-size: clamp(0.9rem, 1.5vw, 1rem);
      color: rgba(12, 10, 9, 0.55);
      max-width: 42ch;
      line-height: 1.75;
      font-weight: 300;
      letter-spacing: -0.005em;
      margin-bottom: 3rem;
    }
    .hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
    .btn-primary {
      background: #0C0A09;
      color: #FAFAF9;
      padding: 0.85rem 2.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
      cursor: pointer;
    }
    .btn-primary:hover { background: #0C0A09; transform: translateY(-1px) !important; }
    .btn-secondary {
      color: rgba(12, 10, 9, 0.55);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      transition: color 0.2s, transform 0.15s;
      cursor: pointer;
    }
    .btn-secondary:hover { color: #0C0A09; transform: translateY(-1px) !important; }
    .btn-secondary svg { transition: transform 0.2s; }
    .btn-secondary:hover svg { transform: translateX(3px); }

    /* Section commons */
    section { padding: 8rem 2.5rem; }
    .section-inner { max-width: 72rem; margin: 0 auto; }
    .section-tag {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 400;
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: #0C0A09;
    }
    .section-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(2.25rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: #0C0A09;
      margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: rgba(12, 10, 9, 0.5); }

    /* Divider */
    .divider {
      border: none;
      border-top: 1px solid rgba(12, 10, 9, 0.08);
      margin: 0 2.5rem;
    }

    /* Models grid */
    .models-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1px;
      background: rgba(12, 10, 9, 0.08);
      border: 1px solid rgba(12, 10, 9, 0.08);
    }
    .model-card {
      background: #FFFFFF;
      padding: 2.5rem 2rem;
      cursor: pointer;
      transition: background 0.25s;
      position: relative;
      overflow: hidden;
    }
    .model-card:hover { background: #F5F4F3; }
    .model-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: #0C0A09;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .model-card:hover::after { transform: scaleX(1); }
    .model-featured { background: #F5F4F3; }
    .model-featured::after { transform: scaleX(1); background: #0C0A09; }
    .model-tag {
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.6);
      margin-bottom: 1rem;
      font-weight: 400;
    }
    .model-name {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 300;
      color: #0C0A09;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .model-desc {
      font-size: 0.875rem;
      color: rgba(12, 10, 9, 0.55);
      line-height: 1.75;
      letter-spacing: -0.005em;
      font-weight: 300;
      margin-bottom: 1.75rem;
    }
    .model-price {
      font-family: 'Figtree', sans-serif;
      font-size: 1.2rem;
      font-weight: 300;
      color: #0C0A09;
      letter-spacing: 0.02em;
    }
    .model-badge {
      display: inline-block;
      background: rgba(12, 10, 9, 0.15);
      border: 1px solid rgba(12, 10, 9, 0.5);
      color: #0C0A09;
      font-size: 0.6rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 400;
      padding: 0.25rem 0.6rem;
      border-radius: 1px;
      margin-bottom: 1rem;
    }

    /* Story section */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .story-text p {
      font-size: 0.975rem;
      color: rgba(12, 10, 9, 0.6);
      line-height: 1.75;
      font-weight: 300;
      letter-spacing: -0.005em;
      margin-bottom: 1.25rem;
    }
    .story-text p strong { color: rgba(12, 10, 9, 0.85); font-weight: 400; }
    .story-visual {
      position: relative;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, #F5F4F3, #EDEBE8);
      border: 1px solid rgba(12, 10, 9, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .story-logo-mark {
      opacity: 0.12;
    }

    /* Values */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: rgba(12, 10, 9, 0.08);
      border: 1px solid rgba(12, 10, 9, 0.08);
    }
    .value-item {
      background: #FFFFFF;
      padding: 2.5rem 1.5rem;
      text-align: center;
    }
    .value-num {
      font-family: 'Figtree', sans-serif;
      font-size: 2.5rem;
      font-weight: 300;
      letter-spacing: -0.02em;
      color: rgba(12, 10, 9, 0.08);
      display: block;
      margin-bottom: 1rem;
    }
    .value-name {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.55);
      font-weight: 400;
    }

    /* Stats */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid rgba(12, 10, 9, 0.08);
    }
    .stat-item {
      padding: 3rem 2.5rem;
      border-right: 1px solid rgba(12, 10, 9, 0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(3rem, 4vw, 3.5rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      color: #0C0A09;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-num span { color: #0C0A09; }
    .stat-label {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.6);
      font-weight: 400;
    }

    /* Canigó featured */
    .canigo-section {
      background: #F5F4F3;
      border-top: 1px solid rgba(12, 10, 9, 0.08);
      border-bottom: 1px solid rgba(12, 10, 9, 0.08);
      padding: 0;
      overflow: hidden;
    }
    .canigo-hero {
      position: relative;
      display: block;
      width: 100%;
      min-height: 85vh;
      cursor: pointer;
      overflow: hidden;
    }
    .canigo-hero-image {
      position: absolute;
      inset: 0;
      background-size: contain;
      background-position: 70% center;
      background-repeat: no-repeat;
      background-color: #F5F4F3;
      transform: scale(1.08);
      transition: transform 0.8s ease;
      filter: drop-shadow(0 40px 80px rgba(12, 10, 9, 0.25));
      z-index: 1;
    }
    .canigo-hero:hover .canigo-hero-image {
      transform: scale(1.12);
    }
    .canigo-hero-text {
      position: absolute;
      top: 50%;
      left: 6%;
      transform: translateY(-50%);
      z-index: 2;
      max-width: 32rem;
      padding: 3rem 2.5rem;
      background: rgba(245, 244, 243, 0.55);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 4px;
      box-shadow:
        0 30px 60px -15px rgba(12, 10, 9, 0.25),
        0 10px 30px -10px rgba(12, 10, 9, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      transition: transform 0.6s ease, box-shadow 0.6s ease;
    }
    .canigo-hero:hover .canigo-hero-text {
      transform: translateY(-50%) translateY(-4px);
      box-shadow:
        0 40px 80px -15px rgba(12, 10, 9, 0.5),
        0 15px 40px -10px rgba(12, 10, 9, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    .spec-list { list-style: none; padding: 0; margin: 0; }
    .spec-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(12, 10, 9, 0.08);
      font-size: 0.82rem;
    }
    .spec-label { color: rgba(12, 10, 9, 0.6); font-weight: 400; letter-spacing: 0.04em; }
    .spec-value { color: rgba(12, 10, 9, 0.75); font-weight: 400; text-align: right; max-width: 65%; }
    .spec-group-title {
      font-family: 'Figtree', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 500;
      margin: 2.25rem 0 0.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(12, 10, 9, 0.2);
    }
    .spec-group-title:first-child { margin-top: 0; }

    /* Launch banner */
    .launch-section {
      background: linear-gradient(135deg, #F5F4F3 0%, #EDEBE8 50%, #F5F4F3 100%);
      text-align: center;
      border-top: 1px solid rgba(12, 10, 9, 0.08);
    }
    .launch-date {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(0.7rem, 2vw, 0.85rem);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #0C0A09;
      margin-bottom: 1rem;
      font-weight: 400;
    }
    .launch-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(2.25rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 1.5rem;
      color: #0C0A09;
    }
    .launch-sub {
      font-size: 0.9rem;
      color: rgba(12, 10, 9, 0.55);
      max-width: 48ch;
      margin: 0 auto 3rem;
      line-height: 1.75;
      letter-spacing: -0.005em;
      font-weight: 300;
    }

    /* Email form */
    .form-row { display: flex; gap: 0; max-width: 420px; margin: 0 auto; }
    .form-input {
      flex: 1;
      background: #FFFFFF;
      border: 1px solid rgba(12, 10, 9, 0.2);
      border-right: none;
      padding: 0.85rem 1.25rem;
      color: #0C0A09;
      font-size: 0.875rem;
      font-family: 'Figtree', sans-serif;
      font-weight: 300;
      letter-spacing: -0.005em;
      outline: none; /* compensat amb :focus-visible al bloc Focus visible */
      border-radius: 2px 0 0 2px;
      transition: border-color 0.2s;
    }
    .form-input::placeholder { color: rgba(12, 10, 9, 0.5); }
    .form-input:focus { border-color: rgba(12, 10, 9, 0.5); }
    .form-submit {
      background: #0C0A09;
      color: #FAFAF9;
      border: none;
      padding: 0.85rem 1.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      font-family: 'Figtree', sans-serif;
      cursor: pointer;
      border-radius: 0 2px 2px 0;
      transition: background 0.2s;
    }
    .form-submit:hover { background: #0C0A09; }

    /* Form loading state */
    .is-loading {
      opacity: 0.7;
      cursor: wait;
    }
    .form-spinner {
      display: inline-block;
      width: 11px;
      height: 11px;
      border: 1.5px solid currentColor;
      border-top-color: transparent;
      border-radius: 50%;
      margin-right: 0.55rem;
      vertical-align: -1px;
      animation: form-spin 0.7s linear infinite;
    }
    @keyframes form-spin { to { transform: rotate(360deg); } }
    @media (prefers-reduced-motion: reduce) {
      .form-spinner { animation: none; }
    }
    .form-error {
      display: block;
      margin-top: 1rem;
      padding: 0.85rem 1rem;
      border: 1px solid #B33A3A;
      border-radius: 2px;
      color: #B33A3A;
      font-size: 0.8rem;
      letter-spacing: 0.02em;
      font-weight: 300;
      line-height: 1.5;
      background: rgba(179, 58, 58, 0.04);
    }

    /* Form validation */
    .field-error {
      display: none;
      font-size: 0.7rem;
      color: #B33A3A;
      margin-top: 0.4rem;
      letter-spacing: 0.02em;
      font-weight: 300;
      line-height: 1.4;
    }
    .field-error.show { display: block; }
    .form-input.is-invalid,
    .field input.is-invalid,
    .field select.is-invalid,
    .field textarea.is-invalid {
      border-color: #B33A3A !important;
    }
    .form-input.is-invalid:focus,
    .field input.is-invalid:focus,
    .field select.is-invalid:focus,
    .field textarea.is-invalid:focus {
      border-color: #B33A3A !important;
    }
    .form-row-wrap .field-error { margin-top: 0.6rem; text-align: left; }
    /* Estats de focus de camps de formulari: vegeu el bloc Focus visible al final del fitxer. */

    /* Footer */
    footer {
      background: #FFFFFF;
      color: #0C0A09;
      padding: 5rem 2.5rem 0;
      margin-top: 6rem;
      border-top: 1px solid rgba(12, 10, 9, 0.08);
    }
    .footer-inner {
      max-width: 72rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(12rem, 1fr) 3fr;
      gap: 4rem;
      padding-bottom: 4rem;
    }
    .footer-brand-block { display: flex; flex-direction: column; margin-top: -1.75rem; }
    .footer-brand {
      font-family: 'Figtree', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 0.18em;
      color: #0C0A09;
      font-weight: 600;
      text-transform: uppercase;
    }
    .footer-brand img {
      height: 92px;
      width: auto;
      display: block;
    }
    .footer-sub {
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      color: rgba(12, 10, 9, 0.55);
      font-weight: 300;
      margin-top: 0.85rem;
      line-height: 1.6;
      max-width: 22ch;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
    }
    .footer-col-title {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 500;
      margin-bottom: 1.25rem;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .footer-col a {
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      color: rgba(12, 10, 9, 0.6);
      text-decoration: none;
      font-weight: 300;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #0C0A09; }
    .footer-bottom {
      border-top: 1px solid rgba(12, 10, 9, 0.08);
      padding: 1.5rem 0;
    }
    .footer-bottom-inner {
      max-width: 72rem;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
    }
    .footer-legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-legal-links a {
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      color: rgba(12, 10, 9, 0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal-links a:hover { color: #0C0A09; }
    .footer-copy {
      font-size: 0.68rem;
      color: rgba(12, 10, 9, 0.45);
      font-weight: 300;
      letter-spacing: 0.05em;
    }
    @media (max-width: 900px) {
      .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
      .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      footer { padding: 3.5rem 1.5rem 0; }
      .footer-cols { grid-template-columns: 1fr 1fr; }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Mobile */
    @media (max-width: 768px) {
      nav#nav { padding: 1.25rem 1.5rem; }

      /* Mobile menu */
      .nav-burger { display: block; }
      .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1.5rem;
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 6rem 2rem 2.5rem;
        z-index: 99;
        transform: translateY(-100%);
        transition: transform 0.35s ease;
        visibility: hidden;
      }
      nav#nav.open .nav-links {
        transform: translateY(0);
        visibility: visible;
      }
      .nav-links a {
        margin-left: 0;
        font-size: 1rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #0C0A09;
        font-weight: 300;
        padding: 0.5rem 0;
      }
      .nav-links .nav-cta {
        margin-top: 0.75rem;
        padding: 0.65rem 1.4rem;
      }

      section { padding: 5rem 1.5rem; }
      .divider { margin: 0 1.5rem; }
      .hero { padding: 0 1.5rem 4rem; }
      .story-grid { grid-template-columns: 1fr; gap: 3rem; }
      .story-visual { aspect-ratio: 16/9; }
      .values-grid { grid-template-columns: repeat(3, 1fr); }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .canigo-hero { min-height: auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
      .canigo-hero-image { position: relative; inset: auto; min-height: 320px; background-position: center; transform: none; }
      .canigo-hero-text { position: relative; top: auto; left: auto; transform: none; max-width: 100%; padding: 2rem 1.5rem; }
      .canigo-hero:hover .canigo-hero-image { transform: none; }
      .canigo-hero:hover .canigo-hero-text { transform: none; }
      .models-grid { grid-template-columns: 1fr; }
      .form-row { max-width: 100%; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    }

    /* ── Gamma: selector de categories (card amb imatge) ── */
    .gamma-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 4rem;
    }
    .gamma-cat-block {
      position: relative;
      display: block;
      aspect-ratio: 4/5;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      background: #0C0A09;
      user-select: none;
      isolation: isolate;
      text-decoration: none;
      color: inherit;
      transition: transform 0.15s;
    }
    .gamma-cat-block:hover { transform: translateY(-1px); }
    .gamma-cat-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
      z-index: 1;
    }
    .gamma-cat-block:hover .gamma-cat-img { transform: scale(1.04); }
    .gamma-cat-block::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(12,10,9,0.85) 0%, rgba(12,10,9,0.5) 45%, rgba(12,10,9,0) 70%);
      z-index: 2;
    }
    .gamma-cat-content {
      position: absolute;
      left: 2rem;
      right: 2rem;
      bottom: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: #FFFFFF;
      z-index: 3;
    }
    .gamma-cat-name {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(1.4rem, 2.2vw, 1.85rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: #FFFFFF;
    }
    .gamma-cat-arrow {
      flex-shrink: 0;
      color: #FFFFFF;
      transition: transform 0.25s;
    }
    .gamma-cat-block:hover .gamma-cat-arrow { transform: translateX(5px); }
    /* camps legacy ocults per compatibilitat */
    .gamma-cat-sub, .gamma-cat-footer, .gamma-cat-count { display: none; }

    /* ── Gamma: landing de categoria ── */
    .gamma-landing-header { margin-bottom: 4rem; }
    .gamma-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Figtree', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(14, 12, 10, 0.4);
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      margin-bottom: 3rem;
      transition: color 0.2s, transform 0.15s;
    }
    .gamma-back-btn:hover { color: #0E0C0A; transform: translateY(-1px); }
    .gamma-landing-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 0.95;
      color: #0E0C0A;
      margin-bottom: 1.25rem;
    }
    .gamma-landing-desc {
      font-size: 0.9rem;
      color: rgba(14, 12, 10, 0.55);
      font-weight: 300;
      line-height: 1.75;
      max-width: 52ch;
      margin-bottom: 0.75rem;
    }
    .gamma-landing-count {
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(14, 12, 10, 0.4);
      font-weight: 400;
    }

    /* ── Gamma: grid de models (targeta producte) ── */
    .gamma-models-grid {
      display: grid;
      gap: 2rem;
    }
    .gamma-models-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .gamma-models-grid.cols-1 { grid-template-columns: 1fr; max-width: 560px; }
    .gamma-model-card {
      display: block;
      background: #FFFFFF;
      color: inherit;
      text-decoration: none;
      border: 1px solid rgba(14, 12, 10, 0.08);
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .gamma-model-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -20px rgba(12, 10, 9, 0.15);
    }
    .gamma-model-image {
      position: relative;
      aspect-ratio: 4/3;
      background-color: #F2F1EF;
      background-size: auto 100%;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
    }
    .gamma-model-badge {
      position: absolute;
      top: 1.25rem;
      left: 1.25rem;
      background: #0C0A09;
      color: #FFFFFF;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 0.4rem 0.9rem;
      border-radius: 4px;
    }
    .gamma-model-info {
      padding: 1.75rem 1.75rem 2rem;
      border-top: 1px solid rgba(14, 12, 10, 0.08);
    }
    .gamma-model-name {
      font-family: 'Figtree', sans-serif;
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: -0.015em;
      color: #0C0A09;
      margin-bottom: 0.5rem;
    }
    .gamma-model-desc {
      font-size: 0.95rem;
      color: rgba(12, 10, 9, 0.6);
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 1.25rem;
    }
    .gamma-model-price {
      font-family: 'Figtree', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #0C0A09;
      letter-spacing: 0.01em;
    }
    /* ── Carrusel horitzontal de models relacionats ── */
    .models-scroll {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }
    .models-scroll::-webkit-scrollbar { height: 6px; }
    .models-scroll::-webkit-scrollbar-track { background: rgba(12,10,9,0.05); border-radius: 3px; }
    .models-scroll::-webkit-scrollbar-thumb { background: rgba(12,10,9,0.2); border-radius: 3px; }
    .models-scroll .gamma-model-card {
      flex: 0 0 260px;
      scroll-snap-align: start;
    }
    .models-scroll .gamma-model-image { aspect-ratio: 4/3; background-size: 70%; }
    .models-scroll .gamma-model-info { padding: 1.1rem 1.25rem 1.25rem; }
    .models-scroll .gamma-model-name { font-size: 1.1rem; margin-bottom: 0.3rem; }
    .models-scroll .gamma-model-desc { font-size: 0.8rem; line-height: 1.4; margin-bottom: 0.6rem; }
    .models-scroll .gamma-model-price { font-size: 0.95rem; }
    .models-scroll .gamma-model-badge { top: 0.75rem; left: 0.75rem; font-size: 0.65rem; padding: 0.25rem 0.6rem; }
    @media (max-width: 768px) {
      .models-scroll .gamma-model-card { flex: 0 0 220px; }
    }

    /* ── Fitxa tècnica ── */
    .product-hero {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .product-image {
      aspect-ratio: 4/3;
      background-color: #F2F1EF;
      background-size: auto 100%;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 6px;
    }
    .product-gallery {
      position: relative;
    }
    .product-gallery-stage {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: 6px;
      overflow: hidden;
      background: #F2F1EF;
    }
    .product-gallery-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.2, 1);
      will-change: transform;
    }
    .product-gallery-track .product-image {
      position: relative;
      flex: 0 0 100%;
      aspect-ratio: auto;
      border-radius: 0;
    }
    @media (prefers-reduced-motion: reduce) {
      .product-gallery-track { transition: none; }
    }
    .product-gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(12, 10, 9, 0.1);
      color: #0C0A09;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, opacity 0.2s;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 2;
    }
    .product-gallery-arrow:hover {
      background: #FFFFFF;
      transform: translateY(-50%) scale(1.05);
    }
    .product-gallery-arrow[disabled] {
      opacity: 0.3;
      cursor: not-allowed;
    }
    .product-gallery-prev { left: 0.85rem; }
    .product-gallery-next { right: 0.85rem; }
    .product-gallery-dots {
      display: flex;
      justify-content: center;
      gap: 0.45rem;
      margin-top: 1rem;
    }
    .product-gallery-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: rgba(12, 10, 9, 0.2);
      border: 0;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .product-gallery-dot:hover { background: rgba(12, 10, 9, 0.4); }
    .product-gallery-dot.is-active {
      background: #0C0A09;
      transform: scale(1.2);
    }
    .product-cat {
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.6);
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .product-name {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1;
      color: #0C0A09;
      margin-bottom: 0.75rem;
    }
    .product-tagline {
      font-size: 1rem;
      color: rgba(12, 10, 9, 0.6);
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    .product-price {
      font-family: 'Figtree', sans-serif;
      font-size: 1.75rem;
      font-weight: 600;
      color: #0C0A09;
      margin-bottom: 2rem;
    }
    @media (max-width: 768px) {
      .product-hero { grid-template-columns: 1fr; gap: 2rem; }
    }

    .gamma-specs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid rgba(14, 12, 10, 0.08);
      margin-bottom: 2.5rem;
    }
    .gamma-spec {
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(14, 12, 10, 0.08);
    }
    .gamma-spec:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid rgba(14, 12, 10, 0.08); }
    .gamma-spec:nth-child(even) { padding-left: 1.5rem; }
    .gamma-spec-label {
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(14, 12, 10, 0.4);
      font-weight: 400;
      display: block;
      margin-bottom: 0.3rem;
    }
    .gamma-spec-value {
      font-size: 0.85rem;
      color: rgba(14, 12, 10, 0.75);
      font-weight: 300;
    }

    /* Product features (horizontal) */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .feature-card {
      display: flex;
      flex-direction: column;
    }
    .feature-image {
      width: 100%;
      aspect-ratio: 4/3;
      background-color: #E7E5E4;
      background-size: cover;
      background-position: center;
      margin-bottom: 1.25rem;
    }
    .feature-title {
      font-size: 1.25rem;
      font-weight: 500;
      color: #0C0A09;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }
    .feature-text {
      font-size: 0.9rem;
      color: rgba(12, 10, 9, 0.7);
      font-weight: 300;
      line-height: 1.6;
    }

    /* Feature rows (alternating text/image) */
    .feature-rows { display: flex; flex-direction: column; gap: 1.5rem; }
    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: stretch;
    }
    .feature-row .feature-row-text {
      background: #0C0A09;
      color: #FAFAF9;
      padding: 4rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .feature-row .feature-row-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 300;
      color: rgba(250, 250, 249, 0.6);
      margin-bottom: 1rem;
      border: 1px solid rgba(250, 250, 249, 0.3);
      padding: 0.5rem 1rem;
      align-self: flex-start;
      border-radius: 999px;
    }
    .feature-row .feature-row-title {
      font-size: 2.5rem;
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
    }
    .feature-row .feature-row-body {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(250, 250, 249, 0.75);
      max-width: 38ch;
    }
    .feature-row .feature-row-image {
      background-color: #0C0A09;
      background-size: cover;
      background-position: center;
      min-height: 420px;
    }
    .feature-row.reverse { direction: rtl; }
    .feature-row.reverse > * { direction: ltr; }

    @media (max-width: 768px) {
      .gamma-categories { grid-template-columns: 1fr; gap: 1rem; }
      .gamma-cat-block { aspect-ratio: 16/10; }
      .gamma-cat-content { left: 1.5rem; right: 1.5rem; bottom: 1.25rem; }
      .gamma-models-grid.cols-2 { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .feature-row { grid-template-columns: 1fr; }
      .feature-row .feature-row-text { padding: 2.5rem 1.75rem; }
      .feature-row .feature-row-title { font-size: 1.75rem; }
      .feature-row .feature-row-image { min-height: 280px; }
      .feature-row.reverse { direction: ltr; }
    }

    /* Breadcrumbs */
    .breadcrumb {
      margin-bottom: 1.75rem;
    }
    .breadcrumb ol {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      font-family: 'Figtree', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 400;
    }
    .breadcrumb li {
      display: inline-flex;
      align-items: center;
      color: #0C0A09;
    }
    .breadcrumb li + li::before {
      content: '›';
      margin: 0 0.6rem;
      color: rgba(12, 10, 9, 0.5);
      letter-spacing: 0;
      font-size: 0.95rem;
      line-height: 1;
    }
    .breadcrumb a {
      color: rgba(12, 10, 9, 0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .breadcrumb a:hover { color: #0C0A09; }
    .breadcrumb a:focus-visible {
      outline: 2px solid rgba(12, 10, 9, 0.6);
      outline-offset: 2px;
    }
    .breadcrumb [aria-current="page"] {
      color: #0C0A09;
    }
    @media (max-width: 480px) {
      .breadcrumb ol {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .breadcrumb ol::-webkit-scrollbar { display: none; }
      .breadcrumb li { white-space: nowrap; flex-shrink: 0; }
    }

    /* Geometry section */
    .geometry-section { padding-top: 1rem; }
    .geometry-intro {
      color: rgba(12,10,9,0.6);
      font-size: 0.95rem;
      line-height: 1.7;
      font-weight: 300;
      max-width: 60ch;
      margin-bottom: 2.5rem;
    }
    .geometry-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
      gap: 3rem;
      align-items: start;
    }
    .geometry-diagram {
      background: #FAFAF9;
      border: 1px solid rgba(12,10,9,0.08);
      border-radius: 4px;
      overflow: hidden;
      align-self: start;
    }
    .geometry-diagram svg,
    .geometry-diagram img { width: 100%; height: auto; display: block; }
    .size-selector {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    .size-btn {
      font-family: 'Figtree', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 400;
      background: transparent;
      color: rgba(12,10,9,0.55);
      border: 1px solid rgba(12,10,9,0.15);
      padding: 0.55rem 1.1rem;
      cursor: pointer;
      border-radius: 2px;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      min-width: 3rem;
    }
    .size-btn:hover { color: #0C0A09; border-color: rgba(12,10,9,0.6); }
    .size-btn.is-active {
      background: #0C0A09;
      color: #FAFAF9;
      border-color: #0C0A09;
    }
    .size-btn:focus-visible {
      outline: 2px solid rgba(12, 10, 9, 0.6);
      outline-offset: 2px;
    }
    .geometry-table-wrap {
      position: relative;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border: 1px solid rgba(12,10,9,0.08);
      border-radius: 4px;
    }
    .geometry-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.8rem;
      font-weight: 300;
      font-variant-numeric: tabular-nums;
    }
    .geometry-table th,
    .geometry-table td {
      padding: 0.7rem 0.85rem;
      text-align: right;
      border-bottom: 1px solid rgba(12,10,9,0.06);
      white-space: nowrap;
    }
    .geometry-table th[scope="col"] {
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0C0A09;
      background: rgba(12,10,9,0.03);
    }
    .geometry-table th[scope="row"] {
      text-align: left;
      font-weight: 400;
      color: rgba(12,10,9,0.7);
    }
    .geometry-table tbody tr:last-child th,
    .geometry-table tbody tr:last-child td { border-bottom: none; }
    .geometry-table .is-active-col {
      background: rgba(12,10,9,0.06);
      color: #0C0A09;
      font-weight: 500;
    }
    .geometry-note {
      font-size: 0.7rem;
      color: rgba(12,10,9,0.6);
      margin-top: 1rem;
      letter-spacing: 0.02em;
      line-height: 1.6;
      font-weight: 300;
    }
    .geometry-cta { display: inline-block; margin-top: 1.5rem; }
    @media (max-width: 960px) {
      .geometry-layout { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 640px) {
      .geometry-table-wrap::after {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 28px;
        background: linear-gradient(to right, transparent, #FFFFFF);
        pointer-events: none;
      }
      .geometry-table { font-size: 0.75rem; }
      .geometry-table th, .geometry-table td { padding: 0.6rem 0.7rem; }
    }

    /* Sizing & bike fit */
    .sizing-section { padding-top: 1rem; }
    .sizing-block { margin-bottom: 2.5rem; }
    .sizing-block:last-child { margin-bottom: 0; }
    .sizing-subtitle {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 400;
      margin-bottom: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .sizing-subtitle::before {
      content: '';
      display: block;
      width: 1.5rem;
      height: 1px;
      background: rgba(12, 10, 9, 0.6);
    }
    .sizing-text {
      color: rgba(12,10,9,0.7);
      font-size: 0.95rem;
      line-height: 1.75;
      font-weight: 300;
      max-width: 65ch;
    }
    .sizing-text + .sizing-text { margin-top: 0.85rem; }
    .sizing-table-wrap {
      border: 1px solid rgba(12,10,9,0.08);
      border-radius: 4px;
      max-width: 540px;
      margin-top: 1rem;
    }
    .sizing-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
      font-weight: 300;
      font-variant-numeric: tabular-nums;
    }
    .sizing-table th,
    .sizing-table td {
      padding: 0.75rem 1rem;
      text-align: left;
      border-bottom: 1px solid rgba(12,10,9,0.06);
    }
    .sizing-table tbody tr:last-child th,
    .sizing-table tbody tr:last-child td { border-bottom: none; }
    .sizing-table th[scope="col"] {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 500;
      background: rgba(12,10,9,0.03);
    }
    .sizing-table th[scope="row"] {
      font-weight: 500;
      color: #0C0A09;
      width: 6rem;
    }
    .sizing-table td {
      color: rgba(12,10,9,0.7);
    }
    .sizing-note {
      font-size: 0.7rem;
      color: rgba(12,10,9,0.6);
      margin-top: 0.85rem;
      letter-spacing: 0.02em;
      font-weight: 300;
      line-height: 1.5;
    }
    .sizing-cta-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 1.25rem;
    }
    .sizing-cta-secondary {
      font-size: 0.85rem;
      color: rgba(12,10,9,0.6);
      line-height: 1.6;
      font-weight: 300;
      max-width: 38ch;
    }
    .sizing-cta-secondary a {
      color: #0C0A09;
      text-decoration: none;
      border-bottom: 1px solid rgba(12,10,9,0.25);
      transition: border-color 0.2s;
    }
    .sizing-cta-secondary a:hover { border-bottom-color: #0C0A09; }
    @media (max-width: 640px) {
      .sizing-table { font-size: 0.8rem; }
      .sizing-table th, .sizing-table td { padding: 0.65rem 0.8rem; }
      .sizing-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .sizing-cta-secondary { max-width: 100%; }
    }

    /* Warranty */
    .warranty-points {
      list-style: none;
      padding: 0;
      margin: 0 0 1.75rem 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .warranty-points li {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.65;
      color: rgba(12,10,9,0.7);
      padding: 1.25rem 1.4rem;
      border: 1px solid rgba(12,10,9,0.08);
      border-radius: 4px;
    }
    .warranty-points li strong { color: #0C0A09; font-weight: 500; }
    .warranty-link {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0C0A09;
      text-decoration: none;
      border-bottom: 1px solid rgba(12,10,9,0.5);
      padding-bottom: 0.25rem;
      transition: border-color 0.2s;
    }
    .warranty-link:hover { border-bottom-color: #0C0A09; }
    @media (max-width: 768px) {
      .warranty-points { grid-template-columns: 1fr; gap: 0.85rem; }
    }

    /* Warranty page */
    .warranty-page-section { padding: 5rem 2.5rem; }
    .warranty-page-section .section-inner { max-width: 60rem; }
    .warranty-meta {
      display: grid;
      grid-template-columns: 10rem 1fr;
      gap: 1rem 2rem;
      margin: 2rem 0 0 0;
      padding: 0;
      list-style: none;
      font-size: 0.92rem;
      line-height: 1.7;
      font-weight: 300;
    }
    .warranty-meta dt {
      font-size: 0.68rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 500;
      padding-top: 0.25rem;
    }
    .warranty-meta dd {
      margin: 0;
      color: rgba(12,10,9,0.7);
    }
    .warranty-steps {
      list-style: none;
      counter-reset: step;
      padding: 0;
      margin: 1.5rem 0 0 0;
    }
    .warranty-steps li {
      counter-increment: step;
      padding: 1rem 0 1rem 3rem;
      position: relative;
      border-bottom: 1px solid rgba(12,10,9,0.06);
      color: rgba(12,10,9,0.7);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
    }
    .warranty-steps li::before {
      content: counter(step, decimal-leading-zero);
      position: absolute;
      left: 0;
      top: 1.05rem;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      color: rgba(12,10,9,0.6);
      font-weight: 500;
    }
    .warranty-steps li:last-child { border-bottom: none; }
    .warranty-legal {
      font-size: 0.72rem;
      color: rgba(12,10,9,0.6);
      line-height: 1.7;
      letter-spacing: 0.01em;
      max-width: 60ch;
      font-weight: 300;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(12,10,9,0.08);
    }
    @media (max-width: 768px) {
      .warranty-page-section { padding: 4rem 1.5rem; }
      .warranty-meta { grid-template-columns: 1fr; gap: 0.25rem 0; }
      .warranty-meta dd { margin-bottom: 1rem; }
    }

    /* Buying process */
    .buy-block {
      margin-top: 1rem;
    }
    .reserve-cta {
      display: inline-block;
      margin-left: 1rem;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      color: #0C0A09;
      text-decoration: none;
      padding: 0.85rem 1.5rem;
      border: 1px solid rgba(12, 10, 9, 0.6);
      border-radius: 2px;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }
    .reserve-cta:hover {
      background: rgba(12, 10, 9, 0.06);
      border-color: #0C0A09;
      transform: translateY(-1px);
    }
    @media (max-width: 540px) {
      .reserve-cta { margin-left: 0; margin-top: 0.85rem; display: inline-block; }
    }

    .buy-process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin: 0 0 1.75rem 0;
      list-style: none;
      padding: 0;
    }
    .buy-process-grid li {
      padding: 1.25rem 1.4rem;
      border: 1px solid rgba(12,10,9,0.08);
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(12,10,9,0.7);
      position: relative;
    }
    .buy-process-grid li .step-num {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      color: rgba(12,10,9,0.6);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    .buy-process-grid li strong {
      display: block;
      color: #0C0A09;
      font-weight: 500;
      margin-bottom: 0.35rem;
      font-size: 0.95rem;
    }
    @media (max-width: 900px) {
      .buy-process-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
      .buy-process-grid { grid-template-columns: 1fr; }
    }

    /* Reviews section (product pages) — DESACTIVAT fins a tenir ressenyes reals.
       Per reactivar: descomentar el bloc i tornar a inserir el HTML a les fitxes producte.
       TODO Aniol: reactivar quan tinguem 5-10 testimonis verídics de clients. */
    /*
    .reviews-section { margin-top: 5rem; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 2rem;
      border-top: 1px solid rgba(12, 10, 9, 0.08);
      border-bottom: 1px solid rgba(12, 10, 9, 0.08);
    }
    .review-item {
      padding: 2.5rem 2rem;
      border-right: 1px solid rgba(12, 10, 9, 0.08);
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .review-item:last-child { border-right: none; }
    .review-quote {
      font-family: 'Figtree', sans-serif;
      font-size: 1rem;
      font-style: italic;
      line-height: 1.65;
      color: rgba(12, 10, 9, 0.8);
      font-weight: 300;
      margin: 0;
    }
    .review-quote::before {
      content: '"';
      display: block;
      font-size: 2rem;
      color: rgba(12, 10, 9, 0.2);
      line-height: 0.8;
      margin-bottom: 0.5rem;
      font-style: normal;
    }
    .review-author {
      margin-top: auto;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(12, 10, 9, 0.06);
    }
    .review-author-name {
      font-size: 0.85rem;
      color: #0C0A09;
      font-weight: 500;
      letter-spacing: -0.005em;
    }
    .review-author-meta {
      font-size: 0.7rem;
      color: rgba(12, 10, 9, 0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }
    @media (max-width: 900px) {
      .reviews-grid { grid-template-columns: 1fr; }
      .review-item { border-right: none; border-bottom: 1px solid rgba(12, 10, 9, 0.08); }
      .review-item:last-child { border-bottom: none; }
    }
    */

    /* Buying process page */
    .buy-page-section { padding: 5rem 2.5rem; }
    .buy-page-section .section-inner { max-width: 60rem; }
    .buy-timeline {
      position: relative;
      max-width: 52rem;
      margin: 2.5rem 0 0 0;
      padding: 0;
      list-style: none;
    }
    .buy-timeline::before {
      content: '';
      position: absolute;
      left: 0.5rem;
      top: 0.5rem;
      bottom: 0.5rem;
      width: 1px;
      background: rgba(12,10,9,0.15);
    }
    .buy-timeline > li {
      position: relative;
      padding-left: 3rem;
      padding-bottom: 2.5rem;
    }
    .buy-timeline > li:last-child { padding-bottom: 0; }
    .buy-timeline > li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.35rem;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #0C0A09;
    }
    .buy-step-num {
      font-family: 'Figtree', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(12,10,9,0.6);
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    .buy-step-title {
      font-size: 1.2rem;
      font-weight: 500;
      color: #0C0A09;
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
    }
    .buy-step-text {
      font-size: 0.95rem;
      color: rgba(12,10,9,0.7);
      line-height: 1.7;
      font-weight: 300;
      max-width: 56ch;
    }
    .buy-payment-list,
    .buy-delivery-list,
    .buy-cancel-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0 0;
    }
    .buy-payment-list li,
    .buy-delivery-list li,
    .buy-cancel-list li {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(12,10,9,0.06);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(12,10,9,0.7);
    }
    .buy-payment-list li:last-child,
    .buy-delivery-list li:last-child,
    .buy-cancel-list li:last-child { border-bottom: none; }
    .buy-payment-list strong,
    .buy-delivery-list strong,
    .buy-cancel-list strong { color: #0C0A09; font-weight: 500; }

    .buy-faq { margin-top: 2rem; }
    .buy-faq details {
      border-bottom: 1px solid rgba(12,10,9,0.08);
      padding: 1.25rem 0;
    }
    .buy-faq details:last-child { border-bottom: none; }
    .buy-faq summary {
      cursor: pointer;
      font-size: 1rem;
      font-weight: 400;
      color: #0C0A09;
      letter-spacing: -0.01em;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .buy-faq summary::-webkit-details-marker { display: none; }
    .buy-faq summary::after {
      content: '+';
      font-size: 1.3rem;
      color: rgba(12,10,9,0.6);
      transition: transform 0.2s;
      line-height: 1;
    }
    .buy-faq details[open] summary::after { content: '−'; }
    .buy-faq details p {
      margin: 0.85rem 0 0 0;
      font-size: 0.95rem;
      color: rgba(12,10,9,0.7);
      line-height: 1.7;
      font-weight: 300;
      max-width: 60ch;
    }

    /* Returns policy */
    .returns-table-wrap {
      border: 1px solid rgba(12,10,9,0.08);
      border-radius: 4px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-top: 1.5rem;
    }
    .returns-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
      font-weight: 300;
    }
    .returns-table th,
    .returns-table td {
      padding: 0.85rem 1.1rem;
      text-align: left;
      border-bottom: 1px solid rgba(12,10,9,0.06);
      vertical-align: top;
    }
    .returns-table tbody tr:last-child th,
    .returns-table tbody tr:last-child td { border-bottom: none; }
    .returns-table th[scope="col"] {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 500;
      background: rgba(12,10,9,0.03);
      white-space: nowrap;
    }
    .returns-table th[scope="row"] {
      font-weight: 500;
      color: #0C0A09;
      width: 38%;
    }
    .returns-table td {
      color: rgba(12,10,9,0.7);
    }
    .returns-form {
      margin-top: 1rem;
      padding: 1.5rem;
      background: #FAFAF9;
      border: 1px solid rgba(12,10,9,0.08);
      border-radius: 4px;
      font-family: 'Figtree', sans-serif;
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(12,10,9,0.75);
      white-space: pre-wrap;
      overflow-x: auto;
    }
    .returns-form code {
      font-family: inherit;
      font-size: inherit;
      color: inherit;
      background: none;
    }
    @media (max-width: 640px) {
      .returns-table { font-size: 0.8rem; }
      .returns-table th, .returns-table td { padding: 0.7rem 0.85rem; }
      .returns-form { font-size: 0.78rem; padding: 1rem; }
    }

    /* ────────────────────────────────────────────────────────────────
       Focus visible
       Sistema d'indicació de focus per teclat (WCAG 2.4.7, AA).
       Mai apareix amb ratolí o tàctil — només quan la navegació és per teclat.
       ──────────────────────────────────────────────────────────────── */
    :root {
      --focus-ring-color: #0C0A09;
      --focus-ring-offset: #FAFAF9;
      --focus-ring-width: 2px;
      --focus-ring-offset-width: 3px;
    }

    /* Cap focus visible quan l'usuari interacciona amb ratolí o tàctil */
    :focus:not(:focus-visible) {
      outline: none;
    }

    /* Focus visible per defecte a tots els elements interactius */
    :focus-visible {
      outline: var(--focus-ring-width) solid var(--focus-ring-color);
      outline-offset: var(--focus-ring-offset-width);
      border-radius: 2px;
      transition: outline-offset 0.1s ease;
    }

    /* Botons CTA principals — anell crema sobre fons negre + halo extern */
    .btn-primary:focus-visible,
    .nav-cta:focus-visible,
    .contact-submit:focus-visible,
    .form-submit:focus-visible,
    .checkout-submit:focus-visible {
      outline: 2px solid #FAFAF9;
      outline-offset: 2px;
      box-shadow: 0 0 0 4px #0C0A09;
    }

    /* Enllaços del menú principal — sotallat discret en lloc de rectangle */
    .nav-links a:focus-visible,
    .nav-logo:focus-visible {
      outline: none;
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
      text-underline-offset: 6px;
      text-decoration-color: #0C0A09;
    }

    /* Cards clicables — anell que envolta sense tallar la imatge */
    .gamma-cat-block:focus-visible,
    .gamma-model-card:focus-visible,
    .canigo-hero:focus-visible,
    .feature-card:focus-visible {
      outline: 2px solid #0C0A09;
      outline-offset: 4px;
      border-radius: 4px;
    }

    /* Camps de formulari — border + halo subtil en lloc d'outline */
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      border-color: #0C0A09;
      box-shadow: 0 0 0 3px rgba(12, 10, 9, 0.12);
      outline: none;
    }

    /* Camps invàlids: focus en vermell coherent amb la validació */
    input[aria-invalid="true"]:focus-visible,
    select[aria-invalid="true"]:focus-visible,
    textarea[aria-invalid="true"]:focus-visible {
      border-color: #B33A3A;
      box-shadow: 0 0 0 3px rgba(179, 58, 58, 0.15);
    }

    /* Botó hamburguesa mòbil — anell rodó */
    .nav-burger:focus-visible {
      outline: 2px solid #0C0A09;
      outline-offset: 4px;
      border-radius: 50%;
    }

    /* Enllaços inline dins de paràgrafs — sotallat reforçat */
    .contact-value a:focus-visible,
    .story-text a:focus-visible,
    .footer-links a:focus-visible {
      outline: none;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
    }

    /* Botó "Tornar a [categoria]" (legacy a la-marca i contacte) */
    .gamma-back-btn:focus-visible {
      outline: 2px solid #0C0A09;
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* Sobre fons foscos: hero amb overlay o seccions amb data-bg="dark" */
    .hero :focus-visible,
    [data-bg="dark"] :focus-visible {
      outline-color: #FAFAF9;
      box-shadow: 0 0 0 4px rgba(12, 10, 9, 0.6);
    }

    @media (prefers-reduced-motion: reduce) {
      :focus-visible {
        transition: none;
      }
    }

    /* sr-only — visually hidden but accessible to screen readers */
    .sr-only {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* RGPD consent checkbox */
    .field-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-top: 1rem;
    }
    .form-row-wrap .field-checkbox,
    .form-row-wrap .form-rgpd-info {
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }
    .field-checkbox input[type="checkbox"] {
      flex-shrink: 0;
      margin-top: 0.2rem;
      width: 1rem;
      height: 1rem;
      accent-color: #0C0A09;
      cursor: pointer;
    }
    .field-checkbox label {
      font-size: 0.78rem;
      line-height: 1.55;
      color: rgba(12, 10, 9, 0.7);
      font-weight: 300;
      letter-spacing: 0;
      text-transform: none;
      cursor: pointer;
    }
    .field-checkbox label a {
      color: #0C0A09;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .field-checkbox.is-invalid label { color: #b91c1c; }
    .field-checkbox.is-invalid input[type="checkbox"] { outline: 2px solid #b91c1c; outline-offset: 2px; }

    .form-rgpd-info {
      font-size: 0.7rem;
      line-height: 1.6;
      color: rgba(12, 10, 9, 0.55);
      margin-top: 1rem;
      max-width: 56ch;
      font-weight: 300;
      letter-spacing: 0;
      text-transform: none;
    }
    .form-rgpd-info a {
      color: rgba(12, 10, 9, 0.8);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* Product hero · Size picker */
    .product-size-picker {
      margin: 1.25rem 0 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .product-size-label {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(12,10,9,0.55);
    }
    .product-size-options {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .product-size-btn {
      min-width: 3rem;
      padding: 0.6rem 0.9rem;
      background: #FFFFFF;
      border: 1px solid rgba(12,10,9,0.2);
      border-radius: 2px;
      font-family: 'Figtree', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: #0C0A09;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }
    .product-size-btn:hover { border-color: #0C0A09; }
    .product-size-btn.is-active {
      background: #0C0A09;
      border-color: #0C0A09;
      color: #FAFAF9;
    }
    .product-size-btn:focus-visible {
      outline: 2px solid #0C0A09;
      outline-offset: 3px;
    }
    .product-size-help {
      font-size: 0.75rem;
      color: rgba(12,10,9,0.55);
      text-decoration: none;
      border-bottom: 1px solid rgba(12,10,9,0.2);
      align-self: flex-start;
      transition: color 0.2s, border-color 0.2s;
    }
    .product-size-help:hover {
      color: #0C0A09;
      border-color: #0C0A09;
    }
    @media (max-width: 480px) {
      .product-size-options { gap: 0.4rem; }
      .product-size-btn { min-width: 2.6rem; padding: 0.55rem 0.7rem; }
    }

    /* Checkout · Size warning */
    .checkout-size-warning {
      font-size: 0.75rem;
      color: rgba(12,10,9,0.65);
      background: rgba(12,10,9,0.04);
      border: 1px solid rgba(12,10,9,0.1);
      border-radius: 2px;
      padding: 0.6rem 0.8rem;
      margin: 0.5rem 0 0.75rem;
      line-height: 1.5;
      font-weight: 300;
    }
    .checkout-size-warning a {
      color: #0C0A09;
      text-decoration: underline;
    }

    /* Newsletter popup */
    .newsletter-popup {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    .newsletter-popup[hidden] { display: none; }
    .newsletter-popup-overlay {
      position: absolute;
      inset: 0;
      background: rgba(12, 10, 9, 0.65);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      animation: popup-fade 0.3s ease-out;
    }
    .newsletter-popup-card {
      position: relative;
      background: #FAFAF9;
      max-width: 30rem;
      width: 100%;
      padding: 3rem 2.5rem 2rem;
      border-radius: 4px;
      box-shadow: 0 24px 60px rgba(12, 10, 9, 0.25);
      animation: popup-rise 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .newsletter-popup-close {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      background: transparent;
      border: 0;
      padding: 0.5rem;
      cursor: pointer;
      color: rgba(12, 10, 9, 0.5);
      transition: color 0.15s;
    }
    .newsletter-popup-close:hover { color: #0C0A09; }
    .newsletter-popup-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.5);
      margin-bottom: 0.85rem;
    }
    .newsletter-popup-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.1rem);
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: #0C0A09;
      margin: 0 0 1rem;
    }
    .newsletter-popup-title em {
      font-style: italic;
      color: rgba(12, 10, 9, 0.45);
    }
    .newsletter-popup-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(12, 10, 9, 0.65);
      font-weight: 300;
      margin: 0 0 1.75rem;
      max-width: 32ch;
    }
    .newsletter-popup-form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .newsletter-popup-form .form-input {
      width: 100%;
      border-right: 1px solid rgba(12,10,9,0.2);
      border-radius: 2px;
    }
    .newsletter-popup-form .form-submit {
      align-self: stretch;
      margin-top: 0.25rem;
      border-radius: 2px;
    }
    .newsletter-popup-footnote {
      font-size: 0.7rem;
      color: rgba(12, 10, 9, 0.45);
      letter-spacing: 0.04em;
      margin-top: 1.25rem;
    }
    @keyframes popup-fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes popup-rise {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: none; }
    }
    @media (max-width: 480px) {
      .newsletter-popup-card { padding: 2.5rem 1.5rem 1.5rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .newsletter-popup-overlay,
      .newsletter-popup-card { animation: none; }
    }

    /* ─── Category curiosities (text + image blocks) ─────── */
    .curiosity-section {
      padding: 5rem 2.5rem;
      border-top: 1px solid rgba(12, 10, 9, 0.06);
    }
    .curiosity-section-inner {
      max-width: 72rem;
      margin: 0 auto;
    }
    .curiosity-section-tag {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.55);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .curiosity-section-tag::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: rgba(12, 10, 9, 0.4);
    }
    .curiosity-section-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      letter-spacing: -0.025em;
      line-height: 1.1;
      color: #0C0A09;
      margin: 0 0 4rem;
    }
    .curiosity-section-title em {
      font-style: italic;
      color: rgba(12, 10, 9, 0.5);
    }
    .curiosity-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-bottom: 5rem;
    }
    .curiosity-block:last-child { margin-bottom: 0; }
    .curiosity-block:nth-child(even) .curiosity-image {
      order: 2;
    }
    .curiosity-image {
      aspect-ratio: 4/3;
      background-size: cover;
      background-position: center;
      background-color: #F2F1EF;
      border-radius: 4px;
    }
    .curiosity-content h3 {
      font-family: 'Figtree', sans-serif;
      font-size: 1.6rem;
      font-weight: 400;
      letter-spacing: -0.015em;
      line-height: 1.2;
      color: #0C0A09;
      margin: 0 0 1rem;
    }
    .curiosity-content p {
      font-size: 1rem;
      line-height: 1.75;
      color: rgba(12, 10, 9, 0.7);
      font-weight: 300;
      margin: 0 0 1rem;
      max-width: 38ch;
    }
    .curiosity-content p:last-child { margin-bottom: 0; }
    @media (max-width: 800px) {
      .curiosity-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
      }
      .curiosity-block:nth-child(even) .curiosity-image { order: 0; }
    }

    /* ─── Category hero (gravel, carretera, muntanya) ─────── */
    .category-hero {
      position: relative;
      height: 42vh;
      min-height: 20rem;
      max-height: 30rem;
      display: flex;
      align-items: flex-end;
      padding: 0 2.5rem 3rem;
      overflow: hidden;
      background-color: #1a1a1a;
    }
    .category-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 70%;
      z-index: 0;
    }
    @media (max-width: 768px) {
      .category-hero-bg { background-position: center; }
    }
    .category-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(12,10,9,0.25) 0%, rgba(12,10,9,0.55) 70%, rgba(12,10,9,0.7) 100%);
    }
    .category-hero-content {
      position: relative;
      z-index: 1;
      max-width: 72rem;
      margin: 0 auto;
      width: 100%;
      color: #FAFAF9;
    }
    .category-hero-tag {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(250, 250, 249, 0.75);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .category-hero-tag::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: rgba(250, 250, 249, 0.8);
    }
    .category-hero-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(2.5rem, 5.5vw, 4.25rem);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.025em;
      margin: 0 0 0.75rem;
      color: #FAFAF9;
    }
    .category-hero-desc {
      font-size: clamp(0.95rem, 1.4vw, 1.05rem);
      line-height: 1.65;
      color: rgba(250, 250, 249, 0.85);
      font-weight: 300;
      max-width: 48ch;
    }
    @media (max-width: 600px) {
      .category-hero { padding: 0 1.5rem 2.25rem; height: 36vh; min-height: 16rem; }
    }

    /* ─── Blog · Bitàcola ─────────────────────────── */

    /* Index page */
    .blog-index-header {
      max-width: 60rem;
      margin: 0 auto;
      padding: 10rem 2.5rem 4rem;
    }
    .blog-index-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1;
      color: #0C0A09;
      margin: 1rem 0 1.5rem;
    }
    .blog-index-title em {
      font-style: italic;
      color: rgba(12, 10, 9, 0.5);
    }
    .blog-index-sub {
      font-size: 1.05rem;
      color: rgba(12, 10, 9, 0.6);
      max-width: 60ch;
      line-height: 1.75;
      font-weight: 300;
    }
    .blog-list-section {
      padding: 4rem 2.5rem;
    }
    .blog-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
      gap: 3rem 2.5rem;
    }
    .blog-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
      transition: transform 0.25s ease;
    }
    .blog-card-link:hover { transform: translateY(-2px); }
    .blog-card-image {
      aspect-ratio: 4/3;
      background-size: cover;
      background-position: center;
      border-radius: 4px;
      margin-bottom: 1.25rem;
      transition: filter 0.25s;
    }
    .blog-card-link:hover .blog-card-image { filter: brightness(1.04); }
    .blog-card-meta {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.55);
      margin-bottom: 0.75rem;
    }
    .blog-card-cat {
      color: #0C0A09;
      font-weight: 500;
    }
    .blog-card-cat::after {
      content: '·';
      margin-left: 0.75rem;
      color: rgba(12, 10, 9, 0.3);
    }
    .blog-card-title {
      font-family: 'Figtree', sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1.25;
      letter-spacing: -0.015em;
      color: #0C0A09;
      margin: 0 0 0.75rem;
    }
    .blog-card-excerpt {
      font-size: 0.9rem;
      line-height: 1.65;
      color: rgba(12, 10, 9, 0.65);
      font-weight: 300;
      margin: 0 0 1rem;
    }
    .blog-card-cta {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0C0A09;
      font-weight: 400;
    }

    /* Article page */
    .blog-article {
      max-width: 42rem;
      margin: 0 auto;
      padding: 9rem 2rem 4rem;
    }
    .blog-article-header {
      margin-bottom: 3rem;
    }
    .blog-article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.55);
      margin: 1.25rem 0 1.5rem;
    }
    .blog-article-cat {
      color: #0C0A09;
      font-weight: 500;
    }
    .blog-article-cat::after,
    .blog-article-date::after {
      content: '·';
      margin-left: 0.75rem;
      color: rgba(12, 10, 9, 0.3);
    }
    .blog-article-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 300;
      letter-spacing: -0.025em;
      line-height: 1.05;
      color: #0C0A09;
      margin: 0 0 1.5rem;
    }
    .blog-article-title em {
      font-style: italic;
      color: rgba(12, 10, 9, 0.5);
    }
    .blog-article-lead {
      font-size: 1.15rem;
      line-height: 1.7;
      color: rgba(12, 10, 9, 0.75);
      font-weight: 300;
      max-width: 38ch;
    }
    .blog-article-cover {
      margin: 0 -2rem 3rem;
    }
    .blog-article-cover img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0;
    }
    .blog-article-cover figcaption {
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      color: rgba(12, 10, 9, 0.5);
      margin-top: 0.85rem;
      padding: 0 2rem;
      text-align: center;
    }
    .blog-article-body {
      font-size: 1.05rem;
      line-height: 1.85;
      color: rgba(12, 10, 9, 0.82);
      font-weight: 300;
    }
    .blog-article-body p {
      margin: 0 0 1.5rem;
    }
    .blog-article-body strong {
      color: #0C0A09;
      font-weight: 500;
    }
    .blog-article-body em {
      color: rgba(12, 10, 9, 0.7);
    }
    .blog-article-body a {
      color: #0C0A09;
      border-bottom: 1px solid rgba(12, 10, 9, 0.25);
      text-decoration: none;
      transition: border-color 0.2s;
    }
    .blog-article-body a:hover { border-bottom-color: #0C0A09; }
    .blog-article-body h2 {
      font-family: 'Figtree', sans-serif;
      font-size: 1.55rem;
      font-weight: 400;
      letter-spacing: -0.015em;
      color: #0C0A09;
      margin: 3rem 0 1.25rem;
      line-height: 1.3;
    }
    .blog-article-body h3 {
      font-family: 'Figtree', sans-serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: #0C0A09;
      margin: 2.25rem 0 0.85rem;
    }
    .blog-article-body ul,
    .blog-article-body ol {
      margin: 0 0 1.5rem;
      padding-left: 1.25rem;
    }
    .blog-article-body li {
      margin-bottom: 0.6rem;
    }
    .blog-article-body blockquote {
      margin: 2rem 0;
      padding: 0 0 0 1.5rem;
      border-left: 2px solid rgba(12, 10, 9, 0.3);
      font-style: italic;
      color: rgba(12, 10, 9, 0.7);
    }
    .blog-article-author {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(12, 10, 9, 0.1);
    }
    .blog-author-name {
      font-size: 0.95rem;
      font-weight: 500;
      color: #0C0A09;
      margin-bottom: 0.5rem;
    }
    .blog-author-bio {
      font-size: 0.85rem;
      line-height: 1.7;
      color: rgba(12, 10, 9, 0.6);
      font-weight: 300;
    }
    .blog-article-footer-nav {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(12, 10, 9, 0.06);
    }
    .blog-back-link {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .blog-back-link:hover { color: #0C0A09; }

    @media (max-width: 600px) {
      .blog-article { padding: 7rem 1.25rem 3rem; }
      .blog-article-cover { margin: 0 -1.25rem 2rem; }
      .blog-article-cover figcaption { padding: 0 1.25rem; }
    }

    /* ─── Cart button (nav) ─────────────────────────── */
    .nav-cart {
      position: relative;
      background: transparent;
      border: 0;
      color: rgba(12, 10, 9, 0.5);
      padding: 0;
      margin-left: 2.5rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.2s;
      font-family: inherit;
    }
    .nav-cart:hover { color: #0C0A09; }
    .nav-cart svg { display: block; }
    .nav-cart-count {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      font-weight: 300;
      min-width: 0.6rem;
      text-align: center;
      font-variant-numeric: tabular-nums;
    }
    .nav-cart[data-empty="true"] .nav-cart-count {
      color: rgba(12, 10, 9, 0.5);
    }

    /* ─── Cart drawer ─────────────────────────── */
    .cart-drawer {
      position: fixed;
      inset: 0;
      z-index: 1100;
      pointer-events: none;
    }
    .cart-drawer[hidden] { display: none; }
    .cart-overlay {
      position: absolute;
      inset: 0;
      background: rgba(12, 10, 9, 0.5);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .cart-drawer[data-open="true"] { pointer-events: auto; }
    .cart-drawer[data-open="true"] .cart-overlay {
      opacity: 1;
      pointer-events: auto;
    }
    .cart-panel {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      max-width: 26rem;
      background: #FAFAF9;
      box-shadow: -16px 0 40px rgba(12, 10, 9, 0.15);
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.2, 1);
      display: flex;
      flex-direction: column;
    }
    .cart-drawer[data-open="true"] .cart-panel {
      transform: translateX(0);
    }
    .cart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 1.75rem;
      border-bottom: 1px solid rgba(12, 10, 9, 0.08);
    }
    .cart-title {
      font-family: 'Figtree', sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #0C0A09;
      margin: 0;
    }
    .cart-close {
      background: transparent;
      border: 0;
      padding: 0.4rem;
      cursor: pointer;
      color: rgba(12, 10, 9, 0.6);
      transition: color 0.15s;
    }
    .cart-close:hover { color: #0C0A09; }
    .cart-body {
      flex: 1 1 auto;
      overflow-y: auto;
      padding: 1.5rem 1.75rem;
    }
    .cart-empty {
      text-align: center;
      padding: 3rem 1rem;
      color: rgba(12, 10, 9, 0.55);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.65;
    }
    .cart-empty strong {
      display: block;
      color: #0C0A09;
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 0.6rem;
      letter-spacing: -0.005em;
    }
    .cart-items {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .cart-item {
      display: grid;
      grid-template-columns: 5rem 1fr;
      gap: 1rem;
      align-items: start;
    }
    .cart-item-img {
      aspect-ratio: 4/3;
      background: #F2F1EF;
      background-size: 90%;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 2px;
    }
    .cart-item-info { min-width: 0; }
    .cart-item-name {
      font-size: 0.95rem;
      font-weight: 500;
      color: #0C0A09;
      letter-spacing: -0.005em;
      margin: 0 0 0.25rem;
    }
    .cart-item-meta {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: rgba(12, 10, 9, 0.55);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .cart-item-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }
    .cart-item-price {
      font-size: 0.9rem;
      color: #0C0A09;
      font-weight: 400;
      font-variant-numeric: tabular-nums;
    }
    .cart-item-remove {
      background: transparent;
      border: 0;
      padding: 0.25rem;
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.55);
      cursor: pointer;
      transition: color 0.15s;
    }
    .cart-item-remove:hover { color: #B33A3A; }
    .cart-item-qty {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
    }
    .cart-qty-btn {
      width: 1.6rem;
      height: 1.6rem;
      background: #FFFFFF;
      border: 1px solid rgba(12, 10, 9, 0.2);
      border-radius: 2px;
      color: #0C0A09;
      cursor: pointer;
      font-size: 0.95rem;
      line-height: 1;
      transition: border-color 0.15s, background 0.15s;
    }
    .cart-qty-btn:hover { border-color: #0C0A09; }
    .cart-qty-val {
      min-width: 1.5rem;
      text-align: center;
      font-variant-numeric: tabular-nums;
    }
    .cart-footer {
      padding: 1.25rem 1.75rem 1.5rem;
      border-top: 1px solid rgba(12, 10, 9, 0.08);
      background: #FAFAF9;
    }
    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 1rem;
    }
    .cart-total-label {
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.55);
    }
    .cart-total-value {
      font-size: 1.4rem;
      font-weight: 400;
      color: #0C0A09;
      letter-spacing: -0.01em;
      font-variant-numeric: tabular-nums;
    }
    .cart-checkout-btn {
      display: block;
      width: 100%;
      background: #0C0A09;
      color: #FAFAF9;
      border: 0;
      padding: 1rem;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-family: 'Figtree', sans-serif;
      font-weight: 400;
      cursor: pointer;
      border-radius: 2px;
      text-decoration: none;
      text-align: center;
      transition: opacity 0.2s;
    }
    .cart-checkout-btn:hover { opacity: 0.85; }
    .cart-checkout-btn[disabled] { opacity: 0.4; cursor: not-allowed; }
    .cart-multi-warning {
      font-size: 0.7rem;
      color: rgba(12, 10, 9, 0.55);
      line-height: 1.5;
      margin-top: 0.85rem;
      text-align: center;
    }

    /* Toast d'afegit a cistella */
    .cart-toast {
      position: fixed;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%) translateY(1rem);
      background: #0C0A09;
      color: #FAFAF9;
      padding: 0.85rem 1.5rem;
      border-radius: 2px;
      font-size: 0.85rem;
      font-weight: 300;
      letter-spacing: 0.02em;
      z-index: 1200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
      box-shadow: 0 12px 32px rgba(12, 10, 9, 0.2);
    }
    .cart-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      .cart-panel, .cart-overlay, .cart-toast { transition: none; }
    }

    /* ── Language popup ───────────────────────────── */
    .lang-popup {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .lang-popup.is-visible { opacity: 1; }
    .lang-popup-overlay {
      position: absolute;
      inset: 0;
      background: rgba(12, 10, 9, 0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .lang-popup-card {
      position: relative;
      background: #FFFFFF;
      max-width: 28rem;
      width: 100%;
      padding: 2.75rem 2.25rem 2.5rem;
      border-radius: 6px;
      box-shadow: 0 20px 60px rgba(12, 10, 9, 0.25);
      transform: translateY(10px);
      transition: transform 0.3s ease;
    }
    .lang-popup.is-visible .lang-popup-card { transform: translateY(0); }
    .lang-popup-eyebrow {
      font-family: 'Figtree', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(12, 10, 9, 0.5);
      margin-bottom: 0.85rem;
      font-weight: 500;
    }
    .lang-popup-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(1.5rem, 3vw, 1.85rem);
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: #0C0A09;
      margin-bottom: 1.75rem;
    }
    .lang-popup-title em {
      display: block;
      font-style: italic;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      color: rgba(12, 10, 9, 0.45);
      font-weight: 300;
      margin-top: 0.5rem;
    }
    .lang-popup-options {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .lang-popup-btn {
      display: flex;
      align-items: center;
      gap: 1rem;
      width: 100%;
      padding: 1rem 1.25rem;
      background: #FFFFFF;
      border: 1px solid rgba(12, 10, 9, 0.15);
      border-radius: 4px;
      font-family: 'Figtree', sans-serif;
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: -0.005em;
      color: #0C0A09;
      cursor: pointer;
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
      text-align: left;
    }
    .lang-popup-btn:hover {
      background: #F5F4F3;
      border-color: #0C0A09;
    }
    .lang-popup-btn:focus-visible {
      outline: 2px solid #0C0A09;
      outline-offset: 2px;
    }
    .lang-popup-flag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 3px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .lang-popup-flag svg {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    .lang-popup-name {
      font-size: 0.95rem;
    }

    /* ── Language toast ───────────────────────────── */
    .lang-toast {
      position: fixed;
      top: 1.25rem;
      left: 50%;
      transform: translateX(-50%) translateY(-1rem);
      z-index: 1100;
      display: flex;
      align-items: center;
      gap: 0.85rem;
      background: #0C0A09;
      color: #FFFFFF;
      padding: 0.85rem 1rem 0.85rem 1.25rem;
      border-radius: 4px;
      box-shadow: 0 12px 32px rgba(12, 10, 9, 0.25);
      max-width: calc(100% - 2rem);
      font-family: 'Figtree', sans-serif;
      font-size: 0.85rem;
      font-weight: 300;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .lang-toast.is-visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    .lang-toast-msg {
      line-height: 1.4;
    }
    .lang-toast-cta {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #FFFFFF;
      padding: 0.4rem 0.85rem;
      border-radius: 3px;
      font-family: 'Figtree', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.18s ease, border-color 0.18s ease;
    }
    .lang-toast-cta:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #FFFFFF;
    }
    .lang-toast-close {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      padding: 0.35rem;
      display: inline-flex;
      align-items: center;
      transition: color 0.18s ease;
    }
    .lang-toast-close:hover { color: #FFFFFF; }
    @media (max-width: 540px) {
      .lang-toast {
        flex-wrap: wrap;
        font-size: 0.78rem;
        padding: 0.75rem 0.85rem;
      }
      .lang-toast-msg { flex: 1 1 100%; }
    }
