    :root {
      --bg: #f4e8d2;
      --bg-strong: #e7dac2;
      --ink: #171411;
      --muted: #6e675e;
      --gold: #d18233;
      --gold-soft: #ccc9c0;
      --sage: #aac283;
      --stone: #ccc9c0;
      --line: rgba(23, 20, 17, 0.12);
      --white: #fffdf9;
      --footer: #090909;
      --hero-shadow: rgba(0, 0, 0, 0.35);
      --container: min(1240px, calc(100vw - 64px));
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Manrope", sans-serif;
      background: var(--bg);
      color: var(--ink);
    }

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

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

    button,
    input {
      font: inherit;
    }

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

    .eyebrow {
      display: inline-block;
      font-size: 0.68rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .section-title {
      margin: 0;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(3.25rem, 8vw, 6.8rem);
      line-height: 0.88;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .section-title em {
      font-style: italic;
      font-weight: 400;
    }

    .copy {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.85;
    }

    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      background: transparent;
      border-bottom: 0;
      box-shadow: none;
      color: rgba(255, 248, 240, 0.92);
    }

    .site-header .container {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
      padding: 18px 0;
    }

    .nav-group {
      display: flex;
      gap: 28px;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .nav-group a,
    .nav-menu a {
      white-space: nowrap;
    }

    .nav-group a,
    .nav-icon,
    .cta-secondary,
    .footer-nav a {
      position: relative;
      transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-group a::after,
    .cta-secondary::after,
    .footer-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, rgba(209, 130, 51, 0.05), rgba(209, 130, 51, 0.9), rgba(170, 194, 131, 0.75));
      transform: scaleX(0.12);
      transform-origin: left center;
      opacity: 0;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .nav-group a:hover,
    .cta-secondary:hover,
    .footer-nav a:hover,
    .nav-icon:hover {
      transform: translateY(-1px);
    }

    .nav-group a:hover::after,
    .cta-secondary:hover::after,
    .footer-nav a:hover::after {
      transform: scaleX(1);
      opacity: 1;
    }

    .nav-menu {
      display: flex;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

.nav-menu li {
  margin: 0;
}

    .nav-group.right {
      justify-content: flex-end;
      align-items: center;
    }

    .brand {
      text-align: center;
      line-height: 1;
    }

.brand-logo {
  display: block;
  height: auto;
  width: clamp(120px, 14vw, 180px);
  margin: 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

    .brand small {
      display: block;
      margin-bottom: 5px;
      font-size: 0.5rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 248, 240, 0.65);
    }

    .brand strong {
      display: block;
      font-family: "Cormorant Garamond", serif;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: 0.08em;
    }

    .brand span {
      display: block;
      margin-top: 4px;
      font-size: 0.55rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255, 248, 240, 0.6);
    }

    .bag-icon,
    .menu-icon {
      position: relative;
      width: 18px;
      height: 18px;
      display: inline-block;
    }

    .bag-icon::before,
    .bag-icon::after,
    .menu-icon::before,
    .menu-icon::after,
    .menu-icon span {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
    }

    .bag-icon::before {
      bottom: 1px;
      width: 14px;
      height: 11px;
      border: 1.4px solid currentColor;
      border-radius: 2px;
    }

    .bag-icon::after {
      top: 1px;
      width: 8px;
      height: 6px;
      border: 1.4px solid currentColor;
      border-bottom: 0;
      border-radius: 8px 8px 0 0;
    }

    .menu-icon::before,
    .menu-icon::after,
    .menu-icon span {
      width: 16px;
      height: 1.2px;
      background: currentColor;
    }

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

    .menu-icon span {
      top: 8.5px;
    }

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

    .hero {
      padding: 0 0 48px;
    }

    .hero-frame {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      box-shadow: none;
      isolation: auto;
      background-color: #0f0d0c;
    }

    .hero-slider {
      position: relative;
      width: 100%;
      height: 100vh;
    }

    .hero-slider::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.24) 24%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.32) 44%, rgba(0, 0, 0, 0.18) 100%);
    }

    .hero-image {
      position: absolute;
      inset: 0;
      display: block;
      height: 100vh;
      width: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.9s ease;
    }

    .hero-image.active {
      opacity: 1;
    }

    .hero-slider-nav {
      position: absolute;
      left: 50%;
      bottom: 28px;
      z-index: 3;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .hero-overlay-shell {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      pointer-events: none;
    }

    .hero-overlay-copy {
      position: relative;
      width: 100%;
      max-width: none;
      margin-bottom: 0;
      color: rgba(255, 248, 240, 0.97);
      text-align: center;
      pointer-events: auto;
    }

    .hero-kicker {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 0.72rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255, 248, 240, 0.72);
    }

    .hero-title {
      margin: 0;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(4rem, 8vw, 7.2rem);
      line-height: 0.9;
      font-weight: 500;
      letter-spacing: -0.05em;
    }

    .hero-title em {
      font-style: italic;
      font-weight: 400;
    }

    .hero-description {
      max-width: 760px;
      margin: 20px auto 0;
      font-size: 0.96rem;
      line-height: 1.9;
      color: rgba(255, 248, 240, 0.84);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 190px;
      min-height: 52px;
      padding: 0 26px;
      position: relative;
      overflow: hidden;
      border-radius: 999px;
      border: 1px solid rgba(209, 130, 51, 0.42);
      background:
        linear-gradient(180deg, rgba(244, 232, 210, 0.18), rgba(209, 130, 51, 0.22)),
        rgba(26, 19, 11, 0.28);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      color: #f6ebcf;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
    }

    .cta-button::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 32%);
      pointer-events: none;
    }

    .cta-button::after {
      content: "";
      position: absolute;
      top: -30%;
      left: -42%;
      width: 24%;
      height: 160%;
      background: linear-gradient(90deg, transparent, rgba(255, 246, 220, 0.42), transparent);
      transform: rotate(20deg);
      opacity: 0.75;
      transition: left 0.75s ease;
      pointer-events: none;
    }

    .cta-button:hover {
      transform: translateY(-1px);
      filter: brightness(1.02) saturate(1.03);
      border-color: rgba(209, 130, 51, 0.6);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    }

    .cta-button:hover::after {
      left: 112%;
    }

.cta-secondary {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-secondary::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(209, 130, 51, 0.2), rgba(209, 130, 51, 0.92));
  transition: width 0.28s ease, opacity 0.28s ease;
}

.cta-secondary:hover::before {
  width: 34px;
}

.cta-button--dark {
  min-width: 0;
  min-height: 46px;
  padding: 0 20px;
  background:
    linear-gradient(180deg, rgba(170, 194, 131, 0.14), rgba(209, 130, 51, 0.12)),
    rgba(23, 20, 17, 0.9);
  color: #f3e9d0;
}

    .hero-dot {
      width: 10px;
      height: 10px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .hero-dot.active {
      background: rgba(255, 255, 255, 0.92);
      transform: scale(1.08);
    }

    .hero::after {
      content: none;
    }

    .media-strip {
      padding: 56px 0 34px;
    }

    .media-strip-header {
      margin-bottom: 42px;
      text-align: center;
    }

    .media-strip-header h2 {
      margin: 16px 0 0;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.4rem, 4.5vw, 4.2rem);
      line-height: 0.95;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
    }

    .media-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: #120f0d;
      box-shadow: 0 24px 50px rgba(18, 14, 10, 0.12);
      aspect-ratio: 9 / 16;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .media-card video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      filter: saturate(0.94) contrast(1.02);
      transition: transform 0.55s ease, filter 0.55s ease;
    }

    .media-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 56px rgba(18, 14, 10, 0.18);
    }

    .media-card:hover video {
      transform: scale(1.035);
      filter: saturate(1.02) contrast(1.04);
    }

    .media-card::after {
      content: "Hover to play";
      position: absolute;
      left: 44px;
      bottom: 16px;
      z-index: 1;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 248, 240, 0.82);
      pointer-events: none;
    }

    .media-card::before {
      content: "";
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 1;
      width: 16px;
      height: 16px;
      border: 1px solid rgba(255, 248, 240, 0.76);
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.18);
      pointer-events: none;
    }

    .media-card .play-icon {
      position: absolute;
      left: 24px;
      bottom: 23px;
      z-index: 2;
      width: 0;
      height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 6px solid rgba(255, 248, 240, 0.9);
      pointer-events: none;
    }

    section {
      position: relative;
    }

    .intro {
      padding: 108px 0 84px;
      text-align: center;
    }

    .intro .section-title {
      margin-bottom: 74px;
      display: inline-block;
      position: relative;
      padding-bottom: 26px;
      font-style: normal;
    }

    .intro .section-title::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: min(320px, 72%);
      height: 1px;
      transform: translateX(-50%);
      background: rgba(23, 20, 17, 0.12);
    }

    .product-rail {
      display: block;
    }

    .tin-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(180px, 1fr));
      gap: 34px 30px;
      align-items: end;
      position: relative;
      padding-bottom: 34px;
    }

    .tin-list::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 4px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(209, 130, 51, 0.42) 10%, rgba(170, 194, 131, 0.42) 90%, transparent);
    }

    .tin-card {
      display: block;
      text-align: center;
      position: relative;
      padding: 14px 4px 18px;
      min-height: 292px;
      transition: background 0.28s ease, transform 0.28s ease;
    }

    .tin-card:hover {
      background: rgba(244, 232, 210, 0.62);
      transform: translateY(-4px);
    }

    .tin-photo {
      width: min(320px, calc(100% - 4px));
      aspect-ratio: 1;
      margin: 0 auto 14px;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 18px 32px rgba(23, 20, 17, 0.12));
      transition: transform 0.35s ease, filter 0.35s ease;
    }

    .tin-card:hover .tin-photo {
      transform: scale(1.05);
      filter: drop-shadow(0 22px 36px rgba(23, 20, 17, 0.16));
    }

    .tin-title {
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .tin-meta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      margin-top: 6px;
    }

    .arrow-link {
      margin-top: 0;
      width: 28px;
      height: 28px;
      border: 1px solid rgba(23, 20, 17, 0.55);
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .arrow-link:hover {
      transform: translateX(4px) scale(1.04);
      background: rgba(255, 255, 255, 0.5);
      border-color: rgba(209, 130, 51, 0.48);
      box-shadow: 0 8px 18px rgba(17, 14, 11, 0.08);
    }

    .tin-card:hover .arrow-link {
      transform: translateX(4px) scale(1.04);
      background: rgba(255, 255, 255, 0.5);
      border-color: rgba(209, 130, 51, 0.48);
      box-shadow: 0 8px 18px rgba(17, 14, 11, 0.08);
    }

    .arrow-link::before {
      content: "→";
      font-size: 0.9rem;
      line-height: 1;
    }

    .story {
      padding: 70px 0 40px;
      text-align: center;
    }

    .story .copy {
      max-width: 380px;
      margin: 12px auto 0;
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }

    .guide {
      padding: 72px 0 96px;
    }

    .guide-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 58px;
    }

    .guide-header h2 {
      margin: 10px 0 0;
      font-family: "Cormorant Garamond", serif;
      font-weight: 500;
      font-size: clamp(2.8rem, 6vw, 5.4rem);
      line-height: 0.94;
      letter-spacing: -0.04em;
    }

    .guide-header p {
      max-width: 720px;
      margin: 18px auto 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.85;
    }

    .guide-carousel {
      --guide-gap: 26px;
      --guide-columns: 3;
      display: grid;
      gap: 28px;
    }

    .guide-carousel-viewport {
      position: relative;
      overflow: hidden;
      width: min(100vw - 24px, 1480px);
      margin: 0 auto;
      padding: 18px 68px 24px;
    }

    .guide-track {
      display: flex;
      gap: var(--guide-gap);
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .guide-card {
      flex: 0 0 calc((100% - (var(--guide-gap) * (var(--guide-columns) - 1))) / var(--guide-columns));
      padding: 30px;
      border-radius: 28px;
      position: relative;
      z-index: 1;
      transform-origin: center center;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)),
        rgba(244, 232, 210, 0.46);
      border: 1px solid rgba(23, 20, 17, 0.04);
      box-shadow: 0 8px 16px rgba(17, 14, 11, 0.07);
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: center;
      text-align: left;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      min-height: 100%;
    }

    .guide-card:hover {
      z-index: 2;
      transform: translateY(-6px) scale(1.03);
      border-color: rgba(209, 130, 51, 0.24);
      box-shadow: 0 18px 34px rgba(17, 14, 11, 0.12);
    }

    .guide-card.fade-up.visible:hover {
      transform: translateY(-6px) scale(1.03);
    }

    .guide-card.is-active {
      border-color: rgba(170, 194, 131, 0.34);
      box-shadow: 0 10px 22px rgba(17, 14, 11, 0.1);
    }

    .guide-card-visual {
      min-height: 180px;
      display: grid;
      place-items: center;
      padding: 0;
      background: transparent;
      position: relative;
      overflow: visible;
    }

    .guide-card-copy {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .guide-card-copy .eyebrow {
      color: rgba(23, 20, 17, 0.46);
    }

    .pearl {
      width: min(132px, 100%);
      aspect-ratio: 1;
      margin: 0;
      border-radius: 42% 58% 55% 45% / 45% 42% 58% 55%;
      box-shadow: none;
      position: relative;
      animation: float 8s ease-in-out infinite;
      background:
        radial-gradient(circle at 32% 30%, rgba(255,255,255,0.42), transparent 18%),
        radial-gradient(circle at 60% 68%, rgba(0,0,0,0.18), transparent 24%),
        radial-gradient(circle at 70% 22%, rgba(255,214,130,0.18), transparent 18%),
        linear-gradient(135deg, var(--pearl-a), var(--pearl-b) 48%, var(--pearl-c));
    }

    .pearl::after {
      content: none;
    }

    .guide-card:nth-child(2n) .pearl {
      animation-duration: 9.2s;
    }

    .guide-card:nth-child(3n) .pearl {
      animation-duration: 7.6s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .guide-card h3 {
      margin: 0;
      font-family: "Cormorant Garamond", serif;
      font-weight: 500;
      font-style: normal;
      font-size: clamp(1.8rem, 2.2vw, 2.35rem);
      letter-spacing: -0.03em;
      text-transform: capitalize;
      line-height: 0.95;
    }

    .guide-summary {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.72;
    }

    .guide-arrow {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 52px;
      height: 52px;
      padding: 0;
      border-radius: 50%;
      border: 1px solid rgba(23, 20, 17, 0.12);
      background: rgba(255,255,255,0.42);
      color: var(--ink);
      font-size: 1.15rem;
      line-height: 1;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
      transform: translateY(-50%);
    }

    .guide-arrow:hover {
      transform: translateY(-50%) scale(1.08);
      border-color: rgba(209, 130, 51, 0.34);
      background: rgba(255,255,255,0.72);
      box-shadow: 0 14px 28px rgba(17, 14, 11, 0.14);
    }

    .guide-arrow--prev {
      left: 0;
    }

    .guide-arrow--next {
      right: 0;
    }

    .specs {
      display: grid;
      grid-template-columns: 1fr;
      gap: 9px;
      margin: 0;
      text-align: left;
    }

    .spec-item {
      padding-top: 10px;
      border-top: 1px solid rgba(23, 20, 17, 0.08);
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 8px;
      align-items: start;
    }

    .spec-item strong,
    .spec-item span {
      display: block;
    }

    .spec-item strong {
      margin-bottom: 0;
      font-size: 0.64rem;
      line-height: 1.4;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(23, 20, 17, 0.46);
    }

    .spec-item span {
      font-size: 0.86rem;
      line-height: 1.6;
      color: var(--ink);
    }

    .showcase {
      background: var(--bg-strong);
      padding: 84px 0 62px;
      overflow: hidden;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.25fr 0.7fr;
      gap: 36px;
      align-items: center;
    }

    .showcase-copy h2 {
      margin: 12px 0 20px;
      font-family: "Cormorant Garamond", serif;
      font-weight: 500;
      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 0.9;
      letter-spacing: -0.04em;
    }

    .showcase-copy h2 em {
      font-style: italic;
      font-weight: 400;
    }

    .showcase-visual {
      position: relative;
      min-height: 520px;
      display: grid;
      place-items: center;
    }

    .focus-pearl {
      width: min(520px, 100%);
      aspect-ratio: 1;
      border-radius: 44% 56% 54% 46% / 48% 46% 54% 52%;
      background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,0.34), transparent 20%),
        radial-gradient(circle at 76% 54%, rgba(255,255,255,0.12), transparent 16%),
        radial-gradient(circle at 60% 66%, rgba(0,0,0,0.26), transparent 26%),
        linear-gradient(145deg, #a68655 0%, #332213 48%, #8d6f40 78%, #1c130c 100%);
      box-shadow:
        0 34px 55px rgba(36, 24, 14, 0.18),
        inset -12px -14px 26px rgba(0,0,0,0.16);
      position: relative;
    }

    .focus-pearl::after {
      content: "";
      position: absolute;
      left: 14%;
      right: 14%;
      bottom: -22px;
      height: 18px;
      background: radial-gradient(circle, rgba(0,0,0,0.18), transparent 72%);
      filter: blur(10px);
    }

    .scale-line {
      position: absolute;
      bottom: 8px;
      left: 10%;
      right: 10%;
      text-align: center;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scale-line::before {
      content: "";
      display: block;
      height: 1px;
      margin-bottom: 8px;
      background: linear-gradient(90deg, transparent, rgba(209,130,51,0.5) 12%, rgba(170,194,131,0.5) 88%, transparent);
    }

    .showcase-meta {
      display: grid;
      gap: 44px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .showcase-meta div::before {
      content: "";
      display: block;
      width: 58px;
      height: 1px;
      margin-bottom: 10px;
      background: rgba(170, 194, 131, 0.54);
    }

    .showcase-tabs {
      display: grid;
      grid-template-columns: repeat(9, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
      align-items: start;
    }

    .mini-pearl {
      text-align: center;
      font-size: 0.66rem;
      line-height: 1.4;
      color: var(--muted);
    }

    .mini-pearl .dot {
      width: 36px;
      aspect-ratio: 1;
      margin: 0 auto 10px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.32), transparent 18%),
        linear-gradient(145deg, var(--tone-a), var(--tone-b) 60%, var(--tone-c));
      box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    }

    .logo-badge {
      padding: 14px 16px;
      border: 1px solid var(--line);
      min-width: 120px;
      text-align: center;
      background: rgba(255,255,255,0.28);
    }

    .statement {
      position: relative;
      padding: 28px 0 140px;
      overflow: hidden;
    }

    .statement-text {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(7rem, 19vw, 18rem);
      line-height: 0.88;
      letter-spacing: -0.07em;
      color: rgba(178, 184, 190, 0.28);
      white-space: nowrap;
      transform: translateX(-4%);
      user-select: none;
    }

    .contact {
      padding: 24px 0 128px;
    }

    .instagram-section {
      padding: 36px 0 118px;
      border-top: 1px solid rgba(23, 20, 17, 0.08);
    }

    .instagram-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 34px;
    }

    .instagram-header h2 {
      margin: 0 0 14px;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.6rem, 5vw, 4.3rem);
      line-height: 0.96;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .instagram-header p {
      margin: 0 auto 18px;
      max-width: 640px;
      color: var(--muted);
      line-height: 1.85;
    }

    .instagram-link {
      color: var(--ink);
    }

    .instagram-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .instagram-card {
      position: relative;
      overflow: hidden;
      display: block;
      min-height: 420px;
      border-radius: 28px;
      background: rgba(255,255,255,0.22);
      box-shadow: 0 18px 34px rgba(17, 14, 11, 0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    }

    .instagram-card::after {
      content: "Instagram";
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(23, 20, 17, 0.52);
      color: rgba(255, 248, 240, 0.92);
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .instagram-card img,
    .instagram-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease, filter 0.55s ease;
    }

    .instagram-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 42px rgba(17, 14, 11, 0.12);
    }

    .instagram-card:hover img,
    .instagram-card:hover video {
      transform: scale(1.03);
      filter: saturate(1.03) contrast(1.02);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.85fr);
      gap: 68px;
      align-items: center;
      padding-top: 42px;
      border-top: 1px solid rgba(23, 20, 17, 0.08);
    }

    .contact-image {
      min-height: 620px;
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.12)),
        url("../images/contact-home.jpg") center center / cover no-repeat;
      box-shadow: 0 30px 60px rgba(18, 15, 12, 0.12);
    }

    .contact-page .contact-image {
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.12)),
        url("../images/contact-home.jpg") center center / cover no-repeat;
    }

    .contact-image::before {
      content: none;
    }

    .contact-copy h2 {
      margin: 0 0 18px;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      line-height: 0.92;
      font-weight: 500;
      letter-spacing: -0.04em;
      color: rgba(23, 20, 17, 0.72);
    }

    .contact-copy p {
      margin: 0 0 14px;
      color: var(--muted);
      line-height: 1.9;
    }

    .newsletter {
      padding: 56px 0 0;
      text-align: center;
      margin-top: 56px;
      border-top: 1px solid rgba(23, 20, 17, 0.08);
    }

    .newsletter h3 {
      margin: 0 0 34px;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.8rem, 5vw, 4.6rem);
      line-height: 1;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .newsletter h3 em {
      font-style: italic;
      font-weight: 400;
    }

    .newsletter-form {
      max-width: 420px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    .newsletter-form input {
      border: 0;
      border-bottom: 1px solid rgba(23,20,17,0.18);
      background: transparent;
      padding: 10px 2px 14px;
      outline: none;
      font-size: 0.88rem;
      color: var(--ink);
    }

    .newsletter-form input::placeholder {
      color: rgba(111, 103, 92, 0.58);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.68rem;
    }

    .toggle-row {
      display: flex;
      justify-content: center;
      gap: 22px;
      margin-top: 4px;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .toggle-pill {
      padding: 6px 10px;
      border: 1px solid rgba(23,20,17,0.14);
      border-radius: 999px;
    }

    .consent {
      display: flex;
      justify-content: center;
      gap: 10px;
      align-items: center;
      margin-top: 6px;
      font-size: 0.66rem;
      letter-spacing: 0.06em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .consent span {
      width: 15px;
      height: 15px;
      border: 1px solid rgba(23,20,17,0.26);
      border-radius: 50%;
      display: inline-block;
    }

    .submit-row {
      margin-top: 6px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-size: 0.72rem;
    }

    .submit-row .arrow-link {
      margin: 0;
    }

    .site-footer {
      background: var(--footer);
      color: rgba(255,255,255,0.88);
      padding: 56px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr 0.7fr;
      gap: 40px;
      align-items: start;
    }

    .footer-brand strong {
      display: block;
      margin-bottom: 16px;
      font-family: "Cormorant Garamond", serif;
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: 0.08em;
    }

    .footer-brand p,
    .footer-nav a {
      color: rgba(255,255,255,0.72);
      font-size: 0.88rem;
      line-height: 1.9;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .footer-social a {
      width: 30px;
      height: 30px;
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.82);
      transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

    .footer-social a:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.58);
      color: rgba(255,255,255,0.98);
    }

    .footer-social svg {
      width: 14px;
      height: 14px;
      display: block;
    }

    .footer-nav h4 {
      margin: 0 0 14px;
      font-size: 0.74rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.54);
    }

    .footer-nav {
      display: grid;
      gap: 8px;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    [data-parallax] {
      --parallax-shift: 0px;
      transform: translate3d(0, var(--parallax-shift), 0);
      will-change: transform;
    }

    @media (max-width: 1500px) {
      .hero-overlay-shell {
        padding-left: 48px;
        padding-right: 48px;
      }

      .hero-overlay-copy {
        max-width: 1120px;
        margin: 0 auto;
      }

      .hero-title {
        font-size: clamp(3.3rem, 6.2vw, 5.6rem);
        line-height: 0.92;
      }

      .hero-description {
        max-width: 700px;
        margin-top: 16px;
      }

      .hero-actions {
        margin-top: 22px;
      }
    }

    @media (max-width: 1100px) {
      .guide-carousel {
        --guide-columns: 2;
      }

      .guide-carousel-viewport {
        width: 100%;
        padding: 14px 56px 18px;
      }

      .site-header .container {
        grid-template-columns: 1fr auto;
      }

      .nav-group.left {
        display: none;
      }

      .brand {
        order: -1;
        text-align: left;
      }

      .brand-logo {
        margin: 0;
      }

      .showcase-grid,
      .instagram-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .tin-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .guide-grid,
      .showcase-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .guide-card {
        text-align: center;
      }

      .guide-card-visual {
        min-height: 190px;
      }

      .guide-card-copy {
        text-align: center;
      }

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

      .showcase-visual {
        min-height: 420px;
      }

      .statement {
        padding-bottom: 90px;
      }

      .statement-text {
        white-space: normal;
        font-size: clamp(4rem, 14vw, 8rem);
        transform: none;
      }
    }

    @media (max-width: 720px) {
      :root {
        --container: min(100vw - 32px, 1240px);
      }

      .guide-carousel {
        --guide-columns: 1;
        --guide-gap: 18px;
      }

      .guide-carousel-viewport {
        width: 100%;
        padding: 12px 44px 16px;
      }

      .nav-group.right a:not(.nav-icon) {
        display: none;
      }

      .hero-slider,
      .hero-image {
        height: 100vh;
      }

      .hero-overlay-shell {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero-overlay-copy {
        max-width: 100%;
        margin-bottom: 0;
      }

      .intro,
      .media-strip,
      .guide,
      .statement,
      .contact {
        padding-top: 56px;
      }

      .tin-list,
      .media-grid,
      .guide-grid,
      .showcase-tabs,
      .editorial-page-grid {
        grid-template-columns: 1fr;
      }

      .page-copy--editorial {
        padding-right: 0;
      }

      .editorial-media-rail {
        position: static;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 18px;
        padding-top: 0;
      }

      .guide-card {
        padding: 24px;
      }

      .guide-carousel-controls {
        gap: 14px;
      }

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

      .spec-item {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .showcase {
        padding-top: 56px;
      }

      .showcase-visual {
        min-height: 300px;
      }

      .contact-image {
        min-height: 420px;
      }

      .media-card {
        border-radius: 18px;
      }

      .toggle-row {
        flex-wrap: wrap;
      }
    }

body.admin-bar .site-header {
  top: 32px;
}

.site-header--solid {
  position: relative;
  background: #171411;
}

.site-header--solid .container {
  padding: 20px 0;
}

.vellor-page-shell {
  min-height: 50vh;
}

.content-page,
.contact-page {
  padding-top: 92px;
}

.guide-header h1 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08)),
    rgba(244, 232, 210, 0.62);
  border: 1px solid rgba(23, 20, 17, 0.04);
  box-shadow: 0 8px 16px rgba(17, 14, 11, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shop-card:hover {
  z-index: 2;
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(209, 130, 51, 0.24);
  box-shadow: 0 18px 34px rgba(17, 14, 11, 0.12);
}

.shop-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  margin-bottom: 18px;
}

.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.shop-card__copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
}

.shop-card__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
}

.shop-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.shop-card__title a {
  transition: color 0.25s ease;
}

.shop-card:hover .shop-card__title a {
  color: rgba(209, 130, 51, 0.96);
}

.shop-card__price,
.product-shell__price {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-card__excerpt,
.product-shell__excerpt {
  color: var(--muted);
  line-height: 1.8;
}

.shop-card__excerpt {
  flex: 1 1 auto;
}

.shop-card .add_to_cart_button,
.shop-card .product_type_simple,
.shop-card .product_type_variable,
.shop-card .added_to_cart,
.shop-card .cta-button--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(23, 20, 17, 0.12);
  background: rgba(255,255,255,0.42);
  color: var(--ink);
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.shop-card__actions .cta-button--dark,
.shop-card__actions .add_to_cart_button,
.shop-card__actions .product_type_simple,
.shop-card__actions .product_type_variable,
.shop-card__actions .added_to_cart {
  background: rgba(255,255,255,0.42) !important;
  color: var(--ink) !important;
  border-color: rgba(23, 20, 17, 0.12) !important;
  box-shadow: none !important;
  padding: 18px 22px !important;
}

.shop-card .add_to_cart_button:hover,
.shop-card .product_type_simple:hover,
.shop-card .product_type_variable:hover,
.shop-card .added_to_cart:hover,
.shop-card .cta-button--dark:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(209, 130, 51, 0.34);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 14px 28px rgba(17, 14, 11, 0.14);
  color: var(--ink);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.product-shell__gallery img,
.product-shell__gallery .woocommerce-placeholder {
  width: 100%;
  height: auto;
  border-radius: 28px;
  background: rgba(244, 232, 210, 0.62);
}

.product-shell__summary {
  display: grid;
  gap: 18px;
}

.product-shell__details {
  display: grid;
  gap: 16px;
}

.product-shell__panel {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(23, 20, 17, 0.08);
}

.product-shell__summary h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.product-shell .quantity .qty {
  min-height: 46px;
  border: 1px solid rgba(23, 20, 17, 0.14);
  background: transparent;
  padding: 0 14px;
}

.product-shell form.cart {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.product-shell .single_add_to_cart_button.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 0 26px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(209, 130, 51, 0.42);
  background: linear-gradient(180deg, rgba(244, 232, 210, 0.18), rgba(209, 130, 51, 0.22)), rgba(26, 19, 11, 0.28);
  color: #f6ebcf;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.editorial-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 64px;
  align-items: start;
}

.page-copy--editorial {
  max-width: none;
  margin: 0;
  padding-right: 16px;
}

.page-copy--editorial .copy {
  max-width: 62ch;
}

.page-copy--editorial .copy h2 {
  margin: 34px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-copy--editorial .copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.9;
}

.editorial-media-rail {
  display: grid;
  gap: 40px;
  position: sticky;
  top: 28px;
  padding-top: 152px;
}

.editorial-media-card {
  aspect-ratio: 9 / 16;
  min-height: 0;
}

.page-copy--legal {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.page-copy--legal,
.page-copy--legal .eyebrow,
.page-copy--legal h1,
.page-copy--legal .copy,
.page-copy--legal .copy p,
.page-copy--legal .copy h2,
.page-copy--legal .copy h3,
.page-copy--legal .copy li,
.page-copy--legal * {
  text-align: left !important;
}

.page-copy h1 {
  margin: 12px 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.page-copy--legal h1 {
  margin-bottom: 28px;
}

.page-copy--legal .copy {
  max-width: none;
  font-size: 1rem;
  line-height: 1.9;
}

.page-copy--legal .copy h2 {
  margin: 34px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.page-copy--legal .copy p {
  margin: 0 0 16px;
}

.page-copy--legal .copy ul,
.page-copy--legal .copy ol {
  margin: 0 0 18px 1.2rem;
  padding: 0;
}

body.privacy-policy .page-copy,
body.page-id-30 .page-copy,
body.privacy-policy .page-copy .copy,
body.page-id-30 .page-copy .copy,
body.privacy-policy .page-copy p,
body.page-id-30 .page-copy p,
body.privacy-policy .page-copy h1,
body.page-id-30 .page-copy h1,
body.privacy-policy .page-copy h2,
body.page-id-30 .page-copy h2,
body.privacy-policy .page-copy h3,
body.page-id-30 .page-copy h3,
body.privacy-policy .page-copy li,
body.page-id-30 .page-copy li,
body.privacy-policy .page-copy .eyebrow,
body.page-id-30 .page-copy .eyebrow {
  text-align: left !important;
}

.contact-page .contact-copy h1 {
  color: var(--ink);
}

.contact-page .contact-copy .copy,
.page-copy .copy {
  max-width: 60ch;
}

.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-checkout .wp-block-woocommerce-checkout {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(17, 14, 11, 0.04);
}

.woocommerce-cart .wc-block-cart,
.woocommerce-checkout .wc-block-checkout {
  background: transparent;
}

.woocommerce-cart .wc-block-components-product-name,
.woocommerce-cart .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-item__value,
.woocommerce-cart .wc-block-cart-item__prices,
.woocommerce-checkout .wc-block-components-title {
  color: var(--ink);
}

.woocommerce-cart .wc-block-components-button,
.woocommerce-checkout .wc-block-components-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 999px;
  border: 1px solid rgba(209, 130, 51, 0.42);
  background:
    linear-gradient(180deg, rgba(244, 232, 210, 0.16), rgba(209, 130, 51, 0.18)),
    rgba(23, 20, 17, 0.94);
  color: #f3e9d0;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woocommerce .quantity .qty,
.woocommerce-cart .wc-block-components-quantity-selector input {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(23, 20, 17, 0.14);
  background: rgba(255,255,255,0.42);
}

.woocommerce-pagination {
  margin-top: 32px;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: 0;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
  background: transparent;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .shop-grid,
  .product-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-shell__summary {
    grid-column: span 2;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .shop-grid,
  .product-shell {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .wp-block-woocommerce-cart,
  .woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 18px;
  }

  .product-shell__summary {
    grid-column: auto;
  }
}
