/* ==========================================================================
   OlO MENSWEAR — HOMEPAGE V2 (QUIET LUXURY EDITORIAL CADENCE)
   ========================================================================== */

.olo-home {
  background: var(--color-bg);
  color: var(--color-text);
  overflow: clip;
}

.olo-home .editorial {
  font-family: var(--font-editorial);
  letter-spacing: var(--tracking-editorial);
  line-height: var(--leading-editorial);
}

.olo-pill-eyebrow,
.olo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--olo-walnut);
}

.olo-hero-badge {
  color: var(--olo-ivory);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.olo-hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c5a880;
  box-shadow: 0 0 8px #c5a880;
}

.olo-pill-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5a36;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(139, 90, 54, 0.4);
}

/* --------------------------------------------------------------------------
   1. CAMPAIGN HERO (LUXURY BESPOKE SHOWCASE)
   -------------------------------------------------------------------------- */
.olo-home-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0 auto var(--space-8);
  border-radius: 0;
  min-height: clamp(480px, 68svh, 620px);
  color: var(--olo-ivory);
  overflow: hidden;
  background: #090807;
  display: flex;
  align-items: center;
}

.olo-home-hero__media,
.olo-home-hero__shade {
  position: absolute;
  inset: 0;
}

.olo-home-hero__media picture,
.olo-home-hero__media img,
.olo-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.olo-home-hero:hover .olo-hero-bg-img {
  transform: scale(1.03);
}

.olo-home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(9, 8, 7, 0.72) 0%,
    rgba(9, 8, 7, 0.48) 45%,
    rgba(9, 8, 7, 0.08) 75%,
    rgba(9, 8, 7, 0.25) 100%
  );
  pointer-events: none;
}

:lang(ar) .olo-home-hero__shade {
  background: linear-gradient(
    270deg,
    rgba(9, 8, 7, 0.72) 0%,
    rgba(9, 8, 7, 0.48) 45%,
    rgba(9, 8, 7, 0.08) 75%,
    rgba(9, 8, 7, 0.25) 100%
  );
}

.olo-home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
  min-height: inherit;
  padding-block: clamp(28px, 3.5vw, 44px);
  padding-inline: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: clamp(20px, 2.8vw, 36px);
}

.olo-home-hero__copy {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Authentic Brand Lockup (Emblem + Monogram + Tagline) */
.olo-hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: fit-content;
  gap: var(--space-3);
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 168, 128, 0.35);
  padding: 5px 16px 5px 7px;
  border-radius: var(--radius-full);
  margin-block-end: var(--space-3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.olo-hero-brand-emblem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  background: radial-gradient(circle at 40% 40%, #30241e 0%, #15110e 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px;
}

.olo-hero-bronze-emblem {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.olo-hero-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}

.olo-brand-menswear {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b485;
  line-height: 1.15;
}

.olo-hero-brand-tagline {
  font-family: var(--font-ui);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(242, 236, 228, 0.72);
  line-height: 1.15;
}

.olo-hero-badge-wrap {
  margin-block-end: var(--space-3);
}

.olo-home-hero h1 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-editorial);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: var(--tracking-editorial);
  color: var(--olo-pearl);
}

.olo-home-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #d8c09d;
}

.olo-hero-lead {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.5;
  color: rgba(242, 236, 228, 0.85);
  max-width: 480px;
  margin: 0 0 var(--space-4);
}

.olo-hero-sub-kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d8c09d;
  margin: 0 0 var(--space-4);
}

.olo-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-block-end: var(--space-4);
}

.olo-hero-cta {
  background: #8b5a36;
  border-color: #8b5a36;
  color: var(--olo-pearl);
  min-width: 170px;
  height: 44px;
  padding: 0 var(--space-5);
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(139, 90, 54, 0.32);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-size: 11px;
  transition: transform var(--duration-ui) var(--ease-olo), background var(--duration-ui) var(--ease-olo), box-shadow var(--duration-ui) var(--ease-olo);
}

.olo-hero-cta:hover {
  background: #a26d45;
  border-color: #a26d45;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(139, 90, 54, 0.45);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--olo-pearl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-size: 11px;
  height: 44px;
  padding: 0 var(--space-5);
  transition: all var(--duration-ui) var(--ease-olo);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* Specs Bar */
.olo-hero-specs-strip {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-block-start: var(--space-3);
  border-block-start: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.olo-hero-spec-node {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.olo-spec-val {
  font-family: var(--font-editorial);
  font-size: 18px;
  font-weight: 600;
  color: #d8c09d;
  line-height: 1;
  letter-spacing: 0.02em;
}

.olo-spec-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 236, 228, 0.75);
  white-space: nowrap;
}

.olo-spec-sep {
  color: rgba(197, 168, 128, 0.35);
  font-size: 13px;
}

/* Hero Side Cadence & Editorial Caption */
.olo-home-hero__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
  padding-block: var(--space-4);
  z-index: 2;
}

.olo-hero-cadence {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 13, 11, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 168, 128, 0.25);
}

.olo-cadence-step {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(242, 236, 228, 0.45);
}

.olo-cadence-step.is-active {
  color: #d8c09d;
  font-weight: 700;
}

.olo-cadence-dash {
  width: 12px;
  height: 1px;
  background: rgba(197, 168, 128, 0.35);
}

.olo-hero-side-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  text-align: end;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 236, 228, 0.45);
}

:lang(ar) .olo-home-hero__side {
  align-items: flex-start;
}

:lang(ar) .olo-hero-side-caption {
  align-items: flex-start;
  text-align: start;
}

/* Floating Lookbook Card (Legacy Fallback) */
.olo-home-hero__showcase {
  width: 250px;
  max-width: 100%;
  flex-shrink: 0;
}

.olo-hero-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 168, 128, 0.32);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: transform var(--duration-ui) var(--ease-olo), border-color var(--duration-ui) var(--ease-olo), box-shadow var(--duration-ui) var(--ease-olo);
}

.olo-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 168, 128, 0.7);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7);
}

.olo-hero-card__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
}

.olo-hero-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.olo-hero-card:hover .olo-hero-card__media img {
  transform: scale(1.05);
}

.olo-hero-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(9, 8, 7, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8c09d;
}

:lang(ar) .olo-hero-card__badge {
  left: auto;
  right: 10px;
}

.olo-hero-card__content {
  padding: 10px 14px 12px;
}

.olo-hero-card__brand-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-block-end: 3px;
}

.olo-card-dot {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: #c5a880;
  box-shadow: 0 0 5px #c5a880;
}

.olo-card-brand {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #c5a880;
  text-transform: uppercase;
}

.olo-hero-card__name {
  font-family: var(--font-editorial);
  font-size: 14px;
  font-weight: 500;
  color: var(--olo-pearl);
  margin: 0 0 var(--space-2);
  line-height: 1.25;
}

.olo-hero-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
}

.olo-hero-card__color {
  color: rgba(242, 236, 228, 0.65);
  font-weight: 500;
}

.olo-hero-card__action {
  color: #d8c09d;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform var(--duration-fast) var(--ease-olo);
}

.olo-hero-card:hover .olo-hero-card__action {
  transform: translateX(3px);
}

:lang(ar) .olo-hero-card:hover .olo-hero-card__action {
  transform: translateX(-3px);
}

@media (max-width: 991px) {
  .olo-home-hero {
    min-height: 680px;
  }
  .olo-home-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .olo-home-hero__showcase {
    display: none;
  }
  .olo-home-hero__shade {
    background: linear-gradient(
      180deg,
      rgba(9, 8, 7, 0.88) 0%,
      rgba(9, 8, 7, 0.72) 45%,
      rgba(9, 8, 7, 0.94) 100%
    );
  }
}

@media (max-width: 767px) {
  .olo-home-hero {
    margin: var(--space-2);
    min-height: 520px;
    max-height: 640px;
  }
  .olo-hero-brand-lockup {
    width: auto;
    max-width: 100%;
    padding: 5px 14px 5px 7px;
  }
  .olo-home-hero h1 {
    font-size: clamp(30px, 8.5vw, 42px);
  }
  .olo-home-hero__actions {
    width: 100%;
  }
  .olo-hero-cta,
  .button-ghost {
    width: 100%;
  }
  .olo-hero-specs-strip {
    gap: var(--space-3);
  }
}

/* --------------------------------------------------------------------------
   2. PRESTIGE ASSURANCE RIBBON
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   2. PRE-FOOTER ASSURANCE RIBBON
   -------------------------------------------------------------------------- */
.olo-service-strip {
  background: #faf8f5;
  border-block-start: var(--border-width) solid var(--color-border);
  padding-block: clamp(28px, 3.5vw, 44px);
}

.olo-service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.olo-service-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-inline-end: var(--space-3);
  border-inline-end: var(--border-width) solid rgba(216, 208, 200, 0.6);
}

.olo-service-item:last-child {
  border-inline-end: none;
}

.olo-service-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  color: #8b5a36;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 11, 11, 0.04);
}

.olo-service-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.olo-service-item__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--olo-black);
}

.olo-service-item__text {
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   3. THE FIRST DROP (THE 4-HOODIE SHOWCASE)
   -------------------------------------------------------------------------- */
.olo-first-drop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
  gap: clamp(32px, 4.8vw, 68px);
  align-items: center;
  padding-block: var(--space-section);
}

.olo-first-drop__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.olo-first-drop__copy .editorial {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0;
  color: var(--olo-black);
  line-height: 1.12;
}

.olo-first-drop__narrative p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 48ch;
  margin: 0;
}

.olo-first-drop__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  width: 100%;
  margin-block: var(--space-3);
  padding-block: var(--space-3);
  border-block: var(--border-width) solid var(--color-border);
}

.olo-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.olo-spec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.olo-spec-value {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--olo-black);
}

.olo-first-drop__cta .button {
  min-width: 190px;
  height: 46px;
  padding: 0 var(--space-6);
  font-size: 12px;
  justify-content: space-between;
}

.olo-first-drop__media {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.olo-first-drop__media-frame {
  position: relative;
  background: #faf8f5;
  border-radius: var(--card-radius);
  padding: clamp(20px, 2.6vw, 32px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(216, 208, 200, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.olo-first-drop__media-frame a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.olo-first-drop__showcase-img,
.olo-first-drop__media-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1974 / 797;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.olo-first-drop__media-frame:hover img {
  transform: scale(1.03);
}

.olo-first-drop__badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(11, 11, 11, 0.85);
  color: var(--olo-ivory);
  backdrop-filter: blur(8px);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  padding: 3.5px 10px;
  border-radius: var(--radius-xs);
}

.olo-first-drop__lineup-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-block-start: var(--space-1);
}

.olo-first-drop__swatches-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.olo-first-drop__swatch-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--olo-black);
  font-size: 11.5px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.olo-first-drop__swatch-item:hover {
  border-color: var(--olo-walnut);
  box-shadow: 0 4px 12px rgba(139, 90, 54, 0.15);
  transform: translateY(-1px);
}

.olo-first-drop__swatch-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.olo-first-drop__swatch-name {
  white-space: nowrap;
}

.olo-first-drop__caption-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block-start: var(--space-2);
  border-block-start: 1px solid rgba(216, 208, 200, 0.5);
}

.olo-first-drop__caption-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.olo-first-drop__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--olo-black);
}

/* --------------------------------------------------------------------------
   4. THE PALETTE (COLORWAYS GRID)
   -------------------------------------------------------------------------- */
.olo-colorways {
  padding-block: var(--space-section);
  border-block-start: var(--border-width) solid var(--color-border);
}

.olo-colorways__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-block-end: var(--space-8);
}

.olo-colorways__title-group .editorial {
  font-size: clamp(24px, 2.6vw, 36px);
  margin: var(--space-1) 0 0;
  line-height: 1.15;
}

.olo-colorways__header-sub {
  max-width: 36ch;
  margin: 0;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.olo-colorways__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.olo-colorway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: border-color var(--duration-ui) var(--ease-olo), box-shadow var(--duration-ui) var(--ease-olo), transform var(--duration-ui) var(--ease-olo);
}

.olo-colorway-card:hover {
  border-color: var(--olo-walnut);
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.08);
  transform: translateY(-3px);
}

.olo-colorway-card__media {
  position: relative;
  display: block;
  padding: 8px;
  background: #faf8f5;
  overflow: hidden;
}

.olo-colorway-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--card-radius) - 2px);
  transition: transform var(--duration-editorial) var(--ease-olo);
}

.olo-colorway-card:hover .olo-colorway-card__media img {
  transform: scale(1.04);
}

.olo-colorway-card__badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(11, 11, 11, 0.82);
  color: var(--olo-ivory);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  padding: 2.5px 7px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(6px);
}

.olo-colorway-card__swatch {
  position: absolute;
  bottom: 14px;
  inset-inline-end: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.olo-colorway-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 12px 2px;
}

.olo-colorway-card__product {
  margin: 0;
  font-size: 9.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.olo-colorway-card__name {
  margin: 1px 0 0;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
}

.olo-colorway-card__name a {
  color: var(--olo-black);
  text-decoration: none;
}

.olo-colorway-card__price .price {
  font-size: 13px;
  font-weight: 700;
  color: var(--olo-black);
}

.olo-colorway-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 12px 8px;
  font-size: 10.5px;
  border-block-start: 1px solid rgba(0, 0, 0, 0.04);
}

.olo-colorway-card__availability {
  color: var(--stock-available);
  font-weight: 600;
  font-size: 10.5px;
}

.olo-colorway-card__quick {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
  font-size: 11px;
  color: var(--olo-walnut);
  text-decoration: none;
  transition: gap var(--duration-fast);
}

.olo-colorway-card:hover .olo-colorway-card__quick {
  gap: 6px;
}
/* --------------------------------------------------------------------------
   5. TACTILE CRAFT STORIES (THE ANATOMY OF CRAFT)
   -------------------------------------------------------------------------- */
.olo-craft-stories {
  padding-block: var(--space-section);
  border-block-start: var(--border-width) solid var(--color-border);
}

.olo-craft-stories__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-block-end: var(--space-8);
}

.olo-craft-stories__title-wrap .editorial {
  font-size: clamp(24px, 2.6vw, 36px);
  margin: var(--space-1) 0 0;
  line-height: 1.15;
}

.olo-craft-stories__sub {
  max-width: 40ch;
  margin: 0;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.olo-craft-stories__grid,
.olo-craft-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.olo-craft-card,
.olo-craft-card--dual {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(11, 11, 11, 0.04);
  transition: transform var(--duration-ui) var(--ease-olo), box-shadow var(--duration-ui) var(--ease-olo), border-color var(--duration-ui) var(--ease-olo);
}

.olo-craft-card:hover,
.olo-craft-card--dual:hover {
  transform: translateY(-4px);
  border-color: var(--olo-walnut);
  box-shadow: 0 16px 36px rgba(11, 11, 11, 0.09);
}

.olo-craft-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f0e0c;
}

.olo-craft-card__media img,
.olo-craft-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.olo-craft-card:hover .olo-craft-card__media img,
.olo-craft-card--dual:hover .olo-craft-card__media img {
  transform: scale(1.04);
}

.olo-craft-card__index {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  background: rgba(11, 11, 11, 0.82);
  color: var(--olo-ivory);
  font-size: 9.5px;
  font-weight: 700;
  padding: 2.5px 7px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
}

.olo-craft-card__tag-badge {
  position: absolute;
  bottom: 14px;
  inset-inline-start: 14px;
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #d8c09d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3.5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.olo-craft-card__body {
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-grow: 1;
}

.olo-craft-card__subtitle {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--olo-walnut);
  margin: 0;
}

.olo-craft-card__title {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  margin: 0;
  color: var(--olo-black);
  line-height: 1.2;
}

.olo-craft-card__text {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.olo-craft-card__link {
  margin-block-start: auto;
  padding-block-start: var(--space-3);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olo-black);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap var(--duration-fast), color var(--duration-fast);
}

.olo-craft-card:hover .olo-craft-card__link,
.olo-craft-card--dual:hover .olo-craft-card__link {
  gap: 8px;
  color: var(--olo-walnut);
}

/* --------------------------------------------------------------------------
   6. OUR STANDARD (3-COLUMN ARCHITECTURAL LAYOUT)
   -------------------------------------------------------------------------- */
.olo-standard {
  padding-block: var(--space-section);
  background: var(--color-bg);
}

.olo-standard__header {
  margin-block-end: var(--space-8);
}

.olo-standard__header .editorial {
  font-size: clamp(26px, 2.8vw, 38px);
  margin: var(--space-1) 0 0;
  color: var(--olo-black);
  line-height: 1.15;
}

.olo-standard__tri-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: stretch;
}

/* Col 1: Checklist */
.olo-standard__col--features {
  background: #faf8f5;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  padding: clamp(24px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.olo-standard__feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.olo-standard__feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.olo-standard__feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(139, 90, 54, 0.1);
  color: #8b5a36;
  border: 1px solid rgba(139, 90, 54, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.olo-standard__feature-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.olo-standard__feature-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--olo-black);
  margin: 0;
}

.olo-standard__feature-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Col 2: Center Model Frame */
.olo-standard__col--media {
  height: 100%;
}

.olo-standard__media-frame {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  background: #0f0e0c;
}

.olo-standard__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.olo-standard__media-frame:hover img {
  transform: scale(1.03);
}

.olo-standard__media-badge {
  position: absolute;
  bottom: 16px;
  inset-inline: 16px;
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #d8c09d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 168, 128, 0.3);
}

/* Col 3: Manifesto Card */
.olo-standard__col--manifesto {
  height: 100%;
}

.olo-standard__emblem-card {
  height: 100%;
  background: #0d0c0a;
  color: var(--olo-ivory);
  border-radius: var(--card-radius);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(197, 168, 128, 0.28);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.olo-standard__emblem-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  background: radial-gradient(circle at 40% 40%, #30241e 0%, #15110e 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  margin-block-end: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}

.olo-standard__bronze-emblem {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.olo-standard__manifesto-eyebrow {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #c5a880;
  margin-block-end: var(--space-2);
}

.olo-standard__manifesto-title {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 2.3vw, 28px);
  color: var(--olo-pearl);
  margin: 0 0 var(--space-3);
  line-height: 1.2;
}

.olo-standard__manifesto-text {
  font-size: 13px;
  color: rgba(242, 236, 228, 0.78);
  line-height: 1.65;
  margin: 0 0 var(--space-5);
  max-width: 32ch;
}

.olo-standard__manifesto-action .olo-standard-link {
  color: #d8c09d;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--duration-fast), color var(--duration-fast);
}

.olo-standard__manifesto-action .olo-standard-link:hover {
  gap: 9px;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   7. SHOP PIECE (CONVERSION CLOSE)
   -------------------------------------------------------------------------- */
.olo-shop-piece {
  padding-block-end: var(--space-10);
}

.olo-shop-piece__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--card-radius);
  background: #faf8f5;
  border: 1px solid var(--color-border);
}

.olo-shop-piece__copy .editorial {
  font-size: clamp(20px, 2.2vw, 28px);
  margin: var(--space-1) 0 var(--space-2);
  color: var(--olo-black);
  line-height: 1.15;
}

.olo-shop-piece__desc {
  margin: 0;
  max-width: 44ch;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.olo-shop-piece__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
  flex-shrink: 0;
}

.olo-shop-piece__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.olo-shop-piece__item-name {
  font-size: 9.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
}

.olo-shop-piece__pricing .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--olo-black);
}

.olo-shop-piece__btn {
  min-width: 175px;
  height: 44px;
  padding: 0 var(--space-6);
  font-size: 11.5px;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   8. VIP PRIVATE LIST NEWSLETTER
   -------------------------------------------------------------------------- */
.olo-newsletter {
  background: var(--olo-black);
  color: var(--olo-ivory);
  padding-block: var(--space-12);
  border-block-start: 1px solid rgba(255, 255, 255, 0.08);
}

.olo-newsletter__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
}

.olo-newsletter__header .editorial {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: var(--space-1) 0 var(--space-2);
  color: var(--olo-pearl);
  line-height: 1.15;
}

.olo-newsletter__desc {
  margin: 0;
  font-size: 12.5px;
  color: var(--olo-stone);
  max-width: 42ch;
  line-height: 1.55;
}

.olo-newsletter__form-wrap {
  min-width: 340px;
}

.olo-vip-input-group {
  display: flex;
  gap: var(--space-2);
}

.olo-vip-input-group input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--olo-pearl);
  border-radius: var(--control-radius);
  padding-inline: var(--space-4);
  height: 44px;
  font-size: 12.5px;
  transition: border-color var(--duration-fast);
}

.olo-vip-input-group input:focus {
  outline: none;
  border-color: var(--olo-walnut);
}

.olo-vip-input-group .button {
  height: 44px;
  font-size: 11.5px;
  white-space: nowrap;
  gap: var(--space-2);
  padding: 0 var(--space-6);
}

.olo-vip-success {
  margin-block-start: var(--space-3);
  font-size: var(--text-small);
  color: #c5a880;
}

/* --------------------------------------------------------------------------
   RESPONSIVE LAYOUTS & BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .olo-first-drop {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .olo-craft-stories__grid,
  .olo-craft-dual-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .olo-standard__tri-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .olo-standard__media-frame {
    min-height: 340px;
  }

  .olo-service-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .olo-service-item:nth-child(2) {
    border-inline-end: none;
  }

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

  .olo-newsletter__form-wrap {
    width: 100%;
    min-width: 0;
  }

  .olo-shop-piece__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .olo-shop-piece__action {
    align-items: flex-start;
    width: 100%;
  }

  .olo-shop-piece__pricing {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .olo-home-hero {
    min-height: 82svh;
    max-height: none;
    margin: 0 0 var(--space-8);
    border-radius: 0;
    align-items: flex-end;
  }

  .olo-home-hero__media picture,
  .olo-home-hero__media img,
  .olo-hero-bg-img {
    object-position: center top !important;
  }

  .olo-home-hero__shade {
    background: linear-gradient(
      180deg,
      rgba(9, 8, 7, 0.08) 0%,
      rgba(9, 8, 7, 0.18) 28%,
      rgba(9, 8, 7, 0.68) 58%,
      rgba(9, 8, 7, 0.92) 82%,
      rgba(9, 8, 7, 0.98) 100%
    ) !important;
  }

  .olo-home-hero__inner {
    grid-template-columns: 1fr;
    padding-block: var(--space-6);
    padding-inline: 0;
    min-height: auto;
    width: min(100% - var(--gutter) * 2, var(--container));
    margin-inline: auto;
  }

  .olo-home-hero__copy {
    justify-content: flex-end;
    gap: var(--space-2);
  }

  .olo-hero-brand-lockup {
    margin-block-end: var(--space-2);
    padding: 3px 12px 3px 6px;
    background: rgba(14, 13, 11, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .olo-hero-brand-emblem {
    width: 28px;
    height: 28px;
  }

  .olo-brand-menswear {
    font-size: 8.5px;
  }

  .olo-hero-brand-tagline {
    font-size: 6.5px;
  }

  #olo-hero-title {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.1;
    margin-block-end: var(--space-2);
  }

  .olo-hero-sub-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-block-end: var(--space-3);
  }

  .olo-home-hero__actions {
    display: flex;
    gap: var(--space-2);
    width: 100%;
  }

  .olo-home-hero__actions .button {
    flex: 1;
    min-height: 46px;
    font-size: 12px;
    padding: 0 var(--space-3);
    justify-content: center;
  }

  .olo-hero-specs-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
    margin-block-start: var(--space-4);
    padding: 10px 6px;
    background: rgba(14, 13, 11, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(197, 168, 128, 0.22);
    border-radius: var(--radius-sm);
    gap: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .olo-spec-sep {
    display: none !important;
  }

  .olo-hero-spec-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: 4px;
    gap: 2px;
  }

  .olo-hero-spec-node:not(:last-child) {
    border-inline-end: 1px solid rgba(197, 168, 128, 0.22);
  }

  .olo-spec-val {
    font-family: var(--font-editorial);
    font-size: 16px;
    font-weight: 700;
    color: #d8c09d;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .olo-spec-lbl {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(242, 236, 228, 0.75);
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .olo-home-hero__side {
    display: none;
  }

  .olo-home-hero__meta {
    display: none;
  }

  .olo-colorways__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  .olo-colorways__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .olo-craft-stories__grid,
  .olo-craft-dual-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .olo-service-strip__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .olo-service-item {
    border-inline-end: none;
    border-block-end: 1px solid var(--color-border);
    padding-block-end: var(--space-3);
  }

  .olo-service-item:last-child {
    border-block-end: none;
  }

  .olo-vip-input-group {
    flex-direction: column;
  }

  .olo-vip-input-group .button {
    width: 100%;
    justify-content: center;
  }

  .olo-first-drop__specs {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

/* RTL Arrow transformations */
[dir="rtl"] .olo-cta-arrow,
body.rtl .olo-cta-arrow,
body.olo-rtl .olo-cta-arrow,
[dir="rtl"] .olo-home-card__arrow,
body.rtl .olo-home-card__arrow {
  transform: scaleX(-1);
  display: inline-block;
}

/* ==========================================================================
   NEW QUIET LUXURY: THE DROP 01 COLLECTION GRID
   ========================================================================== */
.olo-home-collection {
  padding-block: var(--space-section);
  border-block-start: var(--border-width) solid var(--color-border);
}

.olo-home-collection__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  max-width: 980px;
  margin-inline: auto;
  margin-block-end: var(--space-8);
}

.olo-home-collection__title-wrap h2 {
  margin-block-start: var(--space-2);
  margin-block-end: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.olo-home-collection__sub {
  max-width: 440px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.olo-home-collection__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 980px;
  margin-inline: auto;
}

.olo-home-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid rgba(216, 208, 200, 0.7);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.olo-home-card:hover {
  transform: translateY(-4px);
  border-color: var(--olo-walnut);
  box-shadow: 0 16px 36px rgba(11, 11, 11, 0.08);
}

.olo-home-card__media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  max-height: 440px;
  background: #f0ede8;
  overflow: hidden;
}

.olo-home-card__media {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.olo-home-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.olo-home-card__img--primary {
  position: relative;
  z-index: 1;
}

.olo-home-card__img--secondary {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
}

.olo-home-card:hover .olo-home-card__img--secondary {
  opacity: 1;
}

.olo-home-card:hover .olo-home-card__img {
  transform: scale(1.025);
}

.olo-home-card__badges {
  position: absolute;
  top: 14px;
  inset-inline: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.olo-home-card__discount-pill {
  background: #8b1820;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.olo-home-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.olo-home-card__swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block-end: var(--space-2);
}

.olo-home-card__swatch-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.olo-home-card__swatch-dot:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 1px var(--olo-black), 0 2px 6px rgba(0,0,0,0.15);
}

.olo-home-card__swatch-count {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-inline-start: 4px;
}

.olo-home-card__title {
  margin: 0 0 var(--space-3) 0;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

.olo-home-card__title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.olo-home-card__title a:hover {
  color: var(--olo-walnut);
}

.olo-home-card__sizes {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-block-end: var(--space-2);
  font-size: 12px;
}

.olo-home-card__sizes-label {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 11.5px;
}

.olo-home-card__size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.olo-home-card__size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 25px;
  padding-inline: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-ui);
  border: 1px solid rgba(40, 30, 26, 0.16);
  border-radius: var(--radius-xs);
  background: var(--color-bg);
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.15s ease;
}

.olo-home-card__size-pill:hover {
  background: var(--olo-espresso);
  color: var(--olo-ivory);
  border-color: var(--olo-espresso);
}

.olo-home-card__footer {
  margin-block-start: auto;
  padding-block-start: var(--space-4);
  border-block-start: 1px solid rgba(216, 208, 200, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.olo-home-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.olo-home-card__price del {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 400;
}

.olo-home-card__price ins {
  text-decoration: none;
  color: var(--color-text);
}

.olo-home-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--olo-black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.olo-home-card__link:hover {
  color: var(--olo-walnut);
  gap: 10px;
}

/* ==========================================================================
   CONSOLIDATED QUIET LUXURY: THE STANDARD & ANATOMY OF CRAFT
   ========================================================================== */
.olo-standard {
  padding-block: var(--space-section);
  border-block-start: var(--border-width) solid var(--color-border);
}

.olo-standard__inner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
}

.olo-standard__header {
  margin-block-end: var(--space-8);
}

.olo-standard__header h2 {
  margin-block-start: var(--space-2);
  margin-block-end: var(--space-3);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.olo-standard__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.olo-standard__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-block-end: var(--space-8);
}

.olo-standard-pillar {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding-block: var(--space-3);
  border-block-start: 1px solid rgba(216, 208, 200, 0.5);
}

.olo-standard-pillar:first-child {
  border-block-start: none;
  padding-block-start: 0;
}

.olo-standard-pillar__num {
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 600;
  color: var(--olo-walnut);
  line-height: 1;
  flex-shrink: 0;
  padding-block-start: 2px;
}

.olo-standard-pillar__title {
  margin: 0 0 var(--space-1) 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--olo-black);
}

.olo-standard-pillar__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.olo-standard__visual {
  position: relative;
}

.olo-standard__media-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(11, 11, 11, 0.08);
  border: 1px solid rgba(216, 208, 200, 0.6);
  aspect-ratio: 4 / 5;
  background: #ede8e1;
}

.olo-standard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.olo-standard__floating-badge {
  position: absolute;
  bottom: 20px;
  inset-inline-start: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #ffffff;
}

.olo-standard__badge-emblem {
  width: 28px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.olo-standard__badge-meta {
  display: flex;
  flex-direction: column;
}

.olo-standard__badge-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #cfc7bd;
}

.olo-standard__badge-sub {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .olo-home-collection__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .olo-home-collection__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 520px;
  }

  .olo-standard__inner-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .olo-standard__visual {
    order: -1;
  }
}

/* Modern Web Performance: Offscreen content visibility */
.olo-standard,
.olo-services,
.olo-newsletter {
  content-visibility: auto;
  contain-intrinsic-size: 1px 650px;
}
