/* ============================================================
   THUS ESSENTIALS — layout.css  (Components & page sections)
   ============================================================ */

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out),
              padding 0.4s var(--ease-out);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2rem var(--gutter);
  transition: padding 0.4s var(--ease-out);
}

/* When scrolled: reveal ivory background */
.site-header.stuck .header-inner {
  padding: 1.25rem var(--gutter);
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-slot {
  display: flex;
  align-items: center;
}

.header-slot--left  { justify-content: flex-start; gap: 1.5rem; }
.header-slot--center { justify-content: center; }
.header-slot--right { justify-content: flex-end; gap: 1.5rem; }

.logo-link { display: block; }

.logo-img {
  height: 22px;
  width: auto;
  /* Logo is dark SVG — invert on dark hero, revert on ivory bg */
  filter: invert(1);
  transition: filter 0.5s var(--ease-out);
}

.site-header.stuck .logo-img { filter: invert(0); }

.hdr-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.4s var(--ease-out);
}

.site-header.stuck .hdr-btn { color: var(--ink); }

.hdr-btn svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* ─── DESKTOP MICRO-NAVIGATION ─── */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hdr-nav-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.site-header.stuck .hdr-nav-link {
  color: var(--ink-muted);
}

.hdr-nav-link:hover,
.hdr-nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.site-header.stuck .hdr-nav-link:hover,
.site-header.stuck .hdr-nav-link.active {
  color: #8b7355;
  background: rgba(139, 115, 85, 0.08);
}

/* Responsive Header */
@media (max-width: 900px) {
  .header-nav {
    display: none !important;
  }
  .header-slot--left {
    gap: 0.75rem;
  }
  .header-slot--right {
    gap: 0.75rem;
  }
  .hdr-btn span.hide-mobile {
    display: none;
  }
}

/* ─── MENU OVERLAY — Luxury Animated Cinematic Drawer ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, 0.62);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: flex-end;
}

.menu-overlay,
.menu-overlay *,
.bag-drawer,
.bag-drawer * {
  cursor: auto;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay__inner {
  position: relative;
  width: 85%;
  max-width: 440px;
  height: 100%;
  background: linear-gradient(165deg, #faf8f4 0%, #f4f1eb 100%);
  box-shadow: -25px 0 80px rgba(0, 0, 0, 0.22),
              -1px 0 0 rgba(139, 115, 85, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  will-change: transform;
}

.menu-overlay.open .menu-overlay__inner {
  transform: translateX(0);
}

/* Stagger-reveal children when open */
.menu-overlay__inner > * {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(8px);
}

.menu-overlay.open .menu-overlay__inner > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.12s; }
.menu-overlay.open .menu-overlay__inner > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.menu-overlay.open .menu-overlay__inner > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.26s; }
.menu-overlay.open .menu-overlay__inner > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.31s; }
.menu-overlay.open .menu-overlay__inner > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.36s; }
.menu-overlay.open .menu-overlay__inner > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.4s; }
.menu-overlay.open .menu-overlay__inner > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.44s; }

/* ── Drawer Top Bar ── */
.menu-overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem 1.2rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  position: sticky;
  top: 0;
  background: inherit;
  z-index: 10;
  flex-shrink: 0;
}

.menu-overlay__logo {
  height: 18px;
  width: auto;
  opacity: 0.85;
}

.menu-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.menu-close-btn:hover {
  background: rgba(139, 115, 85, 0.1);
  border-color: rgba(139, 115, 85, 0.25);
  transform: scale(0.96);
}

.menu-close-btn svg {
  width: 13px;
  height: 13px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-close-btn:hover svg {
  transform: rotate(90deg);
}

/* ── Search Row ── */
.menu-drawer-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.1rem;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  margin: 0 2rem 0.5rem;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}

.menu-drawer-search:focus-within {
  border-color: #8b7355;
  box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
}

.menu-drawer-search svg {
  width: 14px;
  height: 14px;
  color: var(--ink-muted);
  flex-shrink: 0;
}

.menu-drawer-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink);
}

.menu-drawer-search input::placeholder {
  color: var(--ink-muted);
  opacity: 0.7;
}

/* ── Notice chip ── */
.menu-drawer-notice {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: rgba(139, 115, 85, 0.07);
  border: 1px dashed rgba(139, 115, 85, 0.28);
  border-radius: 10px;
  margin: 0 2rem 0.2rem;
  flex-shrink: 0;
}

.menu-drawer-notice svg {
  width: 14px;
  height: 14px;
  color: #8b7355;
  flex-shrink: 0;
}

.menu-drawer-notice p {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}

.menu-drawer-notice strong {
  font-weight: 700;
  color: #8b7355;
}

/* ── Body (Scrollable) ── */
.menu-overlay__body {
  flex: 1;
  padding: 1.2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* ── Section Groups ── */
.menu-drawer-section {
  margin-bottom: 0.8rem;
  border-radius: 14px;
  overflow: hidden;
}

.menu-drawer-heading {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 0.4rem;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-drawer-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 115, 85, 0.2) 0%, transparent 100%);
}

.menu-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  list-style: none;
  background: rgba(139, 115, 85, 0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139, 115, 85, 0.08);
}

/* ── Individual Link ── */
.menu-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 1rem;
  background: #faf8f4;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease,
              padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(139, 115, 85, 0.07);
}

.menu-drawer-link:last-child {
  border-bottom: none;
}

/* Animated fill from left */
.menu-drawer-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #8b7355;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-drawer-link:hover::before,
.menu-drawer-link.active::before {
  transform: scaleY(1);
}

.menu-drawer-link:hover,
.menu-drawer-link.active {
  background: #ffffff;
  color: #8b7355;
  padding-left: 1.3rem;
}

.menu-drawer-link-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
}

/* Icon circle beside links */
.menu-drawer-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(139, 115, 85, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.menu-drawer-link:hover .menu-drawer-icon,
.menu-drawer-link.active .menu-drawer-icon {
  background: rgba(139, 115, 85, 0.15);
}

.menu-drawer-icon svg {
  width: 13px;
  height: 13px;
  color: #8b7355;
}

/* Pills */
.menu-drawer-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  background: rgba(139, 115, 85, 0.1);
  color: #8b7355;
  flex-shrink: 0;
}

.menu-drawer-pill.new {
  background: #111111;
  color: #ffffff;
}

/* Chevron */
.menu-drawer-chevron {
  width: 11px;
  height: 11px;
  color: var(--ink-muted);
  opacity: 0.45;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              color 0.3s ease;
}

.menu-drawer-link:hover .menu-drawer-chevron,
.menu-drawer-link.active .menu-drawer-chevron {
  transform: translateX(4px);
  opacity: 1;
  color: #8b7355;
}

/* ── Footer Bar ── */
.menu-overlay__footer {
  padding: 1.2rem 2rem 2rem;
  border-top: 1px solid rgba(139, 115, 85, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
  background: rgba(247, 245, 240, 0.6);
}

.menu-drawer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.menu-drawer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.18);
  animation: menuStatusPulse 2.5s ease-in-out infinite;
}

@keyframes menuStatusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.18); }
  50%       { box-shadow: 0 0 0 6px rgba(52, 199, 89, 0.06); }
}

.menu-drawer-socials {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.menu-drawer-social-link {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s ease;
  padding: 0.3rem 0.85rem 0.3rem 0;
}

.menu-drawer-social-link:not(:last-child)::after {
  content: '·';
  margin-left: 0.85rem;
  opacity: 0.4;
}

.menu-drawer-social-link:hover {
  color: #8b7355;
}

/* Active page indicator */
.menu-drawer-link[aria-current="page"] {
  background: rgba(139, 115, 85, 0.06) !important;
  color: #8b7355 !important;
  font-weight: 600 !important;
  padding-left: 1.3rem;
}

.menu-drawer-link[aria-current="page"]::before {
  transform: scaleY(1);
}

/* ── Mobile Responsive ── */
@media (max-width: 480px) {
  .menu-overlay__top {
    padding: 1.25rem 1.35rem 1rem;
  }
  .menu-overlay__body {
    padding: 1rem 1.35rem 0.8rem;
  }
  .menu-drawer-search {
    margin: 0 1.35rem 0.5rem;
  }
  .menu-drawer-notice {
    margin: 0 1.35rem 0.2rem;
  }
  .menu-overlay__footer {
    padding: 1rem 1.35rem 1.6rem;
  }
  .menu-drawer-link {
    font-size: 0.78rem;
    padding: 0.65rem 0.9rem;
  }
  .menu-drawer-link:hover,
  .menu-drawer-link.active,
  .menu-drawer-link[aria-current="page"] {
    padding-left: 1.2rem;
  }
  .menu-drawer-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }
  .menu-drawer-icon svg {
    width: 11px;
    height: 11px;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

@media (max-width: 768px) {
  .hero {
    min-height: -webkit-fill-available;
  }
  .hero__video {
    object-position: center center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  color: #fff;
}

.hero__editorial {
  max-width: 560px;
}

.hero__editorial .kicker {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

/* Mobile hero */
.hero__mobile {
  position: absolute;
  inset: 0;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--gutter) 4rem;
  text-align: center;
  color: #fff;
  gap: 2rem;
}

.hero__brand-mobile {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: scroll-bounce 2.4s ease-in-out infinite;
}

.hero__scroll-indicator svg { width: 22px; height: 22px; }

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

/* ─── PHILOSOPHY & MANIFESTO ─── */
.philosophy {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
}

/* Ambient watermark background marquee */
.philosophy__ambient {
  position: absolute;
  top: 6%;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  white-space: nowrap;
  user-select: none;
}

.philosophy__watermark-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: ph-watermark-scroll 45s linear infinite;
  will-change: transform;
}

.philosophy__watermark-track .ph-star {
  font-size: 0.45em;
  opacity: 0.5;
}

@keyframes ph-watermark-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.philosophy .container {
  position: relative;
  z-index: 1;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}

/* ─── Left Column: Content ─── */
.philosophy__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.1rem;
  background: rgba(17, 17, 17, 0.035);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.philosophy__badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.4);
  animation: ph-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ph-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(17, 17, 17, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 17, 17, 0); }
}

.philosophy__badge-text {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.philosophy__headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.philosophy__headline em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #111111 20%, #4a453f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.philosophy__amp {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  opacity: 0.55;
  margin: 0 0.15em;
  -webkit-text-fill-color: initial;
}

.philosophy__lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.4vw, 1.38rem);
  font-weight: 300;
  line-height: 1.72;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 2.4rem;
}

/* 3 Core Pillars */
.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.8rem;
}

.ph-pillar {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 14px;
  padding: 1.25rem 1.1rem;
  transition: transform 0.45s var(--ease-expo),
              box-shadow 0.45s var(--ease-expo),
              border-color 0.45s var(--ease-expo),
              background 0.45s var(--ease-expo);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: default;
}

.ph-pillar:hover,
.ph-pillar:focus-visible {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.08);
}

.ph-pillar__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.35), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.ph-pillar:hover .ph-pillar__glow {
  opacity: 1;
  transform: scaleX(1);
}

.ph-pillar__header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.ph-pillar__num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-muted);
  opacity: 0.7;
}

.ph-pillar__title {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.ph-pillar__desc {
  font-family: var(--sans);
  font-size: 0.73rem;
  line-height: 1.55;
  color: var(--ink-muted);
  font-weight: 300;
}

/* Action & Metric Row */
.philosophy__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.philosophy__metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.philosophy__metric-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.philosophy__metric-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── Right Column: Visual Stage ─── */
.philosophy__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0.5rem;
  perspective: 1200px;
}

.philosophy__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  /* Organic couture arch */
  border-radius: clamp(3.5rem, 10vw, 11rem) 1.5rem clamp(3.5rem, 10vw, 11rem) 1.5rem;
  overflow: hidden;
  box-shadow: 0 28px 56px -16px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(17, 17, 17, 0.05);
  background: #ede9e1;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-expo), box-shadow 0.6s var(--ease-expo);
}

.philosophy__visual:hover .philosophy__img-wrapper {
  box-shadow: 0 36px 70px -18px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(17, 17, 17, 0.08);
}

.philosophy__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.philosophy__img-wrapper:hover .philosophy__main-img {
  transform: scale(1.05);
}

/* Light shimmer sweep on hover */
.philosophy__img-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy__img-wrapper:hover .philosophy__img-shimmer {
  left: 160%;
}

/* Image corner tag */
.philosophy__img-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.philosophy__img-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #15803d;
}

/* Rotating Seal Badge */
.philosophy__seal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 110px;
  height: 110px;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.philosophy__seal-svg {
  width: 100%;
  height: 100%;
  animation: ph-spin 22s linear infinite;
  transform-origin: center;
}

.philosophy__seal-text {
  font-family: var(--sans);
  font-size: 8.8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  fill: var(--ink);
  text-transform: uppercase;
}

.philosophy__seal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.philosophy__seal-core .ph-star-icon {
  font-size: 0.95rem;
  line-height: 1;
}

@keyframes ph-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Secondary Floating Card */
.philosophy__floating-card {
  position: absolute;
  bottom: 0px;
  left: -20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12),
              0 0 0 1px rgba(17, 17, 17, 0.04);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  animation: ph-float 6s ease-in-out infinite;
  max-width: 250px;
}

@keyframes ph-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0.8deg);
  }
}

.ph-card__thumb {
  width: 46px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #eae5dc;
}

.ph-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ph-card__tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ph-card__name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.ph-card__sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* Ambient glow aura */
.philosophy__glow-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 192, 168, 0.25) 0%, rgba(247, 245, 240, 0) 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* ─── Philosophy Responsive ─── */
@media (max-width: 1100px) {
  .philosophy__pillars {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .philosophy__floating-card {
    left: 0;
    bottom: -15px;
  }
}

@media (max-width: 900px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .philosophy__visual {
    order: -1; /* Image appears prominently or right above/below seamlessly */
    padding: 1rem 0;
  }

  .philosophy__img-wrapper {
    max-width: 360px;
    border-radius: clamp(2.5rem, 8vw, 6rem) 1.2rem clamp(2.5rem, 8vw, 6rem) 1.2rem;
  }

  .philosophy__seal {
    width: 90px;
    height: 90px;
    top: -8px;
    right: 0px;
  }

  .philosophy__floating-card {
    left: 10px;
    bottom: -12px;
  }

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

@media (max-width: 480px) {
  .philosophy__headline {
    font-size: 2.35rem;
  }
  .philosophy__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .philosophy__floating-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
    animation: none;
  }
}

/* ─── BRAND STORY ─── */
.brand-story { background: var(--surface); }

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  position: relative;
}

@media (max-width: 900px) {
  .brand-story__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.brand-story__img-primary {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
}

.brand-story__img-primary img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Secondary image overlaps primary, pushed down-left on desktop */
.brand-story__img-secondary {
  position: absolute;
  top: 30%;
  left: calc(50% - 18vw);
  width: 36vw;
  max-width: 540px;
  z-index: 3;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

.brand-story__img-secondary img {
  width: 100%; height: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}

@media (max-width: 900px) {
  .brand-story__img-secondary {
    position: relative;
    top: 0; left: 0;
    width: 70%;
    margin: -3rem 0 0 auto;
    z-index: 3;
  }
}

.brand-story__text {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 10rem) var(--gutter) clamp(4rem, 8vw, 10rem) 6vw;
  position: relative;
  z-index: 4;
}

@media (max-width: 900px) {
  .brand-story__text {
    grid-column: 1;
    padding: 3rem var(--gutter);
  }
}

.brand-story__headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.brand-story__text .body-copy { margin-bottom: 2.5rem; }

/* ─── NEW ARRIVALS CAROUSEL ─── */
.new-arrivals {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  padding-bottom: clamp(6rem, 12vw, 12rem);
}

.new-arrivals__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.new-arrivals__header-text {
  max-width: 500px;
}

.new-arrivals__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.carousel-hint {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.carousel-hint__text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-muted);
}

.carousel-hint__arrow {
  width: 60px;
  height: 14px;
  color: var(--ink);
  overflow: hidden;
}

.carousel-hint__arrow svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.2;
}

.hint-line {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: slideArrow 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.hint-head {
  opacity: 0;
  transform: translateX(-10px);
  animation: slideHead 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes slideArrow {
  0% { stroke-dashoffset: 60; transform: translateX(0); }
  40% { stroke-dashoffset: 0; transform: translateX(0); }
  60% { stroke-dashoffset: 0; transform: translateX(0); }
  100% { stroke-dashoffset: 0; transform: translateX(60px); }
}

@keyframes slideHead {
  0% { opacity: 0; transform: translateX(-10px); }
  35% { opacity: 1; transform: translateX(0); }
  60% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(60px); }
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 4vw;
  padding: 0 var(--gutter);
  transition: transform 0.8s var(--ease-expo);
  user-select: none;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

@media (max-width: 900px) {
  .carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1.5rem;
    transition: none;
    cursor: auto;
  }
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
}

.carousel-slide {
  flex-shrink: 0;
  width: clamp(280px, 60vw, 65vw);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s var(--ease-out);
}

@media (max-width: 900px) {
  .carousel-slide {
    width: 85vw;
    scroll-snap-align: center;
  }
}

.carousel-slide:not(.is-active) {
  opacity: 0.35;
}

.carousel-slide__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.carousel-slide__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.carousel-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-slide.is-active .carousel-slide__inner:hover .carousel-slide__img {
  transform: scale(1.05);
}

.carousel-slide__action-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 40%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-slide.is-active .carousel-slide__inner:hover .carousel-slide__action-overlay {
  opacity: 1;
  pointer-events: auto;
}

.btn-add-cart {
  background: var(--surface);
  color: var(--ink);
  border: none;
  border-radius: 40px;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s, color 0.3s;
}

.carousel-slide.is-active .carousel-slide__inner:hover .btn-add-cart {
  transform: translateY(0);
}

.btn-add-cart:hover {
  background: var(--ink);
  color: var(--surface);
}

.btn-add-cart svg {
  width: 16px;
  height: 16px;
}

.carousel-slide__info {
  display: flex;
  flex-direction: column;
  position: relative;
  /* Overlap slightly with the image for an editorial feel */
  margin-top: -1.5rem;
  padding: 0 1rem;
  z-index: 2;
}

.carousel-slide__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s;
}

.carousel-slide.is-active .carousel-slide__meta {
  transform: translateY(0);
  opacity: 1;
}

.carousel-slide__look {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}

.carousel-slide__line {
  height: 1px;
  flex-grow: 1;
  background-color: var(--border);
  max-width: 40px;
}

.carousel-slide__name {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: left bottom;
}

.carousel-slide.is-active .carousel-slide__inner:hover .carousel-slide__name {
  transform: translateY(-4px);
}

.carousel-slide__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  margin-top: 0.5rem;
}

.carousel-slide.is-active .carousel-slide__inner:hover .carousel-slide__details {
  opacity: 1;
  transform: translateY(-4px);
}

.carousel-slide__price {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 900px) {
  .carousel-controls {
    display: none;
  }
}

.carousel-counter {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-sep {
  color: var(--border);
}

.carousel-nav {
  display: flex;
  gap: 1rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.carousel-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ─── FLUID COLLECTIONS GALLERY ─── */
.collections-gallery {
  background: var(--bg);
  padding-bottom: 0; /* Removing bottom padding to connect with the footer/next section if needed, or keep it */
}

.collections-gallery__header {
  margin-bottom: 4rem;
}

.collections-gallery__heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
}

.collections-gallery__heading em {
  font-style: italic;
  font-weight: 300;
  padding-left: clamp(2rem, 8vw, 6rem);
}

.collections-gallery__wrapper {
  display: flex;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  gap: 0; /* Seamless flex panels */
}

.collection-panel {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  cursor: none;
  transition: flex 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-panel:first-child {
  border-left: none;
}

.collection-panel__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  filter: grayscale(20%) brightness(0.8);
}

.collection-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.6) 100%
  );
  opacity: 0.7;
  transition: opacity 1.2s ease;
}

.collection-panel__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  opacity: 0; /* Hidden by default */
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.collection-panel__top {
  display: flex;
  justify-content: space-between;
}

.collection-panel__num {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.collection-panel__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.collection-panel__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  font-weight: 300;
  font-style: italic;
  white-space: nowrap;
}

.collection-panel__cta {
  position: relative;
  z-index: 3;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 6px;
  width: fit-content;
}

.collection-panel__cta::after {
  content: none !important;
  display: none !important;
  pointer-events: none !important;
}

/* Hover States */
.collections-gallery__wrapper:hover .collection-panel:hover {
  flex: 4;
}

.collections-gallery__wrapper.has-expanded .collection-panel.is-expanded {
  flex: 4;
}

.collection-panel:hover .collection-panel__img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.collection-panel.is-expanded .collection-panel__img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.collection-panel:hover .collection-panel__overlay {
  opacity: 1;
}

.collection-panel.is-expanded .collection-panel__overlay {
  opacity: 1;
}

.collection-panel:hover .collection-panel__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s; /* Reveal after expansion starts */
}

.collection-panel.is-expanded .collection-panel__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@media (max-width: 900px) {
  .collections-gallery__wrapper {
    flex-direction: column;
    height: 120vh;
  }
  
  .collection-panel {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .collection-panel:first-child {
    border-top: none;
  }

  /* On mobile, they are always semi-expanded or expand on tap */
  .collections-gallery__wrapper:hover .collection-panel:hover {
    flex: 3;
  }

  .collections-gallery__wrapper.has-expanded .collection-panel.is-expanded {
    flex: 3;
  }

  .collection-panel__content {
    opacity: 1; /* Always show content on mobile to avoid hidden tap issues */
    transform: translateY(0);
    padding: 1.5rem;
  }
  
  .collection-panel__title {
    white-space: normal;
  }
}

/* ─── JOURNAL ─── */
.journal { background: var(--bg); }

.journal__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4vw;
  align-items: start;
}

@media (max-width: 900px) {
  .journal__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Lead article */
.journal-lead { overflow: hidden; }
.journal-lead a { display: block; }

.journal-lead__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.journal-lead__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}
.journal-lead:hover .journal-lead__img img { transform: scale(1.04); }

.journal-lead__info {
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.journal-cat {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.journal-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

/* Secondary stack */
.journal-secondary {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.journal-small a { display: block; }

.journal-small__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.journal-small__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}
.journal-small:hover .journal-small__img img { transform: scale(1.04); }

.journal-small__info {
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.journal-title-small {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.1;
}

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--surface); }

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__prompt {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.newsletter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  gap: 1rem;
}

.newsletter__field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
}

.newsletter__field input::placeholder { color: var(--border); }

.newsletter__field button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.newsletter__field button:hover { opacity: 0.6; }
.newsletter__field button .arrow-icon { width: 16px; height: 16px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg);
  padding: clamp(5rem, 10vw, 10rem) 0 3rem;
  border-top: 1px solid var(--border);
}

.site-footer__wordmark { margin-bottom: 1rem; }

.footer-logo {
  height: 20px;
  width: auto;
  opacity: 0.5;
}

.site-footer__tagline {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-muted);
  margin-bottom: 4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 860px;
  margin-bottom: 4rem;
}

.footer-nav__label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.4rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 400;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: #8b7355;
  transform: translateX(3px);
}

.footer-social ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 400;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  color: #8b7355;
  transform: translateX(3px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Responsive Footer on Tablet & Mobile */
@media (max-width: 700px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.8rem;
  }

  .footer-social {
    grid-column: span 2;
    padding-top: 0.5rem;
  }

  .footer-social ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(17, 17, 17, 0.04);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.25s var(--ease-out);
  }

  .footer-social a:hover {
    background: var(--ink);
    color: #ffffff;
    border-color: var(--ink);
    transform: translateY(-2px);
  }
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 600px) {
  .site-footer__bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   THUS EXPERIENCE — Cinematic Feature Carousel
   ═══════════════════════════════════════════════ */

.thus-xp {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

/* ── Ambient Marquee ── */
.thus-xp__marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.thus-xp__marquee {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-muted);
  animation: thus-marquee 28s linear infinite;
  will-change: transform;
}

@keyframes thus-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Header ── */
.thus-xp__header {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thus-xp__kicker {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
              transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.thus-xp__header.in-view .thus-xp__kicker { opacity: 1; transform: none; }

.thus-xp__headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.1s,
              transform 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.thus-xp__header.in-view .thus-xp__headline { opacity: 1; transform: none; }

.thus-xp__headline em {
  font-style: italic;
  font-weight: 300;
}

/* ── Carousel wrapper ── */
.thus-xp__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Height is driven by the slides */
}

/* ── Individual Slide ── */
.thus-xp__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: 55vh;

  /* Default: clipped off to the right */
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: clip-path;
}

/* Active slide: fully visible */
.thus-xp__slide.is-active {
  position: relative;
  clip-path: inset(0 0 0 0%);
}

/* Exiting slide: clips out to the left */
.thus-xp__slide.is-exiting {
  position: absolute;
  clip-path: inset(0 100% 0 0);
}

/* Slide background gradient accent */
.thus-xp__slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247,245,240,0) 0%,
    rgba(200,190,175,0.12) 100%
  );
  transition: opacity 0.6s ease;
}

.thus-xp__slide[data-slide="0"] .thus-xp__slide-bg { background: linear-gradient(135deg, rgba(247,245,240,0) 0%, rgba(180,200,180,0.1) 100%); }
.thus-xp__slide[data-slide="1"] .thus-xp__slide-bg { background: linear-gradient(135deg, rgba(247,245,240,0) 0%, rgba(180,170,210,0.1) 100%); }
.thus-xp__slide[data-slide="2"] .thus-xp__slide-bg { background: linear-gradient(135deg, rgba(247,245,240,0) 0%, rgba(210,185,160,0.1) 100%); }
.thus-xp__slide[data-slide="3"] .thus-xp__slide-bg { background: linear-gradient(135deg, rgba(247,245,240,0) 0%, rgba(160,185,210,0.12) 100%); }

/* Giant ghost number */
.thus-xp__slide-num {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 28rem);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.thus-xp__slide.is-active .thus-xp__slide-num {
  transform: translateY(-52%);
}

/* Slide inner layout */
.thus-xp__slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* ── Icon ── */
.thus-xp__icon-wrap {
  width: clamp(90px, 14vw, 160px);
  height: clamp(90px, 14vw, 160px);
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
  /* Entrance animation */
  opacity: 0;
  transform: scale(0.8) rotate(-8deg);
  transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s,
              transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}

.thus-xp__slide.is-active .thus-xp__icon-wrap {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.thus-xp__icon {
  width: 48%;
  height: 48%;
  color: var(--ink);
  overflow: visible;
}

/* ── Text ── */
.thus-xp__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  /* Entrance animation */
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.25s,
              transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.25s;
}

.thus-xp__slide.is-active .thus-xp__text {
  opacity: 1;
  transform: translateX(0);
}

.thus-xp__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.thus-xp__desc {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 44ch;
}

.thus-xp__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  width: fit-content;
  transition: gap 0.35s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
}

.thus-xp__link:hover { gap: 1rem; opacity: 0.6; }
.thus-xp__link svg { width: 14px; height: 14px; }

/* ── Controls bar ── */
.thus-xp__controls {
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Tab row */
.thus-xp__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.thus-xp__tab {
  flex: 1;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.75rem 0.5rem;
  text-align: center;
  position: relative;
  transition: color 0.35s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.thus-xp__tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.thus-xp__tab.is-active {
  color: var(--ink);
}
.thus-xp__tab.is-active::after {
  transform: scaleX(1);
}

/* Progress bar */
.thus-xp__progress {
  height: 2px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.thus-xp__progress-fill {
  height: 100%;
  background: var(--ink);
  border-radius: 99px;
  width: 0%;
  transition: width 0.12s linear;
}

/* Arrow row */
.thus-xp__arrows {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.thus-xp__arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  cursor: pointer;
  background: none;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease,
              transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.thus-xp__arrow svg { width: 18px; height: 18px; }

.thus-xp__arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.08);
}

.thus-xp__arrow:disabled { opacity: 0.25; pointer-events: none; }

.thus-xp__counter {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
  display: flex; align-items: center; gap: 0.3rem;
  margin-left: auto;
}

.thus-xp__sep { color: var(--border); }

/* ── Finale Quote ── */
.thus-xp__finale {
  background: #0d0d0d;
  padding: clamp(5rem, 12vw, 10rem) var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.thus-xp__finale-quote {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3em;
}

.thus-xp__finale-text {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
}

.thus-xp__finale-text em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}

/* ── Animated SVG Icons ── */

/* Lock */
.xp-lock-dot {
  transform-origin: 24px 30px;
  animation: xp-lock-click 3.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
@keyframes xp-lock-click {
  0%, 70%, 100% { transform: translateY(0); }
  83%           { transform: translateY(-5px); }
  90%           { transform: translateY(-3px); }
}

.xp-pulse {
  opacity: 0;
  transform-origin: center;
  animation: xp-pulse-ring 3.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.xp-pulse-2 { animation-delay: 1.75s; }
@keyframes xp-pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Box */
.xp-box, .xp-box-lid, .xp-box-edge {
  animation: xp-float 3.5s ease-in-out infinite;
}
@keyframes xp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.xp-wind { opacity: 0; animation: xp-wind-blow 2.2s linear infinite; }
.xp-wind-2 { animation-delay: 1.1s; }
@keyframes xp-wind-blow {
  0%   { transform: translateX(14px); opacity: 0; }
  30%  { opacity: 0.6; }
  70%  { opacity: 0.6; }
  100% { transform: translateX(-20px); opacity: 0; }
}

/* Return arrow */
.xp-return-arrow, .xp-return-head {
  transform-origin: center;
  animation: xp-spin 5.5s linear infinite;
}
@keyframes xp-spin { 100% { transform: rotate(-360deg); } }

/* Pin */
.xp-pin, .xp-pin-hole {
  transform-origin: 24px 46px;
  animation: xp-bounce 2.8s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
@keyframes xp-bounce {
  0%, 100% { transform: translateY(0); }
  45%       { transform: translateY(-10px); }
  60%       { transform: translateY(-6px); }
}

.xp-radar {
  opacity: 0;
  transform-origin: 24px 20px;
  animation: xp-radar-ping 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.xp-radar-2 { animation-delay: 1.5s; }
@keyframes xp-radar-ping {
  0%   { transform: scale(0); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .thus-xp__slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .thus-xp__icon-wrap {
    margin: 0 auto;
    width: 100px;
    height: 100px;
  }

  .thus-xp__slide-num {
    font-size: clamp(6rem, 35vw, 10rem);
    right: 1rem;
    opacity: 0.5;
  }

  .thus-xp__desc { max-width: none; }

  .thus-xp__link { margin: 0 auto; }

  .thus-xp__tabs {
    display: none; /* Hidden on mobile, arrows suffice */
  }

  .thus-xp__arrows { justify-content: center; }

  .thus-xp__counter { margin: 0; }
}



.motion-journey {
  position: relative;
  width: 100%;
  background: var(--bg);
  height: 400vh;
}

.mj-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* GPU composite layer for the whole sticky panel */
  will-change: transform;
  transform: translateZ(0);
}

/* ── Luxury Typography Marquee ── */
.mj-marquee-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
}

.mj-marquee {
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 25rem);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.045);
  line-height: 1;
  letter-spacing: -0.02em;
  will-change: transform;
  transform: translateX(-10%);
}

/* ── Section Header ── */
.mj-header {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter);
  margin-bottom: 4rem;
  max-width: var(--container);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* Clip context for text reveal animation */
  overflow: hidden;
}

.mj-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  /* Text mask reveal animation */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}

.mj-header.in-view .mj-headline {
  clip-path: inset(0 0% 0 0);
}

/* ── Horizontal Track ── */
.mj-track-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 50vw;
  overflow: hidden;
}

.mj-track {
  display: flex;
  gap: 4rem;
  padding-right: 50vw;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}

/* ── Focus Engine — Smooth GPU Cards ── */
.mj-card {
  --focus-scale: 0.85;
  --focus-opacity: 0.35;

  width: clamp(280px, 38vw, 420px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 24px 48px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.03);

  transform: scale(var(--focus-scale)) translateZ(0);
  opacity: var(--focus-opacity);
  /* Buttery smooth easing — the key fix */
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
              opacity  0.55s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}

.mj-card-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.mj-card-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 1.5rem 0;
}

.mj-card-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: auto;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, gap 0.3s ease;
}

.mj-card-link:hover {
  border-color: var(--ink);
  gap: 0.8rem;
}

.mj-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.mj-card:hover .mj-card-link svg {
  transform: translateX(4px);
}

/* ── Icon Wrappers ── */
.mj-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.mj-icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
  overflow: visible;
}

/* 1. Secure Payments */
.mj-lock-shackle {
  transform-origin: 12px 11px;
  animation: mj-lock-click 4s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes mj-lock-click {
  0%, 70%, 100% { transform: translateY(0); }
  85% { transform: translateY(-4px); }
  92% { transform: translateY(-2px); }
}

.mj-pulse-1, .mj-pulse-2 {
  opacity: 0;
  transform-origin: center;
  animation: mj-pulse-ring 3.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mj-pulse-2 { animation-delay: 1.75s; }

@keyframes mj-pulse-ring {
  0%   { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* 2. Easy Shipping */
.mj-box { transform-origin: center; animation: mj-float 3.5s ease-in-out infinite; }
.mj-box-lid, .mj-box-edge, .mj-box-tape { animation: mj-float 3.5s ease-in-out infinite; }

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

.mj-wind { opacity: 0; animation: mj-wind-blow 2.2s linear infinite; }
.mj-wind-2 { animation-delay: 1.1s; }

@keyframes mj-wind-blow {
  0%   { transform: translateX(12px); opacity: 0; }
  25%  { opacity: 0.55; }
  75%  { opacity: 0.55; }
  100% { transform: translateX(-18px); opacity: 0; }
}

/* 3. Easy Returns */
.mj-return-arrow, .mj-return-head {
  transform-origin: center;
  animation: mj-spin 5.5s linear infinite;
}

@keyframes mj-spin { 100% { transform: rotate(-360deg); } }

/* 4. Order Tracking */
.mj-pin, .mj-pin-hole {
  transform-origin: 12px 23px;
  animation: mj-bounce 2.8s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes mj-bounce {
  0%, 100% { transform: translateY(0); }
  45%       { transform: translateY(-9px); }
  60%       { transform: translateY(-6px); }
}

.mj-radar {
  opacity: 0;
  transform-origin: 12px 23px;
  animation: mj-radar-ping 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mj-radar-2 { animation-delay: 1.5s; }

@keyframes mj-radar-ping {
  0%   { transform: scale(0); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── Finale Takeover ── */
.mj-finale {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0d0d0d 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
              visibility 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.mj-finale.is-active {
  opacity: 1;
  visibility: visible;
}

.mj-finale__brand {
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
  letter-spacing: 0.3em;
}

.mj-finale__headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

/* ══════════════════════════════════════════════
   MOBILE: Replace horizontal scroll with
   beautiful vertical stacked card reveal
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Convert the section to natural height on mobile */
  .motion-journey {
    height: auto;
  }

  /* Unstick the container on mobile */
  .mj-sticky-container {
    position: relative;
    height: auto;
    overflow: visible;
    padding: 5rem 0 4rem;
    justify-content: flex-start;
    will-change: auto;
    transform: none;
  }

  /* Marquee stays as a decorative bg element but smaller */
  .mj-marquee {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .mj-header {
    margin-bottom: 3rem;
    overflow: hidden;
  }

  .mj-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Override horizontal track — vertical stacked layout */
  .mj-track-wrapper {
    padding-left: var(--gutter);
    overflow: visible;
  }

  .mj-track {
    flex-direction: column;
    gap: 1.5rem;
    padding-right: var(--gutter);
    width: auto;
    will-change: auto;
    transform: none !important; /* Override JS transform on mobile */
  }

  /* Mobile card — full width, beautiful entrance */
  .mj-card {
    --focus-scale: 1;
    --focus-opacity: 0;
    width: 100%;
    padding: 2rem;
    border-radius: 20px;
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
                opacity   0.75s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
  }

  /* Triggered by IntersectionObserver (JS adds .mj-card--visible) */
  .mj-card.mj-card--visible {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  /* Stagger delays for cards */
  .mj-card:nth-child(1) { transition-delay: 0s; }
  .mj-card:nth-child(2) { transition-delay: 0.08s; }
  .mj-card:nth-child(3) { transition-delay: 0.16s; }
  .mj-card:nth-child(4) { transition-delay: 0.24s; }

  /* Hide the finale takeover on mobile — it's jarring */
  .mj-finale {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   CUSTOMER REVIEWS (Infinite Marquee)
   ═══════════════════════════════════════════════ */
.customer-reviews {
  overflow: hidden;
  background: var(--bg);
  padding-bottom: 8rem;
}

.reviews__headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 4rem 0;
}

.reviews-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full bleed */
  padding: 2rem 0;
}

.reviews-track {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.track-inner {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding-left: 2rem; 
  will-change: transform;
}

/* Hover to pause */
.reviews-marquee-container:hover .track-inner {
  animation-play-state: paused;
}

.track-left {
  animation: mj-scroll-left 40s linear infinite;
}

.track-right {
  animation: mj-scroll-right 40s linear infinite;
  /* Start offset so cards don't align perfectly */
  margin-left: -10vw;
}

@keyframes mj-scroll-left {
  0% { transform: translateX(0); }
  /* -50% because the inner track contains two duplicated sets. */
  100% { transform: translateX(calc(-50% - 1rem)); } 
}

@keyframes mj-scroll-right {
  0% { transform: translateX(calc(-50% - 1rem)); }
  100% { transform: translateX(0); }
}

.review-card {
  width: 380px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}

/* Dynamic Glare Effect */
.review-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.review-card:hover::after {
  opacity: 1;
}

.review-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  /* Transform is handled by JS for 3D tilt, fallback here */
  transform: translateY(-5px);
  z-index: 10;
}

.review-stars {
  color: #C5A059; /* Premium muted gold */
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  transform: translateZ(20px); /* 3D pop */
}

.review-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 2rem 0;
  flex-grow: 1;
  transform: translateZ(30px); /* 3D pop */
}

.review-author-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateZ(20px); /* 3D pop */
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #f4f4f4; /* fallback */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.review-card:hover .review-avatar {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-author {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 0;
}

.review-verified {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .review-card {
    width: 300px;
    padding: 2rem;
  }
  .review-text {
    font-size: 1.1rem;
  }
}

/* ═══════════════════════════════════════════════
   NEWEST PRODUCTS
   ═══════════════════════════════════════════════ */

.newest-products {
  background: var(--bg);
  overflow: hidden;
}

/* ── Section Header ── */
.np-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.np-header__left {
  flex-shrink: 0;
}

.np-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 0 0;
}

.np-headline em {
  font-style: italic;
  /* Italic text gets a subtle outline treatment */
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

.np-header__right {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
}

.np-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

.np-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.np-view-all:hover {
  gap: 1.25rem;
  opacity: 0.6;
}

.np-view-all svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════
   NEWEST PRODUCTS — Architectural Runway & Vault
   ═══════════════════════════════════════════════ */
.newest-products {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

/* ── Ghost Typography Track ── */
.np-ghost-track {
  position: absolute;
  top: 3%;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.6;
}

.np-ghost-text {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
  animation: np-ghost-marquee 45s linear infinite;
  will-change: transform;
}

@keyframes np-ghost-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section Header ── */
.np-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 860px) {
  .np-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.np-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.np-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: np-pulse-glow 2s ease-in-out infinite;
}

@keyframes np-pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

.np-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.np-headline em {
  font-style: italic;
  font-weight: 300;
}

.np-header__right {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.np-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ── Interactive Category Filters ── */
.np-filters-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 3.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.np-filters-wrapper::-webkit-scrollbar {
  display: none;
}

.np-filters {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.np-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.np-filter-count {
  font-size: 0.65rem;
  opacity: 0.6;
  padding: 0.1rem 0.4rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.np-filter-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.np-filter-btn.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.np-filter-btn.is-active .np-filter-count {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

/* ── Carousel Container & Track ── */
.agy-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 3rem;
  cursor: grab;
}

.agy-carousel-container:active {
  cursor: grabbing;
}

@media (hover: hover) and (pointer: fine) {
  .agy-carousel-container {
    cursor: none;
  }
}

.agy-carousel-track {
  display: flex;
  gap: 2.5vw;
  padding: 0 var(--gutter);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

@media (max-width: 900px) {
  .agy-carousel-track {
    gap: 1.25rem;
  }
}

/* Slide Card */
.agy-carousel-slide {
  flex-shrink: 0;
  width: clamp(290px, 32vw, 420px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.agy-carousel-slide.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .agy-carousel-slide {
    width: clamp(260px, 78vw, 340px);
  }
}

/* ── Arched Product Frame ── */
.agy-arch-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 260px 260px 24px 24px;
  overflow: hidden;
  background: #f0eee9;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateZ(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
}

.agy-arch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Badges */
.agy-arch-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 4;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  pointer-events: none;
}

/* Wishlist Button */
.agy-wishlist-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.agy-wishlist-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), fill 0.3s;
}

.agy-wishlist-btn:hover {
  background: #fff;
  transform: scale(1.12);
}

.agy-wishlist-btn.is-saved {
  background: #fff;
  color: #e11d48;
}

.agy-wishlist-btn.is-saved svg {
  fill: #e11d48;
  transform: scale(1.15);
}

/* Image */
.agy-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s;
  pointer-events: none;
}

.agy-arch-card:hover .agy-arch-img {
  transform: scale(1.06);
}

/* Card Hover Overlay */
.agy-arch-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.agy-arch-card:hover .agy-arch-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .agy-arch-overlay {
    opacity: 1;
    pointer-events: auto;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }
}

.agy-arch-actions {
  display: flex;
  justify-content: center;
  transform: translateY(-10px);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.agy-arch-card:hover .agy-arch-actions {
  transform: translateY(0);
}

.agy-quick-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.agy-quick-view-btn svg {
  width: 15px;
  height: 15px;
}

.agy-quick-view-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Quick Add Size Drawer */
.agy-quick-sizes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.agy-arch-card:hover .agy-quick-sizes {
  transform: translateY(0);
}

.agy-quick-sizes-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.agy-size-pills {
  display: flex;
  gap: 0.4rem;
}

.agy-size-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}

.agy-size-pill:hover {
  background: #fff;
  color: var(--ink);
  transform: scale(1.15);
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ── Arch Info Card Bottom ── */
.agy-arch-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 0.5rem;
}

.agy-arch-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agy-arch-category {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.agy-arch-swatches {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.agy-swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.agy-swatch:hover {
  transform: scale(1.3);
}

.agy-swatch.is-active {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.agy-arch-name {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  transition: opacity 0.3s ease;
}

.agy-arch-card:hover + .agy-arch-info .agy-arch-name {
  opacity: 0.8;
}

.agy-arch-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agy-arch-price {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0;
}

.agy-stock-hint {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.agy-carousel-spacer {
  flex-shrink: 0;
  width: var(--gutter);
}

/* ── Custom Drag Cursor ── */
.agy-carousel-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.agy-carousel-container:hover .agy-carousel-cursor {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.agy-carousel-cursor.is-card-hover {
  background: #fff;
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.15);
}

@media (max-width: 900px) {
  .agy-carousel-cursor {
    display: none !important;
  }
}

/* ── Interactive Navigation & Scrubbing Deck ── */
.np-deck {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1rem;
}

.np-deck__controls {
  display: flex;
  gap: 0.75rem;
}

.np-deck__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.np-deck__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.np-deck__btn:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.08);
}

.np-deck__btn--prev:hover:not(:disabled) svg {
  transform: translateX(-2px);
}

.np-deck__btn--next:hover:not(:disabled) svg {
  transform: translateX(2px);
}

.np-deck__btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.np-scrubber {
  flex: 1;
  padding: 1rem 0;
  cursor: pointer;
}

.np-scrubber-track {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.np-scrubber-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 16.66%;
  background: var(--ink);
  border-radius: 100px;
  transition: transform 0.1s linear, width 0.3s ease;
}

.np-deck__counter {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.np-deck__sep {
  color: var(--border);
}

/* ── Quick View Lightbox Modal ── */
.np-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.4s;
  padding: 1.5rem;
}

.np-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.np-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(14px);
}

.np-modal__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.np-modal.is-open .np-modal__container {
  transform: scale(1) translateY(0);
}

.np-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.np-modal__close:hover {
  background: var(--ink);
  color: #fff;
  transform: rotate(90deg);
}

.np-modal__content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
}

@media (max-width: 780px) {
  .np-modal__content {
    grid-template-columns: 1fr;
  }
}

.np-modal__gallery {
  position: relative;
  background: #edebe6;
  min-height: 420px;
}

.np-modal__img-wrap {
  width: 100%;
  height: 100%;
}

.np-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.np-modal__details {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.np-modal__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.np-modal__tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.np-modal__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

.np-modal__price {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.np-modal__desc {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.np-modal__spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
}

.np-modal__spec {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.np-modal__spec-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.np-modal__spec-val {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.np-modal__size-picker {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.np-modal__size-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.np-modal__stock-tag {
  font-size: 0.7rem;
  color: #15803d;
  font-weight: 500;
}

.np-modal__size-options {
  display: flex;
  gap: 0.6rem;
}

.np-modal__size-btn {
  flex: 1;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.np-modal__size-btn:hover {
  border-color: var(--ink);
}

.np-modal__size-btn.is-selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.np-modal__actions {
  padding-top: 0.5rem;
}

.np-modal__add-btn {
  width: 100%;
  height: 56px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.np-modal__add-btn:hover {
  background: #262626;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ── Global Notification Toast ── */
.np-toast {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #111;
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.np-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

@media (max-width: 600px) {
  .np-toast {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────
   GLOBAL SLIDE-OUT BAG DRAWER & SHIPPING TRACKER
   ───────────────────────────────────────────── */
.bag-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bag-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bag-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bag-drawer__panel {
  position: relative;
  z-index: 2;
  width: min(440px, 88vw);
  height: 100%;
  background: #FAF8F4;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(139, 115, 85, 0.18);
}

.bag-drawer.is-open .bag-drawer__panel {
  transform: translateX(0);
}

.bag-drawer__header {
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(139, 115, 85, 0.14);
}

.bag-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bag-drawer__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}

.bag-drawer__badge {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(139, 115, 85, 0.12);
  border-radius: 100px;
  color: #6E5A44;
}

.bag-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(139, 115, 85, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}

.bag-drawer__close:hover {
  background: var(--ink);
  color: #FAF8F4;
  transform: rotate(90deg);
}

/* Dynamic Free Shipping Meter */
.bag-shipping-meter {
  padding: 0.9rem 1.8rem;
  background: rgba(139, 115, 85, 0.07);
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}

.bag-shipping-text {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.bag-shipping-text strong {
  color: #8B7355;
  font-weight: 600;
}

.bag-shipping-bar {
  height: 5px;
  background: rgba(139, 115, 85, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.bag-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, #8B7355, #2E7D32);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bag Body & Item Cards */
.bag-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.8rem;
}

.bag-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem 0;
}

.bag-empty-icon svg {
  width: 48px;
  height: 48px;
  color: #8B7355;
  margin-bottom: 1rem;
}

.bag-empty h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.bag-empty p {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: #8C8276;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.bag-empty-cta {
  padding: 9px 20px;
  background: var(--ink);
  color: #FAF8F4;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bag-empty-cta:hover {
  background: #8B7355;
}

/* Items List */
.bag-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.bag-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  animation: bagItemSlide 0.3s ease;
}

.bag-item.is-out-of-stock {
  opacity: 0.55;
}

.bag-item.is-out-of-stock .bag-item__img {
  filter: grayscale(1);
}

.bag-item__stock-note {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  color: #c0392b;
  margin-top: 0.25rem;
  font-weight: 500;
}

@keyframes bagItemSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.bag-item__img {
  width: 70px;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  background: #EFECE6;
}

.bag-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bag-item__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.bag-item__meta {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: #8C8276;
  margin-bottom: 0.4rem;
}

.bag-item__price {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.bag-item__qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 6px;
  padding: 2px 6px;
}

.bag-item__qty-btn {
  border: none;
  background: none;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  padding: 0 4px;
}

.bag-item__qty-val {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  min-width: 14px;
  text-align: center;
}

.bag-item__remove {
  border: none;
  background: none;
  color: #A89F91;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.bag-item__remove:hover {
  color: #D32F2F;
}

/* Bag Footer */
.bag-drawer__footer {
  padding: 1.4rem 1.8rem 1.8rem;
  border-top: 1px solid rgba(139, 115, 85, 0.15);
  background: #FAF8F4;
}

.bag-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.bag-subtotal-val {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.bag-shipping-note {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: #8C8276;
  margin-bottom: 1.2rem;
}

.bag-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bag-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 22px;
  background: #111111;
  color: #f7f3ec !important;
  border: 1px solid #8b7355;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.bag-checkout-btn:hover {
  background: #8b7355;
  border-color: #8b7355;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
  color: #FFFFFF !important;
}

.bag-checkout-btn svg {
  width: 16px;
  height: 16px;
}

.bag-continue-btn {
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6E5A44;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bag-continue-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* Floating Toast Notification */
.shop-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 12px 20px;
  background: #1C1917;
  color: #FAF8F4;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(200, 169, 122, 0.3);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-toast.is-active,
.shop-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.shop-toast__icon-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.shop-toast__content {
  display: flex;
  flex-direction: column;
}

.shop-toast__title {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8A97A;
  margin-bottom: 2px;
}

.shop-toast__text {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: #FAF8F4;
}

@media (max-width: 600px) {
  .shop-toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* ══════════════════════════════════════════════
   GLOBAL MULTI-CURRENCY SWITCHER
   ══════════════════════════════════════════════ */
.currency-switcher-wrap {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
}

.currency-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.currency-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 6px 24px 6px 12px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #111;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 8px;
  transition: all 0.2s ease;
}

.currency-select:hover,
.currency-select:focus {
  border-color: #111;
  background-color: rgba(0, 0, 0, 0.03);
}

.currency-select option {
  background: #fff;
  color: #111;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
}

@media (max-width: 768px) {
  .currency-select {
    padding: 5px 20px 5px 8px;
    font-size: 0.68rem;
  }
}




.site-header--solid .header-inner {
  padding: 1.25rem var(--gutter);
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header--solid .logo-img { filter: invert(0); }
.site-header--solid .hdr-btn { color: var(--ink); }
.site-header--solid .hdr-nav-link { color: var(--ink-muted); }
.site-header--solid .hdr-nav-link:hover,
.site-header--solid .hdr-nav-link.active {
  color: #8b7355;
  background: rgba(139, 115, 85, 0.08);
}

/* ─── REAL-TIME LUXURY RED CIRCLE NOTIFICATION BADGES ─── */
.hdr-btn {
  position: relative !important;
}

.hdr-count-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e53935 !important;
  color: #ffffff !important;
  font-family: var(--sans, -apple-system, sans-serif) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center;
  position: absolute;
  top: -8px;
  right: -8px;
  box-shadow: 0 2px 6px rgba(229, 57, 53, 0.45);
  pointer-events: none;
  z-index: 10;
  box-sizing: border-box;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
  animation: badgePop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 900px) {
  .hdr-count-badge {
    top: -9px;
    right: -7px;
  }
}

@keyframes badgePop {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.25); }
  100% { transform: scale(1); opacity: 1; }
}

.hdr-count-badge[style*="display: none"],
.hdr-count-badge.is-hidden {
  display: none !important;
}


