    * { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --font-body: 'Montserrat', 'Segoe UI', sans-serif;
      --font-display: 'Times New Roman MT', 'Times New Roman', 'Georgia', serif;
      --font-bestyling: 'Times New Roman MT', 'Times New Roman', serif;
      --nav-ink: #111111;
      --nav-accent: #c09828;
      --brand-text: #333333;
      --brand-primary: #c03030;
      --brand-secondary: #e88020;
      --brand-cream: #ffffff;
      --brand-cream-soft: #f2e8d0;
    }
    html {
      scroll-behavior: smooth;
      /* Make in-page anchor jumps land below the sticky navbar. */
      scroll-padding-top: 120px;
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
    }
    body {
      font-family: var(--font-body);
      color: var(--brand-text);
      background: #ffffff;
      min-height: 100vh;
    }
    
    .product-card[data-type-hidden="true"],
    .product-card[hidden] {
      display: none !important;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    #wrapper-navbar {
      background: transparent;
      position: sticky;
      top: 0;
      z-index: 1400;
      padding: 14px 16px 0;
      transition: transform 0.32s ease, opacity 0.32s ease;
      will-change: transform, opacity;
    }
    #wrapper-navbar.is-hidden {
      transform: translateY(-135%);
      opacity: 0;
      pointer-events: none;
    }
    .navbar {
      padding: 1rem 0;
      border-radius: 24px;
      position: relative;
      overflow: visible;
      border: 1px solid rgba(255, 255, 255, 0.48);
      background: rgba(255, 255, 255, 0.14);
      box-shadow: 0 18px 30px rgba(11, 13, 32, 0.22);
      backdrop-filter: blur(14px);
    }
    .navbar::before {
      content: '';
      position: absolute;
      inset: 1px;
      border-radius: 23px;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.2));
    }
    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: clamp(0.55rem, 1.4vw, 1.2rem);
      position: relative;
      z-index: 1;
    }
    .navbar-menu {
      display: none;
      list-style: none;
      gap: 0.35rem;
      margin: 0;
      padding: 0;
      align-items: center;
      flex: 1;
    }
    .navbar-left { order: 1; justify-content: flex-end; padding-right: 0.35rem; }
    .navbar-right { order: 3; justify-content: flex-start; padding-left: 0.35rem; }
    .navbar-logo { display: flex; align-items: center; order: 2; margin: 0 clamp(0.15rem, 0.9vw, 0.7rem); flex-shrink: 0; }
    .navbar-logo img {
      height: 68px;
      width: auto;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: 0 8px 22px rgba(11, 13, 32, 0.38), 0 0 0 3px rgba(255, 255, 255, 0.07);
      transition: all 0.3s;
    }
    .navbar-logo img:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 12px 26px rgba(11, 13, 32, 0.5), 0 0 0 3px rgba(246, 178, 95, 0.17);
    }
    .nav-item { margin: 0; }
    .nav-dropdown { position: relative; }
    .nav-dropdown::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 12px;
    }
    .nav-link {
      text-decoration: none;
      color: var(--nav-ink);
      font-weight: 600;
      font-size: 0.83rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.3s;
      padding: 0.65rem 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      position: relative;
      border-radius: 999px;
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
    }
    .nav-link-dropdown {
      box-shadow: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .nav-link-dropdown:focus,
    .nav-link-dropdown:focus-visible {
      outline: none;
      box-shadow: none;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 24px;
      height: 2px;
      transform: translateX(-50%) scaleX(0);
      background: linear-gradient(90deg, #ffe3b5, var(--nav-accent));
      transition: transform 0.28s ease;
    }
    .nav-link:hover,
    .nav-link.active {
      color: #111111;
      border-color: rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.09);
    }
    .nav-link:hover::after,
    .nav-link.active::after {
      transform: translateX(-50%) scaleX(1);
    }
    .cart-link {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .nav-count {
      min-width: 20px;
      height: 20px;
      padding: 0 6px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      background: linear-gradient(135deg, #ffd9a6, var(--nav-accent));
      color: #24162f;
      box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.45);
    }
    .nav-caret {
      font-size: 0.72rem;
      line-height: 1;
      transform: translateY(1px);
      transition: transform 0.25s ease;
    }
    .nav-dropdown-menu {
      list-style: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 220px;
      margin: 0;
      padding: 0.4rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: 0 14px 30px rgba(12, 16, 38, 0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 25;
    }
    .nav-dropdown-link {
      display: block;
      padding: 0.6rem 0.75rem;
      color: var(--brand-text);
      text-decoration: none;
      border-radius: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    .nav-dropdown-link:hover,
    .nav-dropdown-link:focus-visible,
    .nav-dropdown-link.active {
      background: rgba(192, 152, 40, 0.18);
      color: #111;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-dropdown:hover .nav-caret,
    .nav-dropdown:focus-within .nav-caret {
      transform: translateY(1px) rotate(180deg);
    }

    .navbar-toggler {
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(17, 17, 17, 0.22);
      border-radius: 11px;
      padding: 0.55rem;
      cursor: pointer;
      z-index: 1001;
      box-shadow: 0 10px 22px rgba(12, 18, 40, 0.12);
      transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .navbar-toggler:focus-visible {
      outline: 2px solid rgba(246, 178, 95, 0.75);
      outline-offset: 4px;
    }
    .navbar-toggler-icon {
      width: 22px;
      height: 16px;
      display: inline-flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .toggler-line {
      width: 22px;
      height: 2px;
      background: #111;
      border-radius: 2px;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }
    .navbar-toggler.is-open { background: rgba(255, 255, 255, 0.92); border-color: rgba(17, 17, 17, 0.3); box-shadow: 0 14px 28px rgba(12, 18, 40, 0.16); }
    .navbar-toggler.is-open .navbar-toggler-icon { position: relative; justify-content: center; }
    .navbar-toggler.is-open .toggler-line:nth-child(1), .navbar-toggler.is-open .toggler-line:nth-child(3) { position: absolute; left: 0; }
    .navbar-toggler.is-open .toggler-line:nth-child(1) { transform: rotate(45deg); }
    .navbar-toggler.is-open .toggler-line:nth-child(2) { opacity: 0; }
    .navbar-toggler.is-open .toggler-line:nth-child(3) { transform: rotate(-45deg); }

    .mobile-nav {
      display: block;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(14px);
      box-shadow: 0 20px 40px rgba(10, 13, 31, 0.22);
      padding: 0.7rem;
      border: 1px solid rgba(255, 255, 255, 0.55);
      max-height: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      transform: translateY(-8px) scale(0.985);
      transform-origin: top center;
      pointer-events: none;
      transition: max-height 0.38s ease, opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }
    .mobile-nav::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 17px;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14) 40%, rgba(255, 255, 255, 0.24));
    }
    .mobile-nav.is-open {
      max-height: 560px;
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .mobile-nav .navbar-nav {
      list-style: none;
      padding: 0.2rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      position: relative;
      z-index: 1;
    }
    .mobile-nav .nav-link {
      color: #111;
      width: 100%;
      justify-content: space-between;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: rgba(255, 255, 255, 0.55);
    }
    .mobile-nav .nav-link:hover,
    .mobile-nav .nav-link:focus-visible {
      background: rgba(192, 152, 40, 0.16);
      border-color: rgba(192, 152, 40, 0.35);
      color: #111;
    }
    .mobile-nav .nav-link.active {
      border-color: rgba(192, 152, 40, 0.4);
      background: rgba(192, 152, 40, 0.22);
      color: #111;
    }
    .mobile-nav .nav-link::after { display: none; }
    .mobile-nav .nav-dropdown::after { display: none; }
    .mobile-nav .nav-dropdown-menu {
      position: static;
      min-width: 100%;
      margin-top: 0.25rem;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }
    .mobile-nav .nav-dropdown-menu.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      max-height: 220px;
      pointer-events: auto;
    }
    .mobile-nav .nav-dropdown-link {
      color: #111;
      border-radius: 10px;
      font-size: 0.74rem;
    }
    .mobile-nav .nav-dropdown-link:hover,
    .mobile-nav .nav-dropdown-link:focus-visible,
    .mobile-nav .nav-dropdown-link.active {
      background: rgba(246, 178, 95, 0.18);
      color: #111;
    }

    @media (min-width: 1100px) {
      .navbar-menu { display: flex; }
      .navbar-toggler { display: none; }
    }

    /* Smooth visual transitions between stacked sections */
    :where(.products-strip, .contact, .promo-signup, .footer) {
      position: relative;
      isolation: isolate;
    }
    :where(.products-strip, .contact, .promo-signup, .footer)::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -26px;
      height: 26px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--section-bg, #ffffff));
      pointer-events: none;
      z-index: 0;
    }
    :where(.products-strip, .contact, .promo-signup, .footer) > * {
      position: relative;
      z-index: 1;
    }

    .category-hero {
      --citrus-hero-h: clamp(340px, 35vw, 480px);
      --citrus-hero-bg: #e9e9e5;
      min-height: var(--citrus-hero-h);
      padding: 0;
      background: var(--citrus-hero-bg);
      color: var(--brand-text);
      text-align: left;
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }
    .category-hero::after {
      content: none;
    }
    .category-hero .container {
      padding-right: 0;
      position: relative;
      height: 100%;
    }
    .category-hero-inner {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: clamp(18px, 4vw, 46px);
      min-height: var(--citrus-hero-h);
      height: 100%;
    }
    .category-hero-copy {
      flex: 0 1 520px;
      padding: clamp(18px, 3vw, 38px) 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: clamp(12px, 3vw, 46px);
    }
    .category-hero-kicker {
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
      color: var(--brand-secondary);
      font-weight: 700;
      padding: 0;
      text-shadow: none;
    }
    .category-hero-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 9vw, 6.5rem);
      line-height: 0.95;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: #111111;
      text-transform: uppercase;
      max-width: 12ch;
      text-shadow: none;
    }
    .category-hero-media {
      flex: 1 1 560px;
      display: flex;
      justify-content: flex-end;
      align-items: stretch;
      margin-right: calc(50% - 50vw);
      position: relative;
    }
    .category-hero-video {
      width: min(520px, 44vw);
      height: 100%;
      display: block;
      object-fit: cover;
      background: transparent;
      border-radius: 0;
      position: relative;
      mix-blend-mode: multiply;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }
    .products-filter-row {
      display: flex;
      justify-content: flex-end;
      position: relative;
      margin: 0 auto 1.1rem;
      gap: 12px;
      align-items: center;
      width: 100%;
    }
    .products-filter-row::after {
      content: "▾";
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(51, 34, 17, 0.72);
      pointer-events: none;
      font-size: 0.9rem;
    }
    .products-filter-select {
      appearance: none;
      -webkit-appearance: none;
      font-family: var(--font-body);
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.75rem;
      color: var(--brand-text);
      padding: 12px 44px 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(51, 34, 17, 0.16);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
      box-shadow: 0 10px 22px rgba(51, 34, 17, 0.12);
      cursor: pointer;
    }
    .products-filter-label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--nav-accent);
      font-weight: 800;
    }
    .products-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px 18px;
      flex-wrap: wrap;
      margin: 0 auto 1.1rem;
      width: 100%;
    }
    .products-toolbar-group {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .products-toolbar-label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(31, 40, 80, 0.7);
      font-weight: 800;
    }
    .products-toolbar-select-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
    }
    .products-toolbar-select-wrap::after {
      content: "▾";
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(51, 34, 17, 0.72);
      pointer-events: none;
      font-size: 0.85rem;
    }
    .products-toolbar-select {
      appearance: none;
      -webkit-appearance: none;
      font-family: var(--font-body);
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.7rem;
      color: var(--brand-text);
      padding: 10px 40px 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(51, 34, 17, 0.16);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
      box-shadow: 0 10px 22px rgba(51, 34, 17, 0.12);
      cursor: pointer;
    }
    .products-toolbar-select:focus-visible {
      outline: 2px solid rgba(192, 152, 40, 0.65);
      outline-offset: 3px;
    }
    .products-toolbar-count {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(51, 34, 17, 0.6);
      margin-left: 6px;
    }
    .products-filter-select:focus-visible {
      outline: 2px solid rgba(192, 152, 40, 0.65);
      outline-offset: 3px;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Bottle-only layout in this section */
    .products-strip {
      padding: 22px 20px 16px;
      --section-bg: #ffffff;
      --wheel-bg: #ffffff;
      background: #ffffff;
    }
    .products-strip .product-grid {
      grid-template-columns: repeat(4, minmax(0, 240px));
      align-items: end;
      gap: clamp(14px, 2.4vw, 24px);
      justify-content: center;
    }
    .products-strip .product-card {
      max-width: 240px;
      position: relative;
    }
    .products-strip .bottle-media {
      position: relative;
      width: 100%;
      height: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      padding: 0 0 52px 0;
      background: transparent;
      border-radius: 0;
    }
    .products-strip .wheel-card-lime .bottle-media {
      padding-bottom: 38px;
    }
    .products-strip .product-card img {
      --img-scale: 1;
      --img-scale-hover: 1.04;
      width: 100%;
      height: 100%;
      max-width: 220px;
      max-height: 320px;
      object-fit: contain;
      object-position: center center;
      padding: 0;
      background: transparent;
      border-radius: 0;
      transform: scale(var(--img-scale));
      transform-origin: bottom center;
      margin-bottom: 0;
      -webkit-mask-image: none;
      mask-image: none;
      filter: none;
      transition: transform 0.2s ease;
    }
    .products-strip .product-card:hover img,
    .products-strip .product-card:focus-within img {
      transform: scale(var(--img-scale-hover));
    }
    .products-strip .bottle-cta {
      position: absolute;
      left: 50%;
      bottom: 14px;
      z-index: 2;
      transform: translateX(-50%) translateY(10px) scale(0.985);
      opacity: 0;
      pointer-events: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 178px;
      padding: 12px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.78);
      box-shadow: 0 18px 34px rgba(192, 48, 48, 0.28), 0 0 0 2px rgba(242, 232, 208, 0.32);
      font-family: var(--font-body);
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.78rem;
      transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
      backdrop-filter: blur(6px);
    }
    .products-strip .product-card:hover .bottle-cta,
    .products-strip .product-card:focus-within .bottle-cta {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0) scale(1);
    }
    .products-strip .bottle-cta:hover {
      background: linear-gradient(135deg, #d84242, #f19a3c);
      box-shadow: 0 22px 40px rgba(192, 48, 48, 0.32), 0 0 0 2px rgba(242, 232, 208, 0.42);
    }
    .products-strip .bottle-cta:focus-visible {
      outline: 2px solid rgba(192, 48, 48, 0.6);
      outline-offset: 4px;
    }
    @media (hover: none) and (pointer: coarse) {
      .products-strip .bottle-cta {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0) scale(1);
      }
    }
    .products-strip .bottle-meta {
      margin-top: 0.75rem;
      text-align: center;
    }
    .products-strip .bottle-name {
      font-family: var(--font-display);
      color: #1f2850;
      font-size: clamp(1.12rem, 1.7vw, 1.48rem);
      line-height: 1.05;
      margin: 0 0 0.35rem;
      letter-spacing: 0.015em;
      font-weight: 700;
    }
    .products-strip .bottle-from {
      margin: 0;
      font-family: 'Montserrat', 'Segoe UI', sans-serif;
      font-size: clamp(0.9rem, 1.25vw, 1.05rem);
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #c09828;
    }
    @media (max-width: 1180px) {
      .products-strip .product-grid {
        grid-template-columns: repeat(3, minmax(0, 240px));
      }
    }
    @media (max-width: 900px) {
      .products-strip .product-grid {
        grid-template-columns: repeat(2, minmax(0, 240px));
      }
    }
    @media (max-width: 700px) {
      .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
      }
      .products-toolbar-group {
        width: 100%;
        justify-content: space-between;
      }
      .products-toolbar-count {
        margin-left: auto;
      }
      .products-strip .product-grid {
        grid-template-columns: minmax(0, 85vw);
      }
      .products-strip .product-card {
        max-width: 85vw;
      }
      .products-strip .product-card img {
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        padding: 0;
      }
      .products-strip .slice-card-lime img {
        width: 40% !important;
        margin: 0 auto;
        display: block;
      }
      .products-strip .bottle-media {
        height: auto;
        min-height: 0;
        padding-bottom: 64px;
        overflow: hidden;
      }
    }
    @media (max-width: 820px) {
      .category-hero { text-align: center; }
      .category-hero .container { padding-right: 20px; padding-left: 20px; }
      .category-hero-inner {
        flex-direction: column;
      }
      .category-hero-copy {
        flex-basis: auto;
        padding: 140px 0 18px;
        padding-right: 0;
        align-items: center;
      }
      .category-hero-media {
        justify-content: center;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: clamp(360px, 92vw, 560px);
      }
      .category-hero-video {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        object-position: 50% 45%;
        transform: scale(1.08);
        mix-blend-mode: multiply;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
      }
    }
    @media (max-width: 500px) {
      .category-hero-media {
        height: clamp(280px, 90vw, 420px);
      }
      .category-hero-video {
        transform: scale(1.08);
      }
    }

    .wrap {
      width: min(1080px, 94vw);
      margin: 18px auto 28px;
      background: rgba(255, 255, 255, 0.94);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(16, 24, 56, 0.2);
    }
    .hero {
      position: relative;
      padding: clamp(48px, 7vw, 80px) clamp(18px, 4vw, 48px);
      color: #fff;
      text-align: center;
      background:
        image-set(
          url('/images/hero1-960.avif') type('image/avif') 1x,
          url('/images/hero1.avif') type('image/avif') 2x,
          url('/images/hero1-960.webp') type('image/webp') 1x,
          url('/images/hero1.webp') type('image/webp') 2x
        ) center/cover no-repeat;
    }
    h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.3rem);
      line-height: 1.08;
      margin-bottom: 12px;
    }
    .lead {
      max-width: 66ch;
      margin: 0 auto;
      font-size: clamp(0.95rem, 1.9vw, 1.08rem);
      line-height: 1.7;
      opacity: 0.96;
    }
    .content { padding: clamp(22px, 4vw, 38px); }
    .grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      margin-bottom: 26px;
    }
    .card {
      border-radius: 14px;
      background: #fff;
      border: 1px solid rgba(51, 34, 17, 0.12);
      padding: 16px;
    }
    .card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      margin-bottom: 6px;
    }
    .card p {
      color: #4a3328;
      line-height: 1.65;
      font-size: 0.92rem;
    }
    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 24px;
    }
    .pill {
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #4a2b1a;
      background: var(--brand-cream-soft);
    }
    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .btn {
      text-decoration: none;
      border-radius: 999px;
      padding: 12px 20px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.76rem;
      font-weight: 700;
      transition: transform 0.22s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
      box-shadow: 0 8px 20px rgba(192, 48, 48, 0.28);
    }
    .btn-secondary {
      color: var(--brand-text);
      background: var(--brand-cream-soft);
    }
    .categories {
      background: #ffffff;
      padding: 72px 20px 78px;
      border-top: 1px solid rgba(51, 34, 17, 0.12);
      border-bottom: 1px solid rgba(51, 34, 17, 0.12);
    }
    .categories-header {
      margin-bottom: 1.5rem;
    }
    .categories-kicker {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--nav-accent);
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .contact {
      padding: 60px 0 0 0;
      text-align: center;
      background: #ffffff;
      border-top: none;
      border-bottom: none;
    }
    .contact .container {
      max-width: none;
      padding: 0;
      display: grid;
      gap: 1.2rem;
      align-items: center;
      justify-items: center;
    }
    .contact-gallery {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      align-items: stretch;
      width: 100%;
    }
    .contact-gallery-item {
      margin: 0;
    }
    .contact-gallery-item img {
      width: 100%;
      aspect-ratio: 10 / 13;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 0;
      border: 0;
      box-shadow: none;
    }
    .btn-contact-page {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      background: var(--brand-secondary);
      color: #fff;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 12px 30px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 24px rgba(192, 48, 48, 0.26);
    }
    .btn-contact-page:hover {
      background: #f19a3c;
      transform: translate(-50%, calc(-50% - 3px)) scale(1.01);
      box-shadow: 0 14px 28px rgba(192, 48, 48, 0.32);
    }

    .promo-signup {
      padding: 12px 0;
      --section-bg: var(--brand-cream);
      background: var(--brand-cream);
      border-top: none;
    }
    .promo-signup::before,
    .promo-signup + .footer::before {
      content: none;
    }

    .promo-signup-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 1.2rem;
    }
    .promo-signup-text {
      margin: 0;
      max-width: 60ch;
      color: #111111;
      font-family: var(--font-body);
      font-size: 0.98rem;
      line-height: 1.55;
      font-weight: 650;
    }
    .promo-signup-form {
      display: grid;
      gap: 8px;
      justify-items: end;
    }
    .promo-label {
      margin: 0;
      font-size: 0.78rem;
      line-height: 1.1;
      color: rgba(17, 17, 17, 0.68);
      font-weight: 700;
    }
    .promo-controls {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      border-radius: 999px;
      border: 1px solid rgba(51, 34, 17, 0.14);
      background: #ffffff;
      box-shadow: 0 10px 20px rgba(51, 34, 17, 0.08);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .promo-controls:focus-within {
      border-color: rgba(232, 128, 32, 0.82);
      box-shadow: 0 14px 26px rgba(192, 48, 48, 0.14), 0 0 0 3px rgba(232, 128, 32, 0.18);
    }
    .promo-email {
      width: min(320px, 66vw);
      padding: 10px 12px;
      border-radius: 999px;
      border: 0;
      background: transparent;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 650;
      color: #111111;
      outline: none;
    }
    .promo-email::placeholder {
      color: rgba(17, 17, 17, 0.45);
      font-weight: 650;
    }
    .promo-signup-btn {
      appearance: none;
      border: none;
      cursor: pointer;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--brand-secondary);
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.78rem;
      font-weight: 900;
      box-shadow: 0 12px 22px rgba(192, 48, 48, 0.2);
      transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
      white-space: nowrap;
    }
    .promo-signup-btn:hover {
      background: #f19a3c;
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(192, 48, 48, 0.26);
    }
    .promo-signup-btn:focus-visible {
      outline: 2px solid rgba(192, 48, 48, 0.6);
      outline-offset: 4px;
    }
    @media (max-width: 820px) {
      .promo-signup {
        padding: 10px 0;
      }
      .promo-signup-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
      }
      .promo-signup-form {
        width: 100%;
        justify-items: stretch;
      }
      .promo-controls { width: 100%; }
      .promo-email {
        width: 100%;
      }
    }


    .footer {
      --section-bg: rgba(16, 18, 40, 0.26);
      background:
        linear-gradient(135deg, rgba(128, 32, 80, 0.85), rgba(96, 120, 72, 0.75)),
        image-set(
          url('/images/footer-960.avif') type('image/avif') 1x,
          url('/images/footer.avif') type('image/avif') 2x,
          url('/images/footer-960.webp') type('image/webp') 1x,
          url('/images/footer.webp') type('image/webp') 2x
        );
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
      padding: 2.2rem 20px 0.9rem;
      font-family: var(--font-body);
    }
    .footer-content {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      margin-bottom: 1.4rem;
      text-align: center;
    }
    .footer-col h4 {
      margin-bottom: 0.8rem;
      color: #ffffff;
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
    }
    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-col ul li {
      margin-bottom: 0.4rem;
    }
    .footer-col a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.88rem;
      letter-spacing: 0.03em;
    }
    .footer-col a:hover {
      color: #ffd8a6;
    }
    .footer-social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-top: 0.6rem;
      padding: 0.45rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
    }
    .footer-social-link svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }
    .footer-bottom {
      text-align: center;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255,255,255,0.22);
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }
