/* Design from index-new.html; isolated to /newmain. */
:root {
      --paper: #ece6dc;
      --paper-light: #f7f3ec;
      --product-backdrop: #e7e9da;
      --paper-deep: #d9cebd;
      --wine: #48171d;
      --wine-dark: #160d0f;
      --wine-bright: #71303a;
      --gold: #9f7d4c;
      --gold-light: #c8ae7c;
      --ink: #181412;
      --muted: #6a625b;
      --line: rgba(24, 20, 18, .14);
      --white-line: rgba(255, 255, 255, .18);
      --shadow: 0 30px 90px rgba(35, 20, 17, .12);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Manrope", Arial, sans-serif;
      --container: min(1360px, calc(100vw - 64px));
      --ease: cubic-bezier(.22, 1, .36, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      position: relative;
      margin: 0;
      overflow-x: hidden;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body::before {
      position: fixed;
      z-index: 120;
      inset: 0;
      background-image: repeating-radial-gradient(circle at 0 0, rgba(42, 29, 22, .16) 0, rgba(42, 29, 22, .16) .45px, transparent .65px, transparent 3px);
      content: "";
      opacity: .055;
      pointer-events: none;
    }

    body.menu-open {
      overflow: hidden;
    }

    .page-progress {
      position: fixed;
      z-index: 200;
      top: 0;
      right: 0;
      left: 0;
      height: 2px;
      pointer-events: none;
    }

    .page-progress span {
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #8c6738, #e0c58f, #8c6738);
      box-shadow: 0 0 12px rgba(224, 197, 143, .55);
      transform: scaleX(0);
      transform-origin: left;
    }

    ::selection {
      background: var(--wine);
      color: #fff;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    button {
      color: inherit;
    }

    :focus-visible {
      outline: 2px solid var(--wine-bright);
      outline-offset: 4px;
    }

    .site-footer :focus-visible,
    .mood :focus-visible {
      outline-color: var(--gold-light);
    }

    .container {
      width: var(--container);
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 22px;
      color: var(--wine);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .22em;
      line-height: 1.3;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 30px;
      height: 1px;
      background: currentColor;
      content: "";
    }

    .eyebrow--light {
      color: var(--gold-light);
    }

    .display-title,
    .section-title {
      margin: 0;
      font-family: var(--serif);
      font-weight: 500;
      letter-spacing: -.04em;
      line-height: .95;
    }

    .section-title {
      max-width: 850px;
      font-size: clamp(48px, 6.1vw, 86px);
    }

    .section-title em {
      color: var(--wine);
      font-weight: 400;
    }

    .section-copy {
      max-width: 570px;
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    .button {
      position: relative;
      display: inline-flex;
      min-height: 56px;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 0 26px;
      overflow: hidden;
      border: 1px solid var(--wine);
      border-radius: 100px;
      background: linear-gradient(135deg, #5b2028 0%, #351216 100%);
      color: #fff;
      cursor: pointer;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      line-height: 1;
      transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s var(--ease);
    }

    .button::after {
      font-size: 19px;
      font-weight: 400;
      line-height: 1;
      content: "↗";
      transition: transform .35s var(--ease);
    }

    .button:hover {
      background: linear-gradient(135deg, #6c2933 0%, #42161c 100%);
      border-color: #42161c;
      transform: translateY(-2px);
    }

    .button:hover::after {
      transform: translate(3px, -3px);
    }

    .button--ghost {
      border-color: var(--line);
      background: transparent;
      color: var(--ink);
    }

    .button--ghost:hover {
      border-color: var(--ink);
      background: transparent;
    }

    .button--light {
      border-color: var(--paper-light);
      background: var(--paper-light);
      color: var(--wine-dark);
    }

    .button--light:hover {
      border-color: #fff;
      background: #fff;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid currentColor;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
      line-height: 2;
      transition: gap .3s var(--ease), color .3s ease;
    }

    .text-link::after {
      content: "↗";
    }

    .text-link:hover {
      gap: 18px;
      color: var(--wine);
    }

    .announcement {
      position: relative;
      z-index: 40;
      background: linear-gradient(90deg, #100b0c, #241012 48%, #100b0c);
      color: rgba(255, 255, 255, .76);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .announcement__inner {
      display: flex;
      min-height: 38px;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .announcement__note {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .announcement__note::before {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #d6b67e;
      box-shadow: 0 0 0 4px rgba(214, 182, 126, .1);
      content: "";
    }

    .announcement__links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .announcement a {
      transition: color .25s ease;
    }

    .announcement a:hover {
      color: #fff;
    }

    .site-header {
      position: sticky;
      z-index: 30;
      top: 0;
      border-bottom: 1px solid var(--line);
      background: rgba(236, 230, 220, .88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: box-shadow .35s ease, background .35s ease;
    }

    .site-header.is-scrolled {
      background: rgba(247, 243, 236, .94);
      box-shadow: 0 14px 44px rgba(32, 18, 15, .08);
    }

    .header__inner {
      display: grid;
      min-height: 88px;
      align-items: center;
      grid-template-columns: 1fr auto 1fr;
    }

    .brand {
      display: inline-flex;
      width: max-content;
      align-items: center;
      gap: 14px;
    }

    .brand__seal {
      display: grid;
      width: 36px;
      height: 36px;
      border: 1px solid var(--wine);
      border-radius: 50%;
      place-items: center;
      color: var(--wine);
      font-family: var(--serif);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -.05em;
      box-shadow: inset 0 0 0 3px var(--paper);
    }

    .brand__name {
      display: flex;
      flex-direction: column;
      color: var(--wine-dark);
      font-family: var(--serif);
      font-size: 23px;
      font-weight: 600;
      letter-spacing: .02em;
      line-height: .85;
      text-transform: uppercase;
    }

    .brand__name small {
      margin-top: 8px;
      color: var(--muted);
      font-family: var(--sans);
      font-size: 7px;
      font-weight: 600;
      letter-spacing: .33em;
      line-height: 1;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(22px, 2.5vw, 42px);
    }

    .desktop-nav a {
      position: relative;
      padding: 34px 0 31px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .05em;
    }

    .desktop-nav a::after {
      position: absolute;
      right: 0;
      bottom: 25px;
      left: 0;
      height: 1px;
      background: var(--wine);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .3s var(--ease);
    }

    .desktop-nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
    }

    .icon-button {
      position: relative;
      display: grid;
      width: 42px;
      height: 42px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      place-items: center;
      transition: background .25s ease;
    }

    .icon-button:hover {
      background: rgba(100, 20, 29, .08);
    }

    .icon-button__label {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .search-icon {
      position: relative;
      width: 17px;
      height: 17px;
      border: 1.5px solid currentColor;
      border-radius: 50%;
    }

    .search-icon::after {
      position: absolute;
      right: -5px;
      bottom: -3px;
      width: 7px;
      height: 1.5px;
      background: currentColor;
      content: "";
      transform: rotate(45deg);
      transform-origin: left;
    }

    .heart-icon {
      font-family: Georgia, serif;
      font-size: 25px;
      line-height: 1;
      transform: translateY(-1px);
    }

    .bag-icon {
      position: relative;
      width: 17px;
      height: 18px;
      border: 1.5px solid currentColor;
      border-radius: 2px 2px 4px 4px;
    }

    .bag-icon::before {
      position: absolute;
      top: -6px;
      left: 3px;
      width: 8px;
      height: 7px;
      border: 1.5px solid currentColor;
      border-bottom: 0;
      border-radius: 8px 8px 0 0;
      content: "";
    }

    .bag-count {
      position: absolute;
      top: 3px;
      right: 0;
      display: grid;
      min-width: 17px;
      height: 17px;
      padding: 0 4px;
      border-radius: 50%;
      background: var(--wine);
      color: #fff;
      font-size: 8px;
      place-items: center;
    }

    .favorite-count {
      position: absolute;
      top: 2px;
      right: -1px;
      display: none;
      min-width: 17px;
      height: 17px;
      padding: 0 4px;
      border-radius: 50px;
      background: var(--gold);
      color: #fff;
      font-size: 8px;
      line-height: 17px;
      text-align: center;
    }

    .favorite-count.has-items {
      display: block;
    }

    .menu-toggle {
      display: none;
    }

    .menu-icon,
    .menu-icon::before,
    .menu-icon::after {
      display: block;
      width: 20px;
      height: 1px;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }

    .menu-icon {
      position: relative;
    }

    .menu-icon::before,
    .menu-icon::after {
      position: absolute;
      left: 0;
      content: "";
    }

    .menu-icon::before {
      top: -6px;
    }

    .menu-icon::after {
      top: 6px;
    }

    .menu-open .menu-icon {
      background: transparent;
    }

    .menu-open .menu-icon::before {
      top: 0;
      transform: rotate(45deg);
    }

    .menu-open .menu-icon::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      z-index: 25;
      inset: 127px 0 0;
      display: none;
      padding: 42px 24px;
      background: var(--paper-light);
      opacity: 0;
      transform: translateY(-12px);
      transition: opacity .3s ease, transform .3s var(--ease);
    }

    .mobile-menu__nav {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .mobile-menu__nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1;
    }

    .mobile-menu__nav a::after {
      color: var(--wine);
      font-family: var(--sans);
      font-size: 15px;
      content: "↗";
    }

    .mobile-menu__footer {
      display: grid;
      margin-top: 40px;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .hero {
      position: relative;
      min-height: 780px;
      overflow: hidden;
      background:
        radial-gradient(circle at 13% 18%, rgba(159, 125, 76, .15), transparent 25%),
        linear-gradient(135deg, var(--paper-light) 0%, var(--paper) 56%, #dcd2c3 100%);
    }

    .hero::before {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      background: linear-gradient(transparent, var(--line) 20%, var(--line) 80%, transparent);
      content: "";
    }

    .hero__inner {
      position: relative;
      display: grid;
      min-height: 780px;
      grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
    }

    .hero__content {
      position: relative;
      z-index: 2;
      display: flex;
      max-width: 670px;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 90px 54px 110px 0;
    }

    .hero__title {
      max-width: 720px;
      font-size: clamp(68px, 7.1vw, 108px);
    }

    .hero__title em {
      display: block;
      color: var(--wine);
      font-weight: 400;
    }

    .hero__lead {
      max-width: 520px;
      margin: 32px 0 0;
      color: #514942;
      font-size: 17px;
      line-height: 1.8;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 42px;
    }

    .hero__material {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 48px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .hero__material span {
      width: 34px;
      height: 1px;
      background: var(--gold);
    }

    .hero__visual {
      position: relative;
      min-width: 0;
      overflow: hidden;
    }

    .hero__arch {
      position: absolute;
      inset: 48px 0 0 58px;
      overflow: hidden;
      border-radius: 320px 320px 0 0;
      border: 1px solid rgba(200, 174, 124, .25);
      background:
        radial-gradient(circle at 50% 38%, rgba(200, 174, 124, .17), transparent 31%),
        linear-gradient(155deg, #211416 0%, #0d0a0b 76%);
      box-shadow: inset 0 0 90px rgba(0, 0, 0, .25), 0 34px 90px rgba(36, 16, 18, .16);
      transition: background .8s ease, box-shadow .8s ease;
    }

    .hero__arch::before,
    .hero__arch::after {
      position: absolute;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50%;
      content: "";
    }

    .hero__arch::before {
      top: 13%;
      left: 10%;
      width: 80%;
      aspect-ratio: 1;
    }

    .hero__arch::after {
      top: 23%;
      left: 20%;
      width: 60%;
      aspect-ratio: 1;
    }

    .hero__glow {
      position: absolute;
      z-index: 1;
      top: 3%;
      left: 50%;
      width: 65%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: rgba(231, 193, 125, .34);
      filter: blur(50px);
      transform: translateX(-50%);
      opacity: 1;
      transition: opacity .8s ease, transform .8s var(--ease);
    }

    .hero__product {
      position: absolute;
      z-index: 2;
      top: -4%;
      left: 50%;
      width: min(760px, 106%);
      max-width: none;
      mix-blend-mode: screen;
      transform: translateX(-50%);
      filter: saturate(.9) contrast(1.08) brightness(1.08);
      translate: 0 0;
      transition: filter .8s ease, translate .25s var(--ease);
    }

    .hero__product-name {
      position: absolute;
      z-index: 4;
      right: 28px;
      bottom: 32px;
      width: 210px;
      padding: 18px 20px;
      border: 1px solid var(--white-line);
      background: rgba(18, 11, 12, .66);
      color: rgba(255, 255, 255, .8);
      font-size: 10px;
      letter-spacing: .12em;
      line-height: 1.5;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .hero__visual:not(.is-lit) .hero__arch {
      background: linear-gradient(155deg, #171113 0%, #080707 78%);
      box-shadow: inset 0 0 110px rgba(0, 0, 0, .48), 0 34px 90px rgba(36, 16, 18, .12);
    }

    .hero__visual:not(.is-lit) .hero__glow {
      opacity: .08;
      transform: translateX(-50%) scale(.72);
    }

    .hero__visual:not(.is-lit) .hero__product {
      filter: saturate(.3) contrast(1.05) brightness(.56);
    }

    .light-switch {
      position: absolute;
      z-index: 7;
      bottom: 30px;
      left: 86px;
      display: inline-flex;
      align-items: center;
      gap: 13px;
      padding: 9px 13px 9px 9px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 100px;
      background: rgba(12, 9, 9, .58);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(12px);
      transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
    }

    .light-switch:hover {
      border-color: rgba(200, 174, 124, .6);
      background: rgba(22, 13, 14, .82);
      transform: translateY(-2px);
    }

    .light-switch__track {
      position: relative;
      display: block;
      width: 42px;
      height: 25px;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 30px;
      background: rgba(255, 255, 255, .08);
      transition: background .35s ease, border-color .35s ease;
    }

    .light-switch__track::after {
      position: absolute;
      top: 4px;
      left: 4px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .66);
      content: "";
      transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease;
    }

    .is-lit .light-switch__track {
      border-color: rgba(200, 174, 124, .64);
      background: rgba(200, 174, 124, .2);
    }

    .is-lit .light-switch__track::after {
      background: #e2c792;
      box-shadow: 0 0 18px rgba(226, 199, 146, .72);
      transform: translateX(17px);
    }

    .light-switch__copy {
      display: grid;
      text-align: left;
    }

    .light-switch__copy small {
      color: rgba(255, 255, 255, .46);
      font-size: 7px;
      font-weight: 600;
      letter-spacing: .13em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .light-switch__copy strong {
      margin-top: 2px;
      font-size: 10px;
      font-weight: 500;
      line-height: 1.2;
    }

    .hero__product-name strong {
      display: block;
      margin-bottom: 3px;
      color: #fff;
      font-family: var(--serif);
      font-size: 21px;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
    }

    .made-in-italy {
      position: absolute;
      z-index: 5;
      top: 92px;
      right: -34px;
      display: grid;
      width: 126px;
      height: 126px;
      border: 1px solid rgba(255, 255, 255, .5);
      border-radius: 50%;
      background: var(--wine);
      color: #fff;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .19em;
      line-height: 1.45;
      place-items: center;
      text-align: center;
      text-transform: uppercase;
      transform: rotate(8deg);
    }

    .made-in-italy::before {
      position: absolute;
      inset: 7px;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 50%;
      content: "";
    }

    .hero__side-note {
      position: absolute;
      z-index: 4;
      bottom: 42px;
      left: 20px;
      color: rgba(255, 255, 255, .55);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      transform: rotate(-90deg);
      transform-origin: left bottom;
    }

    .proof-strip {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--paper-light);
    }

    .brand-ribbon {
      overflow: hidden;
      border-bottom: 1px solid rgba(200, 174, 124, .18);
      background: #120d0e;
      color: var(--gold-light);
    }

    .brand-ribbon__track {
      display: flex;
      width: max-content;
      animation: ribbon-flow 34s linear infinite;
    }

    .brand-ribbon:hover .brand-ribbon__track {
      animation-play-state: paused;
    }

    .brand-ribbon__line {
      display: flex;
      min-height: 54px;
      align-items: center;
      gap: 26px;
      padding-right: 26px;
      font-family: var(--serif);
      font-size: 14px;
      font-style: italic;
      letter-spacing: .15em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-ribbon__line span {
      color: rgba(255, 255, 255, .28);
      font-family: var(--sans);
      font-size: 8px;
      font-style: normal;
    }

    @keyframes ribbon-flow {
      to { transform: translateX(-50%); }
    }

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

    .proof {
      min-height: 160px;
      padding: 34px 30px;
      border-right: 1px solid var(--line);
    }

    .proof:first-child {
      padding-left: 0;
    }

    .proof:last-child {
      padding-right: 0;
      border-right: 0;
    }

    .proof__number {
      display: block;
      margin-bottom: 11px;
      color: var(--wine);
      font-family: var(--serif);
      font-size: 35px;
      font-weight: 500;
      line-height: 1;
    }

    .proof strong {
      display: block;
      margin-bottom: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .proof p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    .manifesto {
      padding: 150px 0;
    }

    .manifesto__intro {
      display: grid;
      align-items: end;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 80px;
    }

    .manifesto__intro .section-copy {
      margin: 0 0 4px;
    }

    .craft {
      display: grid;
      margin-top: 90px;
      grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    }

    .craft__visual {
      position: relative;
      min-height: 720px;
      overflow: hidden;
      background: #0e1112;
    }

    .craft__visual::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 60%, rgba(0, 0, 0, .28));
      content: "";
      pointer-events: none;
    }

    .craft__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      transform: scale(1.015);
      transition: transform 1.2s var(--ease);
    }

    .craft:hover .craft__visual img {
      transform: scale(1.05);
    }

    .craft__caption {
      position: absolute;
      z-index: 2;
      bottom: 30px;
      left: 30px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, .62);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .craft__caption::before {
      width: 28px;
      height: 1px;
      background: var(--gold-light);
      content: "";
    }

    .craft__content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 70px clamp(42px, 5vw, 82px);
      background: var(--wine);
      color: #fff;
    }

    .craft__quote {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(44px, 4.4vw, 68px);
      font-weight: 400;
      letter-spacing: -.035em;
      line-height: 1.02;
    }

    .craft__quote em {
      color: var(--gold-light);
    }

    .craft__features {
      display: grid;
      margin-top: 80px;
      border-top: 1px solid var(--white-line);
    }

    .craft-feature {
      display: grid;
      padding: 20px 0;
      border-bottom: 1px solid var(--white-line);
      grid-template-columns: 36px 1fr;
      gap: 18px;
    }

    .craft-feature__index {
      color: var(--gold-light);
      font-family: var(--serif);
      font-size: 17px;
    }

    .craft-feature strong {
      display: block;
      margin-bottom: 4px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .craft-feature p {
      margin: 0;
      color: rgba(255, 255, 255, .62);
      font-size: 12px;
      line-height: 1.6;
    }

    .collections {
      padding: 150px 0 80px;
    }

    .collections__header,
    .offers__header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 60px;
    }

    .collections__grid {
      display: grid;
      margin-top: 70px;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
    }

    .collection-card {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      background: #191c20;
      grid-column: span 3;
      transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
      transform-style: preserve-3d;
      transition: transform .45s var(--ease), box-shadow .45s ease;
      will-change: transform;
    }

    .collection-card:nth-child(1),
    .collection-card:nth-child(4) {
      margin-top: 46px;
    }

    .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: saturate(.72) contrast(1.06);
      transition: transform .8s var(--ease), filter .6s ease;
    }

    .collection-card::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(17, 10, 10, .82), transparent 54%);
      content: "";
    }

    .collection-card::before {
      position: absolute;
      z-index: 1;
      inset: 0;
      background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(225, 197, 145, .2), transparent 32%);
      content: "";
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s ease;
    }

    .collection-card__content {
      position: absolute;
      z-index: 2;
      right: 25px;
      bottom: 25px;
      left: 25px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      color: #fff;
    }

    .collection-card__content small {
      display: block;
      margin-bottom: 7px;
      color: rgba(255, 255, 255, .58);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .collection-card h3 {
      margin: 0;
      font-family: var(--serif);
      font-size: 34px;
      font-weight: 500;
      line-height: 1;
    }

    .collection-card__arrow {
      display: grid;
      min-width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, .5);
      border-radius: 50%;
      font-size: 17px;
      place-items: center;
      transition: background .3s ease, color .3s ease, transform .3s var(--ease);
    }

    .collection-card:hover img {
      filter: saturate(.95) contrast(1.04);
      transform: scale(1.045);
    }

    .collection-card:hover {
      box-shadow: 0 35px 70px rgba(31, 18, 15, .18);
    }

    .collection-card:hover::before {
      opacity: 1;
    }

    .collection-card:hover .collection-card__arrow {
      background: #fff;
      color: var(--wine-dark);
      transform: rotate(45deg);
    }

    .collections__more {
      display: flex;
      justify-content: center;
      margin-top: 52px;
    }

    .offers {
      padding: 90px 0 150px;
    }

    .offers__nav {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .slider-button {
      display: grid;
      width: 48px;
      height: 48px;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      font-size: 18px;
      place-items: center;
      transition: background .25s ease, color .25s ease;
    }

    .slider-button:hover {
      background: var(--wine);
      color: #fff;
    }

    .products-shell {
      overflow: hidden;
      margin-top: 66px;
    }

    .products {
      display: grid;
      grid-auto-columns: calc((100% - 54px) / 4);
      grid-auto-flow: column;
      gap: 18px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
    }

    .products::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      position: relative;
      min-width: 0;
      background: var(--paper-light);
      scroll-snap-align: start;
      transition: transform .45s var(--ease), box-shadow .45s ease;
    }

    .product-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-8px);
    }

    .product-card__visual {
      position: relative;
      display: grid;
      min-height: 390px;
      overflow: hidden;
      place-items: center;
    }

    .product-card__visual::before {
      position: absolute;
      top: 35px;
      left: 50%;
      width: 68%;
      aspect-ratio: 1;
      border: 1px solid rgba(100, 20, 29, .11);
      border-radius: 50%;
      content: "";
      transform: translateX(-50%);
    }

    .product-card__visual img {
      position: relative;
      z-index: 1;
      width: 96%;
      height: 350px;
      object-fit: contain;
      mix-blend-mode: multiply;
      transition: transform .65s var(--ease);
    }

    .product-card:hover .product-card__visual img {
      transform: scale(1.035);
    }

    .product-card__badge {
      position: absolute;
      z-index: 3;
      top: 20px;
      left: 20px;
      padding: 7px 10px;
      border-radius: 50px;
      background: var(--wine);
      color: #fff;
      font-size: 8px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .favorite-button {
      position: absolute;
      z-index: 3;
      top: 14px;
      right: 14px;
      display: grid;
      width: 42px;
      height: 42px;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(251, 248, 242, .82);
      cursor: pointer;
      font-family: Georgia, serif;
      font-size: 23px;
      place-items: center;
      transition: background .25s ease, color .25s ease, transform .25s var(--ease);
      backdrop-filter: blur(10px);
    }

    .favorite-button:hover,
    .favorite-button.is-active {
      background: var(--wine);
      color: #fff;
      transform: scale(1.05);
    }

    .quick-view-button {
      position: absolute;
      z-index: 4;
      right: 20px;
      bottom: 18px;
      left: 20px;
      min-height: 46px;
      border: 1px solid rgba(24, 20, 18, .2);
      border-radius: 100px;
      background: rgba(247, 243, 236, .9);
      color: var(--ink);
      cursor: pointer;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      opacity: 0;
      text-transform: uppercase;
      transform: translateY(12px);
      backdrop-filter: blur(12px);
      transition: opacity .35s ease, transform .35s var(--ease), background .25s ease, color .25s ease;
    }

    .quick-view-button:hover {
      background: var(--wine-dark);
      color: #fff;
    }

    .product-card:hover .quick-view-button,
    .quick-view-button:focus-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .product-card__body {
      padding: 23px 22px 25px;
      border-top: 1px solid var(--line);
    }

    .product-card__series {
      display: block;
      margin-bottom: 7px;
      color: var(--muted);
      font-size: 8px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .product-card__body h3 {
      min-height: 52px;
      margin: 0;
      font-family: var(--serif);
      font-size: 25px;
      font-weight: 500;
      letter-spacing: -.02em;
      line-height: 1.06;
    }

    .product-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 22px;
    }

    .product-card__price {
      font-size: 14px;
      font-weight: 600;
    }

    .product-card__link {
      display: grid;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 50%;
      font-size: 16px;
      place-items: center;
      transition: background .25s ease, color .25s ease, transform .3s var(--ease);
    }

    .product-card__link:hover {
      background: var(--wine);
      color: #fff;
      transform: rotate(45deg);
    }

    .offers__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      margin-top: 44px;
    }

    .offers__progress {
      position: relative;
      width: min(390px, 42vw);
      height: 1px;
      overflow: hidden;
      background: var(--line);
    }

    .offers__progress span {
      display: block;
      width: 25%;
      height: 100%;
      background: var(--wine);
      transform-origin: left;
      transition: transform .35s ease;
    }

    .mood {
      position: relative;
      min-height: 760px;
      overflow: hidden;
      background: #171515;
      color: #fff;
    }

    .mood__image {
      position: absolute;
      top: -15%;
      right: -4%;
      width: 61%;
      height: 125%;
      object-fit: cover;
      object-position: center;
      opacity: .78;
      filter: saturate(.55) contrast(1.08);
    }

    .mood::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #171515 0%, rgba(23, 21, 21, .96) 34%, rgba(23, 21, 21, .34) 72%, rgba(23, 21, 21, .2));
      content: "";
    }

    .mood__inner {
      position: relative;
      z-index: 2;
      display: flex;
      min-height: 760px;
      max-width: none;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 90px 0;
    }

    .mood__inner > * {
      max-width: 720px;
    }

    .mood__quote {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(58px, 6.7vw, 96px);
      font-weight: 400;
      letter-spacing: -.04em;
      line-height: .94;
    }

    .mood__quote em {
      color: var(--gold-light);
    }

    .mood__copy {
      max-width: 520px;
      margin: 34px 0 0;
      color: rgba(255, 255, 255, .62);
      font-size: 15px;
      line-height: 1.8;
    }

    .mood__modes {
      display: inline-flex;
      margin-top: 34px;
      padding: 4px;
      border: 1px solid rgba(255, 255, 255, .17);
      border-radius: 100px;
      background: rgba(10, 8, 8, .35);
      backdrop-filter: blur(10px);
    }

    .mood__mode {
      min-width: 94px;
      height: 40px;
      padding: 0 16px;
      border: 0;
      border-radius: 100px;
      background: transparent;
      color: rgba(255, 255, 255, .56);
      cursor: pointer;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: background .35s ease, color .35s ease, box-shadow .35s ease;
    }

    .mood__mode.is-active {
      background: var(--paper-light);
      color: var(--wine-dark);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    }

    .mood.is-day .mood__image {
      opacity: .92;
      filter: saturate(.72) contrast(1.02) brightness(1.12) sepia(.08);
    }

    .mood.is-day::after {
      background: linear-gradient(90deg, #221b18 0%, rgba(34, 27, 24, .9) 35%, rgba(34, 27, 24, .24) 72%, rgba(34, 27, 24, .06));
    }

    .mood .button {
      margin-top: 40px;
    }

    .consultation {
      padding: 150px 0;
      background: var(--paper-light);
    }

    .consultation__card {
      display: grid;
      padding: clamp(46px, 6vw, 86px);
      overflow: hidden;
      background:
        radial-gradient(circle at 90% 0%, rgba(177, 138, 85, .25), transparent 26%),
        var(--paper-deep);
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
      gap: 80px;
    }

    .consultation__title {
      max-width: 720px;
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(50px, 5.5vw, 78px);
      font-weight: 500;
      letter-spacing: -.04em;
      line-height: .96;
    }

    .consultation__copy {
      max-width: 540px;
      margin: 26px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    /* Native Flexcore form; scoped so the shared forms.css keeps its defaults elsewhere. */
    #consultation .consultation-form {
      display: flex;
      width: 100%;
      min-width: 0;
      max-width: none;
      margin: 0;
      flex-direction: column;
      justify-content: center;
    }

    #consultation .consultation-form fieldset {
      display: grid;
      min-width: 0;
      margin: 0;
      padding: 0;
      border: 0;
      gap: 20px;
    }

    #consultation .flex-form-field {
      position: relative;
      min-width: 0;
      margin: 0;
    }

    #consultation .flex-user-form :where(input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]), textarea, select) {
      width: 100%;
      min-height: 58px;
      padding: 23px 0 9px;
      border: 0;
      border-bottom: 1px solid rgba(36, 30, 26, .3);
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      font: inherit;
      font-size: 14px;
      transition: border-color .25s ease;
    }

    #consultation .flex-form-field > label {
      display: block;
      margin: 0 0 4px;
      color: var(--muted);
      font-size: 12px;
    }

    #consultation .flex-form-field:has(input[placeholder]) > label {
      position: absolute;
      top: 5px;
      left: 0;
      font-size: 10px;
      pointer-events: none;
      transition: top .2s ease, color .2s ease, font-size .2s ease;
    }

    #consultation .flex-form-field:has(input:placeholder-shown):not(:focus-within) > label {
      top: 21px;
      font-size: 12px;
    }

    #consultation .flex-form-field:focus-within > label {
      color: var(--wine);
    }

    #consultation .flex-user-form input:focus {
      border-color: var(--wine);
    }

    #consultation .flex-user-form :is(input, textarea, select, button):focus-visible {
      outline: 2px solid var(--wine);
      outline-offset: 4px;
    }

    #consultation .flex-form-captcha {
      display: grid;
      margin: 26px 0 0;
      grid-template-columns: 180px minmax(0, 1fr);
      grid-template-rows: auto 1fr;
      gap: 6px 20px;
    }

    #consultation .flex-form-captcha-row {
      display: flex;
      margin: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      grid-column: 1;
      grid-row: 1 / 3;
    }

    #consultation .flex-form-captcha-row img {
      width: 180px;
      height: 56px;
      border-radius: 6px;
    }

    #consultation .flex-form-captcha > label {
      align-self: end;
      margin: 0;
      color: var(--muted);
      font-size: 11px;
      grid-column: 2;
      grid-row: 1;
    }

    #consultation .flex-user-form input[name="flex_captcha"] {
      min-height: 38px;
      max-width: none;
      padding: 4px 0 9px;
      align-self: start;
      letter-spacing: .12em;
      grid-column: 2;
      grid-row: 2;
    }

    #consultation .flex-user-form [data-flex-captcha-refresh] {
      min-height: 32px;
      padding: 0;
      border: 0;
      background: none;
      color: var(--wine);
      font-size: 11px;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    #consultation .flex-user-form [data-flex-captcha-refresh]::before {
      margin-right: 6px;
      content: "↻";
    }

    #consultation .consultation-form .button {
      width: 100%;
      min-height: 56px;
      margin-top: 28px;
      padding: 0 26px;
      border: 1px solid var(--wine);
      border-radius: 100px;
      background: linear-gradient(135deg, #5b2028 0%, #351216 100%);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      line-height: 1;
    }

    #consultation .consultation-form .button:hover {
      background: linear-gradient(135deg, #6c2933 0%, #42161c 100%);
    }

    #consultation .flex-form-status {
      margin-top: 16px;
      font-size: 13px;
      line-height: 1.6;
    }

    #consultation .form-note {
      order: 1;
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 10px;
      line-height: 1.5;
    }

    #consultation .flex-form-success {
      position: relative;
      min-height: 400px;
      padding: 42px clamp(20px, 3vw, 44px);
      border: 1px solid rgba(200, 174, 124, .45);
      background:
        radial-gradient(ellipse at 50% 0%, rgba(200, 174, 124, .17), transparent 60%),
        linear-gradient(145deg, #48171d, #241014);
      color: var(--paper-light);
      box-shadow: 0 18px 42px rgba(48, 18, 23, .12);
    }

    #consultation .flex-form-success::after {
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(200, 174, 124, .18);
      content: "";
      pointer-events: none;
    }

    #consultation .flex-form-success__icon {
      width: 72px;
      height: 72px;
      border-color: rgba(200, 174, 124, .65);
      color: var(--gold-light);
      box-shadow: 0 0 0 8px rgba(200, 174, 124, .045);
    }

    #consultation .flex-form-success__eyebrow {
      color: var(--gold-light);
      font-family: var(--sans);
    }

    #consultation .flex-form-success__title {
      max-width: 300px;
      font-family: var(--serif);
      font-size: clamp(38px, 4vw, 56px);
      font-weight: 500;
      letter-spacing: -.03em;
      line-height: .98;
      text-wrap: balance;
    }

    #consultation .flex-form-success__message {
      max-width: 310px;
      color: rgba(247, 243, 236, .78);
      font-size: 13px;
    }

    @media (max-width: 480px) {
      #consultation .flex-form-captcha { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; }
      #consultation .flex-form-captcha-row { grid-column: 1; grid-row: 1; }
      #consultation .flex-form-captcha > label { grid-column: 1; grid-row: 2; }
      #consultation .flex-user-form input[name="flex_captcha"] { grid-column: 1; grid-row: 3; }
    }

    .site-footer {
      padding: 80px 0 24px;
      background: var(--wine-dark);
      color: #fff;
    }

    .footer__top {
      display: grid;
      padding-bottom: 76px;
      border-bottom: 1px solid var(--white-line);
      grid-template-columns: 1.25fr repeat(3, 1fr);
      gap: 60px;
    }

    .site-footer .brand__seal {
      border-color: var(--gold-light);
      color: var(--gold-light);
      box-shadow: inset 0 0 0 3px var(--wine-dark);
    }

    .site-footer .brand__name {
      color: #fff;
    }

    .site-footer .brand__name small {
      color: rgba(255, 255, 255, .5);
    }

    .footer__statement {
      max-width: 300px;
      margin: 30px 0 0;
      color: rgba(255, 255, 255, .55);
      font-family: var(--serif);
      font-size: 24px;
      line-height: 1.2;
    }

    .footer-column h3 {
      margin: 0 0 22px;
      color: var(--gold-light);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .footer-column ul {
      display: grid;
      margin: 0;
      padding: 0;
      gap: 10px;
      list-style: none;
    }

    .footer-column a,
    .footer-column p {
      margin: 0;
      color: rgba(255, 255, 255, .63);
      font-size: 12px;
      line-height: 1.7;
      transition: color .25s ease;
    }

    .footer-column a:hover {
      color: #fff;
    }

    .footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding-top: 24px;
      color: rgba(255, 255, 255, .38);
      font-size: 9px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer__bottom-links {
      display: flex;
      gap: 24px;
    }

    .search-dialog {
      width: min(760px, calc(100vw - 36px));
      padding: 0;
      border: 0;
      background: var(--paper-light);
      color: var(--ink);
      box-shadow: 0 30px 100px rgba(20, 8, 8, .3);
    }

    .product-dialog {
      width: min(1040px, calc(100vw - 40px));
      max-height: min(780px, calc(100vh - 40px));
      padding: 0;
      overflow: auto;
      border: 0;
      background: var(--paper-light);
      color: var(--ink);
      box-shadow: 0 38px 120px rgba(15, 8, 8, .45);
    }

    .product-dialog::backdrop {
      background: rgba(14, 9, 10, .82);
      backdrop-filter: blur(10px);
    }

    .quick-view {
      position: relative;
      display: grid;
      min-height: 650px;
      grid-template-columns: 1fr 1fr;
    }

    .quick-view__close {
      position: absolute;
      z-index: 5;
      top: 18px;
      right: 18px;
      background: rgba(247, 243, 236, .88);
      font-size: 22px;
      backdrop-filter: blur(10px);
    }

    .quick-view__visual {
      position: relative;
      display: grid;
      min-height: 650px;
      overflow: hidden;
      background: var(--product-backdrop);
      place-items: center;
    }

    .quick-view__visual::before {
      position: absolute;
      width: 72%;
      aspect-ratio: 1;
      border: 1px solid rgba(72, 23, 29, .17);
      border-radius: 50%;
      box-shadow: 0 0 0 52px rgba(255, 255, 255, .09), 0 0 0 104px rgba(255, 255, 255, .05);
      content: "";
    }

    .quick-view__visual img {
      position: relative;
      z-index: 1;
      width: 94%;
      height: 590px;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    .quick-view__content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 72px 68px;
    }

    .quick-view__content h2 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(42px, 4.4vw, 64px);
      font-weight: 500;
      letter-spacing: -.04em;
      line-height: .96;
    }

    .quick-view__description {
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.75;
    }

    .quick-view__facts {
      display: grid;
      margin: 30px 0 0;
      padding: 0;
      border-top: 1px solid var(--line);
      list-style: none;
    }

    .quick-view__facts li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 10px;
    }

    .quick-view__facts strong {
      color: var(--ink);
      font-weight: 500;
    }

    .quick-view__price {
      display: block;
      margin-top: 30px;
      font-family: var(--serif);
      font-size: 38px;
      font-weight: 500;
      line-height: 1;
    }

    .quick-view__actions {
      display: grid;
      margin-top: 28px;
      grid-template-columns: 1fr auto;
      gap: 10px;
    }

    .quick-view__actions .product-card__link {
      width: 56px;
      height: 56px;
    }

    .search-dialog::backdrop {
      background: rgba(25, 10, 12, .72);
      backdrop-filter: blur(7px);
    }

    .search-dialog__inner {
      position: relative;
      padding: 64px;
    }

    .search-dialog__close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 22px;
    }

    .search-dialog h2 {
      margin: 0;
      font-family: var(--serif);
      font-size: 50px;
      font-weight: 500;
      letter-spacing: -.03em;
      line-height: 1;
    }

    .search-dialog p {
      margin: 14px 0 30px;
      color: var(--muted);
      font-size: 13px;
    }

    .search-form {
      display: flex;
      gap: 10px;
    }

    .search-form input {
      min-width: 0;
      flex: 1;
      height: 56px;
      padding: 0 18px;
      border: 1px solid var(--line);
      outline: none;
      background: #fff;
    }

    .search-form input:focus {
      border-color: var(--wine);
    }

    .toast {
      position: fixed;
      z-index: 100;
      right: 24px;
      bottom: 24px;
      max-width: 390px;
      padding: 18px 22px;
      background: var(--wine-dark);
      color: #fff;
      box-shadow: 0 20px 60px rgba(32, 9, 13, .28);
      font-size: 12px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(15px);
      transition: opacity .3s ease, transform .3s var(--ease);
    }

    .toast.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .has-js .reveal {
      opacity: 0;
      transform: translateY(35px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }

    .has-js .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero__content > * {
      animation: hero-in .9s var(--ease) both;
    }

    .hero__content > :nth-child(2) { animation-delay: .08s; }
    .hero__content > :nth-child(3) { animation-delay: .16s; }
    .hero__content > :nth-child(4) { animation-delay: .24s; }
    .hero__content > :nth-child(5) { animation-delay: .32s; }

    .hero__arch {
      animation: arch-in 1.1s var(--ease) both;
    }

    .hero__product {
      animation: product-in 1.25s .15s var(--ease) both;
    }

    @keyframes hero-in {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes arch-in {
      from { opacity: 0; transform: translateY(36px) scale(.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes product-in {
      from { opacity: 0; transform: translate(-50%, 40px) scale(.94); }
      to { opacity: 1; transform: translate(-50%, 0) scale(1); }
    }

    @media (max-width: 1180px) {
      :root {
        --container: min(100% - 48px, 1120px);
      }

      .desktop-nav {
        gap: 20px;
      }

      .desktop-nav a {
        font-size: 11px;
      }

      .hero__inner {
        grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
      }

      .hero__title {
        font-size: clamp(62px, 7.1vw, 88px);
      }

      .collection-card {
        grid-column: span 6;
      }

      .collection-card:nth-child(1),
      .collection-card:nth-child(4) {
        margin-top: 0;
      }

      .collection-card:nth-child(even) {
        margin-top: 42px;
      }

      .products {
        grid-auto-columns: calc((100% - 36px) / 3);
      }

      .footer__top {
        grid-template-columns: 1.4fr 1fr 1fr;
      }

      .footer-column:last-child {
        grid-column: 2 / -1;
      }
    }

    @media (max-width: 960px) {
      :root {
        --container: calc(100% - 40px);
      }

      .announcement__links a:last-child,
      .desktop-nav,
      .header-actions .favorite-header {
        display: none;
      }

      .header__inner {
        grid-template-columns: 1fr auto;
      }

      .header-actions {
        grid-column: 2;
      }

      .menu-toggle {
        display: grid;
      }

      .menu-open .mobile-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }

      .hero::before {
        display: none;
      }

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

      .hero__content {
        max-width: 780px;
        padding: 90px 0 72px;
      }

      .hero__title {
        font-size: clamp(68px, 12vw, 104px);
      }

      .hero__visual {
        min-height: 680px;
      }

      .hero__arch {
        inset: 0 0 0 16%;
      }

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

      .proof:nth-child(2) {
        border-right: 0;
      }

      .proof:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
      }

      .proof:nth-child(3) {
        padding-left: 0;
      }

      .manifesto {
        padding: 110px 0;
      }

      .manifesto__intro {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .manifesto__intro .section-copy {
        margin: 0;
      }

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

      .craft__visual {
        min-height: 620px;
      }

      .craft__content {
        min-height: 590px;
      }

      .collections,
      .consultation {
        padding: 110px 0;
      }

      .offers {
        padding: 60px 0 110px;
      }

      .products {
        grid-auto-columns: calc((100% - 18px) / 2);
      }

      .mood__image {
        right: -24%;
        width: 82%;
      }

      .mood::after {
        background: linear-gradient(90deg, #171515 0%, rgba(23, 21, 21, .94) 48%, rgba(23, 21, 21, .38));
      }

      .consultation__card {
        grid-template-columns: 1fr;
        gap: 56px;
      }

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

      .footer-column:last-child {
        grid-column: auto;
      }
    }

    @media (max-width: 640px) {
      :root {
        --container: calc(100% - 32px);
      }

      .announcement__inner {
        min-height: 34px;
        justify-content: center;
      }

      .announcement__links {
        display: none;
      }

      .announcement__note {
        font-size: 8px;
        letter-spacing: .12em;
      }

      .header__inner {
        min-height: 76px;
      }

      .brand {
        gap: 10px;
      }

      .brand__seal {
        width: 30px;
        height: 30px;
        font-size: 12px;
      }

      .brand__name {
        font-size: 18px;
      }

      .brand__name small {
        margin-top: 6px;
        font-size: 6px;
      }

      .header-actions {
        gap: 1px;
      }

      .icon-button {
        width: 38px;
        height: 38px;
      }

      .mobile-menu {
        inset: 110px 0 0;
      }

      .hero,
      .hero__inner {
        min-height: 0;
      }

      .hero__content {
        padding: 72px 0 54px;
      }

      .hero__title {
        font-size: clamp(54px, 18vw, 76px);
        line-height: .91;
      }

      .hero__lead {
        margin-top: 26px;
        font-size: 15px;
        line-height: 1.7;
      }

      .hero__actions {
        display: grid;
        width: 100%;
        margin-top: 32px;
      }

      .button {
        width: 100%;
      }

      .hero__material {
        margin-top: 34px;
        font-size: 8px;
      }

      .hero__visual {
        min-height: 500px;
      }

      .hero__arch {
        inset: 0 -36px 0 34px;
        border-radius: 220px 220px 0 0;
      }

      .hero__product {
        top: -1%;
        width: 122%;
      }

      .made-in-italy {
        top: 20px;
        right: -11px;
        width: 94px;
        height: 94px;
        font-size: 7px;
      }

      .hero__product-name {
        right: 14px;
        bottom: 16px;
        width: 184px;
      }

      .light-switch {
        bottom: 104px;
        left: 50px;
      }

      .hero__side-note {
        display: none;
      }

      .proof {
        min-height: 145px;
        padding: 26px 18px;
      }

      .proof__number {
        font-size: 28px;
      }

      .proof strong {
        font-size: 10px;
      }

      .proof p {
        font-size: 10px;
      }

      .section-title {
        font-size: clamp(45px, 15vw, 62px);
      }

      .section-copy {
        font-size: 15px;
      }

      .manifesto,
      .collections,
      .consultation {
        padding: 84px 0;
      }

      .craft {
        margin-top: 56px;
      }

      .craft__visual {
        min-height: 440px;
      }

      .craft__content {
        min-height: 0;
        padding: 46px 26px;
      }

      .craft__quote {
        font-size: 42px;
      }

      .craft__features {
        margin-top: 52px;
      }

      .collections__header,
      .offers__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
      }

      .collections__grid {
        display: flex;
        margin: 48px calc(var(--container) / -2 + 50vw) 0 0;
        gap: 12px;
        overflow-x: auto;
        padding-right: 16px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
      }

      .collections__grid::-webkit-scrollbar {
        display: none;
      }

      .collection-card,
      .collection-card:nth-child(even) {
        min-width: 80vw;
        min-height: 480px;
        margin-top: 0;
        scroll-snap-align: start;
      }

      .collections__more {
        justify-content: stretch;
        margin-top: 32px;
      }

      .offers {
        padding: 36px 0 84px;
      }

      .offers__nav {
        display: none;
      }

      .products-shell {
        margin: 48px calc(var(--container) / -2 + 50vw) 0 0;
      }

      .products {
        grid-auto-columns: 82vw;
        padding-right: 16px;
      }

      .product-card__visual {
        min-height: 360px;
      }

      .product-card__visual img {
        height: 320px;
      }

      .offers__progress {
        width: 48%;
      }

      .offers__bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .mood,
      .mood__inner {
        min-height: 700px;
      }

      .mood__image {
        top: 0;
        right: -72%;
        width: 155%;
        height: 100%;
        opacity: .55;
      }

      .mood::after {
        background: linear-gradient(90deg, #171515 0%, rgba(23, 21, 21, .9) 72%, rgba(23, 21, 21, .45));
      }

      .mood__quote {
        font-size: 58px;
      }

      .mood__modes {
        margin-top: 28px;
      }

      .consultation__card {
        margin-inline: -4px;
        padding: 42px 24px;
        gap: 40px;
      }

      .consultation__title {
        font-size: 48px;
      }

      .footer__top {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer__bottom-links {
        flex-direction: column;
        gap: 10px;
      }

      .search-dialog__inner {
        padding: 60px 24px 32px;
      }

      .search-dialog h2 {
        font-size: 40px;
      }

      .search-form {
        flex-direction: column;
      }

      .product-dialog {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
      }

      .quick-view {
        min-height: 0;
        grid-template-columns: 1fr;
      }

      .quick-view__visual {
        min-height: 390px;
      }

      .quick-view__visual img {
        height: 370px;
      }

      .quick-view__content {
        padding: 44px 24px 34px;
      }

      .quick-view__content h2 {
        font-size: 43px;
      }

      .quick-view__actions {
        grid-template-columns: 1fr 56px;
      }
    }

    @media (hover: none), (pointer: coarse) {
      .quick-view-button {
        opacity: 1;
        transform: none;
      }

      .collection-card {
        transform: none !important;
      }

      .product-card:hover {
        box-shadow: none;
        transform: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }

      .has-js .reveal {
        opacity: 1;
        transform: none;
      }
    }
    /* High-resolution product photos; the original layout and hero are preserved. */
    .product-card__visual, .quick-view__visual, .collection-card, .craft__visual { background: var(--product-backdrop); isolation: isolate; }
    .collection-card img, .collection-card:hover img, .craft__visual img { mix-blend-mode: multiply; filter: none; }
    .craft__caption { color: var(--wine); }

/* Request states and the saved selection. */
.button:disabled { cursor: wait; opacity: .65; }
.favorites-list { margin-top: 24px; max-height: 50vh; overflow-y: auto; }
.favorites-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.favorites-item a { font-size: 14px; }
.favorites-item .icon-button { flex-shrink: 0; }
.products-empty { padding: 32px 0; }
@media (max-width: 380px) {
  .site-header .brand__seal { display: none; }
  .site-header .brand__name { font-size: 17px; }
  .site-header .brand__name small { letter-spacing: .22em; }
  .header__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
}
