/* ─────────────────────────────────────────────────────
   Oula — editorial site layer
   Adds light-palette tokens and ow-* components on top
   of styles.css. Does not override the dark-theme base.
───────────────────────────────────────────────────── */

/* ── New tokens (light editorial palette) ─────────── */
:root {
  --soft:  #6E6E73;
  --line:  #E6E2DC;
  --cream: #F2EEE8;
  --paper: #ffffff;

}

/* ── Container ────────────────────────────────────── */
.ow-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Footer ───────────────────────────────────────── */
.ow-footer {
  position: relative;
  padding: 80px 0 44px;
  overflow: hidden;
  background: #1a1c1b;
}

.ow-footer-mark {
  position: absolute;
  left: 50%;
  bottom: -14%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 36vw;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: linear-gradient(to bottom, rgba(250,249,247,0.07) 0%, rgba(250,249,247,0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.ow-foot-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}

.ow-foot-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ow-footer .wordmark-text {
  color: #faf9f7;
}

.ow-foot-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(250, 249, 247, 0.42);
  margin-top: 2px;
}

.ow-foot-h {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.35);
  margin-bottom: 4px;
}

.ow-foot-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(250, 249, 247, 0.6);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ow-foot-link:hover { color: #faf9f7; }

.ow-foot-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.ow-foot-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(250, 249, 247, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 249, 247, 0.45);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.ow-foot-social a:hover {
  color: #faf9f7;
  border-color: rgba(250, 249, 247, 0.4);
}

.ow-foot-bottom {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 249, 247, 0.07);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  color: rgba(250, 249, 247, 0.28);
}

.ow-foot-tagline { display: none; }

/* ── Footer responsive ────────────────────────────── */
@media (max-width: 960px) {
  .ow-container { padding: 0 22px; }
  .ow-foot-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .ow-foot-inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────
   Phase 2 — Banner + scroll-aware Nav
───────────────────────────────────────────────────── */

/* Editorial layout: hero extends behind the nav */
body { padding-top: 0; }
.s-hero { min-height: 100vh; }

/* ── Announcement banner ─────────────────────────────── */
.ow-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 38px;
  background: #8b261e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.92);
  transition: opacity 0.3s ease;
}
.ow-banner.hidden {
  opacity: 0;
  pointer-events: none;
}
.ow-banner-dot { opacity: 0.38; }
.ow-banner-link {
  color: inherit;
  text-decoration: none;
}
.ow-banner-link:hover { color: #fff; }

/* ── Scroll-aware nav ────────────────────────────────── */
.ow-nav {
  position: fixed;
  left: 0; right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease, top 0.3s ease, border-color 0.3s ease;
}
.ow-nav.on-dark {
  top: 38px;
  background: transparent;
  color: #fff;
}
.ow-nav.on-light {
  top: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

/* ── Nav inner: left | logo | right ─────────────────── */
.ow-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.ow-nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ow-nav-logo {
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}
.ow-wm-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: #faf9f7;
  line-height: 1;
}
.ow-nav.on-light .ow-wm-text {
  color: #8b261e;
}
.ow-nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ow-nav-link {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: inherit;
  opacity: 0.85;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.ow-nav-link:hover { opacity: 1; }

/* ── CTA pill ─────────────────────────────────────────── */
.ow-pill {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.12s ease;
}
.ow-pill:active { transform: scale(0.97); }
.ow-pill-ext { background: var(--crimson); color: #fff; }
.ow-pill-ext:hover { filter: brightness(1.06); }

/* ── Burger ───────────────────────────────────────────── */
.ow-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
}
.ow-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
}

/* ── Mobile slide-down menu ───────────────────────────── */
.ow-mobile-menu {
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  z-index: 95;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 10px 24px 20px;
}
.ow-mobile-menu[hidden] { display: none; }
.ow-mobile-menu .ow-nav-link {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  opacity: 1;
}
.ow-mobile-menu .ow-nav-link:last-child { border-bottom: none; }

/* ── Nav responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .ow-nav-left { display: none; }
  .ow-burger { display: flex; }
}

/* ─────────────────────────────────────────────────────
   Phase 3 — Hero (dark full-screen, product mosaic)
───────────────────────────────────────────────────── */

.ow-hero-ed {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  overflow: hidden;
}

/* 5×3 mosaic grid */
.ow-hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  opacity: 0.22;
}
.ow-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.7);
}

/* Radial veil — centres lighter so content reads over dark edges */
.ow-hero-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 50% 45%,
    rgba(11,14,22,0.35) 0%,
    rgba(11,14,22,0.82) 62%,
    rgba(11,14,22,0.97) 100%
  );
}

/* Scatter dots */
.ow-hero-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ow-hero-dots i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

/* Content column */
.ow-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 160px 24px 100px;
  max-width: 1080px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow: Hanken Grotesk, gulf blue, ✦ decorators */
.ow-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #93dafe;
  margin-bottom: 30px;
}
.ow-hero-eyebrow::before,
.ow-hero-eyebrow::after {
  content: "✦";
  font-size: 13px;
  color: var(--crimson);
  opacity: 0.9;
}

/* Headline */
.ow-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
  max-width: 15ch;
}
.ow-hero-title em {
  font-style: normal;
  color: #93dafe;
}

/* Sub copy */
.ow-hero-sub {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 32px auto 40px;
  max-width: 38ch;
}

/* CTA pill (larger than nav pill) */
.ow-hero-cta {
  height: 56px;
  padding: 0 36px;
  font-size: 16px;
  background: #8b261e;
  color: #fff;
  box-shadow: 0 10px 34px rgba(139,38,30,0.28);
}
.ow-hero-cta:hover { filter: brightness(1.06); }

/* Steps tagline */
.ow-hero-steps {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.58);
}
.ow-hero-step-arrow { color: #8b261e; }

/* Small note */
.ow-hero-note {
  margin-top: 14px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.44);
}
.ow-hero-note a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.ow-hero-note a:hover { color: rgba(255,255,255,0.7); }

/* Search bar adapted for dark hero */
.ow-hero-search {
  margin-top: 48px;
  width: 100%;
  max-width: 560px;
}
.ow-hero-search .search-input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.ow-hero-search .search-input::placeholder { color: rgba(255,255,255,0.35); }
.ow-hero-search .search-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  outline: none;
}
.ow-hero-search .search-icon { color: rgba(255,255,255,0.45); }
.ow-hero-search .search-clear { color: rgba(255,255,255,0.45); }

/* Collapsed hero when search is active */
.ow-hero-ed.hero--search-active {
  min-height: 0;
}
.ow-hero-ed.hero--search-active .ow-hero-bg,
.ow-hero-ed.hero--search-active .ow-hero-dots {
  display: none;
}
.ow-hero-ed.hero--search-active .ow-hero-inner {
  padding: 80px 24px 32px;
}
.ow-hero-ed.hero--search-active .ow-hero-eyebrow,
.ow-hero-ed.hero--search-active .ow-hero-title,
.ow-hero-ed.hero--search-active .ow-hero-sub,
.ow-hero-ed.hero--search-active .ow-hero-cta,
.ow-hero-ed.hero--search-active .ow-hero-steps,
.ow-hero-ed.hero--search-active .ow-hero-note {
  display: none;
}

/* Hero responsive */
@media (max-width: 960px) {
  .ow-hero-inner { padding: 140px 24px 80px; }
  .ow-hero-bg { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(5, 1fr); }
  .ow-hero-search { max-width: 100%; }
}
@media (max-width: 540px) {
  .ow-hero-inner { padding: 120px 20px 70px; }
  .ow-hero-bg { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(8, 1fr); }
}

/* ─────────────────────────────────────────────────────
   Phase 4 — Explore Brands
───────────────────────────────────────────────────── */

/* Generic editorial section */
.ow-section {
  padding: clamp(48px, 6vh, 80px) 0;
  position: relative;
  background: #fff;
}

#s-collections {
  padding: clamp(64px, 8vh, 96px) 0;
}

/* Two-column header: headline left, lead right */
.ow-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* Eyebrow + action link on same row */
.ow-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

/* Type utilities */
.ow-serif-2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #0f0f0f;
  margin: 0;
}

.ow-eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.ow-lead {
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--soft);
  margin: 0;
}

.ow-textlink {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0f0f0f;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 0 3px;
  border-bottom: 1.5px solid var(--crimson);
  transition: color 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.ow-textlink:hover { color: var(--crimson); }

/* Brand section header */
.ow-brands-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ow-brands-title-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ow-eyebrow--red {
  color: var(--crimson);
}

.ow-textlink--subtle {
  border-bottom-color: #d4c9c5;
  font-weight: 500;
}
.ow-textlink--subtle:hover { color: var(--crimson); border-bottom-color: var(--crimson); }

/* Brand grid — 4-col uniform */
.ow-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ow-brand-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.ow-brand-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s ease;
}
.ow-brand-tile:hover img { transform: scale(1.04); }

/* Corner vignette from bottom-left */
.ow-brand-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 75%);
  pointer-events: none;
  z-index: 1;
}

/* Brand wordmark label */
.ow-brand-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px 20px;
  z-index: 2;
}

.ow-brand-wordmark {
  color: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 1vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

/* Trust stats footer */
.ow-brand-trust {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
}

.ow-brand-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ow-brand-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  color: #0f0f0f;
}

.ow-brand-stat-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.ow-brand-stat-divider {
  width: 1px;
  height: 52px;
  background: var(--line);
  flex-shrink: 0;
}

/* Brand grid responsive */
@media (max-width: 960px) {
  .ow-brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ow-brands-header { gap: 20px; margin-bottom: 24px; }
  .ow-brand-trust { gap: 24px; padding-top: 28px; }
}
@media (max-width: 540px) {
  .ow-brand-grid { gap: 8px; }
  .ow-brands-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ow-brand-trust { flex-wrap: wrap; gap: 20px; }
  .ow-brand-stat-divider { display: none; }
}

/* ─────────────────────────────────────────────────────
   Phase 5 — Editor's Picks + Featured Edit rail
───────────────────────────────────────────────────── */

/* Cream section variant */
.ow-section-cream { background: var(--cream); }

/* ── Editor's Picks grid ─────────────────────────── */
/* Section heading — centered serif title */
.ow-picks-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #0f0f0f;
  text-align: center;
  margin: 0 0 40px;
}

.ow-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: calc((100vh - 70px - 96px - 60px) * 0.9);
  min-height: 396px;
  max-height: 648px;
}

.ow-pick-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--cream);
  cursor: pointer;
}

.ow-pick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s ease;
}
.ow-pick-card:hover img { transform: scale(1.04); }

/* Editorial overlay — large serif title + CTA */
.ow-pick-editorial {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 28px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ow-pick-editorial-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
}

.ow-pick-editorial-cta {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.01em;
}


/* ── The Edit — product rail ─────────────────────── */
.ow-fedit-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.ow-fedit-anchor {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.ow-fedit-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1.0;
  color: #1a1412;
  margin: 0;
}

.ow-fedit-desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #7a6560;
  max-width: 24ch;
}

.ow-fedit-cta {
  margin-top: 8px;
}

.ow-fedit-rail-outer {
  flex: 1;
  min-width: 0;
  position: relative;
}

.ow-fedit-arrows {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.ow-fedit-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d4c9c5;
  background: transparent;
  color: #1a1412;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
  line-height: 1;
}
.ow-fedit-btn:hover {
  background: #1a1412;
  border-color: #1a1412;
  color: #faf9f7;
}
.ow-fedit-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.ow-fedit-btn:disabled:hover {
  background: transparent;
  border-color: #d4c9c5;
  color: #1a1412;
}

.ow-fedit-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.ow-fedit-rail::-webkit-scrollbar { display: none; }

.ow-fedit-card {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ow-fedit-img {
  aspect-ratio: 3 / 4;
  background: #f0ebe4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.ow-fedit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.ow-fedit-card:hover .ow-fedit-img img {
  transform: scale(1.05);
}

.ow-fedit-meta {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ow-fedit-brand {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8580;
}

.ow-fedit-name {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  color: #1a1412;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ow-fedit-price {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a1412;
}

/* skeleton loading state */
.ow-fedit-skeleton .ow-fedit-img,
.ow-fedit-skeleton {
  aspect-ratio: 3 / 4;
  background: linear-gradient(90deg, #ece6df 25%, #f5f1ec 50%, #ece6df 75%);
  background-size: 200% 100%;
  animation: fedit-shimmer 1.4s ease infinite;
  border-radius: 4px;
}
@keyframes fedit-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Phase 5 responsive */
@media (max-width: 960px) {
  .ow-picks-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .ow-pick-card { aspect-ratio: 3/4; }
  .ow-picks-heading { margin-bottom: 28px; }
  .ow-fedit-layout { gap: 32px; }
  .ow-fedit-anchor { width: 180px; }
}

@media (max-width: 680px) {
  .ow-fedit-layout { flex-direction: column; gap: 28px; }
  .ow-fedit-anchor { width: 100%; flex-direction: row; align-items: flex-end; flex-wrap: wrap; gap: 12px; }
  .ow-fedit-heading { font-size: 48px; }
  .ow-fedit-desc { display: none; }
  .ow-fedit-card { width: 160px; }
}

@media (max-width: 480px) {
  .ow-picks-grid { grid-template-columns: 1fr; height: auto; }
  .ow-pick-card { aspect-ratio: 3/4; }
  .ow-fedit-card { width: 140px; }
}

/* ─────────────────────────────────────────────────────
   Phase 6 — Marketing sections
───────────────────────────────────────────────────── */

/* ── Collections grid ─────────────────────────────── */
.ow-coll-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.ow-coll-row-top {
  display: flex;
  gap: 24px;
  height: clamp(400px, 46vw, 600px);
}

.ow-coll-card--large {
  flex: 0 0 62%;
}

.ow-coll-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.ow-coll-col-right .ow-coll-card {
  flex: 1;
  min-height: 0;
}

.ow-coll-card--wide {
  height: clamp(260px, 30vw, 400px);
}

.ow-coll-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.ow-coll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.ow-coll-card:hover img { transform: scale(1.04); }

.ow-coll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 65%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  gap: 12px;
}

.ow-coll-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ow-coll-eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.ow-coll-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  color: #fff;
  line-height: 1.1;
}

.ow-coll-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

/* ── WhatsApp + Safari sections ───────────────────── */
.ow-wa-section {
  background: var(--cream, #faf9f7);
  padding: clamp(80px, 10vw, 140px) 0;
}

.ow-wa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ow-wa-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #1a1c1b;
  margin: 16px 0 20px;
  max-width: 14ch;
}

.ow-wa-headline em { font-style: italic; }

.ow-wa-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: #57423f;
  max-width: 38ch;
  margin-bottom: 32px;
}

.ow-wa-cta {
  display: inline-flex;
  align-items: center;
  background: #8b261e;
  color: #fff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 15px;
  height: 48px;
  padding: 0 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: filter 0.15s;
}
.ow-wa-cta:hover { filter: brightness(1.08); }

.ow-wa-mockup {
  display: flex;
  justify-content: center;
}

.ow-wa-mockup img {
  width: 100%;
  max-width: 300px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  transform: rotate(-6deg);
  display: block;
}

/* ── Mobile / App section ─────────────────────────── */
.ow-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ow-app-screens {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ow-app-screens img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  display: block;
}

.ow-app-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0f0f0f;
  margin: 16px 0 18px;
  max-width: 16ch;
}
.ow-app-headline em { font-style: italic; }

.ow-app-sub {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--soft);
  max-width: 38ch;
  margin-bottom: 36px;
}

.ow-app-cta {
  display: inline-flex;
  align-items: center;
  background: #0f0f0f;
  color: #fff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 15px;
  height: 48px;
  padding: 0 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.ow-app-cta:hover { opacity: 0.82; }

/* ── For Brands / For Retailers ───────────────────── */
.ow-retailers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.ow-retailers-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ow-retailers-stat {
  background: var(--cream);
  border-radius: 6px;
  padding: 28px 24px;
}

.ow-retailers-stat-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #0f0f0f;
  line-height: 1;
}

.ow-retailers-stat-label {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: var(--soft);
  margin-top: 6px;
}

.ow-retailers-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0f0f0f;
  margin: 16px 0 18px;
  max-width: 16ch;
}

.ow-retailers-sub {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--soft);
  max-width: 40ch;
  margin-bottom: 32px;
}

.ow-retailers-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ow-retailers-perk {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: #0f0f0f;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ow-retailers-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.ow-retailers-cta {
  display: inline-flex;
  align-items: center;
  background: #8b261e;
  color: #fff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 15px;
  height: 48px;
  padding: 0 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: filter 0.15s;
}
.ow-retailers-cta:hover { filter: brightness(1.06); }

/* ── Get the App CTA card ─────────────────────────── */
.ow-section-cta {
  background: #fff;
  padding: clamp(32px, 4.8vh, 58px) 0;
}

.ow-cta-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: clamp(64px, 8.5vw, 108px) 40px;
  background: #0c0f1a;
}

.ow-cta-card-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/figma/de035f2e5284915dc2c97d6e05698fac.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.22;
  filter: saturate(0.4);
}

.ow-cta-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(12,15,26,0.45) 0%,
    rgba(12,15,26,0.72) 50%,
    rgba(12,15,26,0.92) 100%);
}

.ow-cta-card-inner {
  position: relative;
  z-index: 1;
}

/* Ornament: thin crimson rule above label */
.ow-cta-ornament {
  width: 32px;
  height: 1px;
  background: rgba(139, 38, 30, 0.9);
  margin: 0 auto 20px;
}

/* Label above headline */
.ow-cta-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 28px;
}

.ow-cta-card-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 24px;
}
.ow-cta-card-headline em {
  font-style: italic;
}

.ow-cta-card-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.46);
  max-width: 38ch;
  margin: 0 auto 48px;
}

.ow-cta-card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* App-store style buttons */
.ow-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.12s ease;
  white-space: nowrap;
}
.ow-store-btn:active { transform: scale(0.97); }

.ow-store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.ow-store-btn-text small {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.ow-store-btn-text span, .ow-store-btn-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.ow-store-btn-dark {
  background: rgba(255, 255, 255, 0.96);
  color: #0f0f0f;
}
.ow-store-btn-dark:hover { filter: brightness(0.94); }

.ow-store-btn-light {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.ow-store-btn-light:hover { background: rgba(255, 255, 255, 0.13); }

@media (max-width: 540px) {
  .ow-cta-card { border-radius: 12px; padding: 56px 24px; }
  .ow-cta-card-actions { flex-direction: column; align-items: stretch; max-width: 280px; margin-left: auto; margin-right: auto; }
  .ow-store-btn { width: 100%; }
}

/* Phase 6 responsive */
@media (max-width: 960px) {
  .ow-coll-row-top { flex-direction: column; height: auto; }
  .ow-coll-card--large { flex: none; height: 340px; }
  .ow-coll-col-right { flex-direction: row; height: 240px; }
  .ow-coll-col-right .ow-coll-card { flex: 1; min-height: 0; }
  .ow-coll-card--wide { height: 260px; }
  .ow-wa-inner,
  .ow-app-inner,
  .ow-retailers-inner { grid-template-columns: 1fr; gap: 48px; }
  .ow-wa-mockup { order: -1; }
  .ow-wa-mockup img { max-width: 220px; }
  .ow-app-screens img:first-child { margin-bottom: 20px; }
  .ow-retailers-stats { order: -1; }
}

@media (max-width: 540px) {
  .ow-coll-row-top { gap: 12px; }
  .ow-coll-col-right { flex-direction: column; height: auto; gap: 12px; }
  .ow-coll-col-right .ow-coll-card { flex: none; height: 240px; }
  .ow-coll-grid { gap: 12px; }
  .ow-coll-overlay { padding: 20px; }
  .ow-retailers-stats { grid-template-columns: 1fr 1fr; }
  .ow-avail-chips { gap: 8px; }
}

/* ── Phase 7: Floating elements ──────────────────────── */

.ow-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.32), 0 2px 8px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  opacity: 0;
  transform: scale(0.8) translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.2s ease;
  pointer-events: none;
}

.ow-wa-fab.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.ow-wa-fab:hover {
  filter: brightness(1.08);
  transform: scale(1.06) translateY(0);
}

.ow-wa-fab:active { transform: scale(0.96) translateY(0); }

.ow-cta-pill-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ow-cta-pill-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ow-cta-pill-float-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--crimson);
  color: #fff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(139, 38, 30, 0.32), 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: filter 0.2s ease, transform 0.12s ease;
}

.ow-cta-pill-float-link:hover { filter: brightness(1.06); }
.ow-cta-pill-float-link:active { transform: scale(0.97); }

@media (max-width: 960px) {
  .ow-cta-pill-float {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    bottom: 24px;
  }
  .ow-cta-pill-float.visible {
    transform: translateX(-50%) translateY(0);
  }
  .ow-wa-fab { bottom: 88px; right: 20px; }
}

/* ═══════════════════════════════════════════════════
   § Use Oula wherever you are — #s-channels
═══════════════════════════════════════════════════ */

#s-channels {
  padding: clamp(32px, 4.8vh, 58px) 0;
}

.ow-ch-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.ow-ch-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #1a1c1b;
  margin: 14px 0 16px;
}
.ow-ch-headline em {
  font-style: italic;
  font-weight: 400;
}

.ow-ch-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  color: #57423f;
  max-width: 42ch;
  margin: 0;
}

/* ── Platform rows ─────────────────────────────── */
.ow-ch-platforms {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}

.ow-ch-platform {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line, #E6E2DC);
}
.ow-ch-platform:first-child {
  border-top: 1px solid var(--line, #E6E2DC);
}

.ow-ch-platform-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ow-ch-platform-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.ow-ch-platform-name {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: #1a1c1b;
  line-height: 1.2;
}

.ow-ch-platform-desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  color: #57423f;
  line-height: 1.4;
}

.ow-ch-platform-btn {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: #8b261e;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(139, 38, 30, 0.28);
  border-radius: 3px;
  padding: 5px 12px;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ow-ch-platform-btn:hover {
  background: #8b261e;
  color: #fff;
  border-color: #8b261e;
}

/* ── Testimonial cards (right column) ─────────── */
.ow-ch-right {
  align-self: center;
}

.ow-ch-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ow-tcard {
  background: #fff;
  border: 1px solid var(--line, #E6E2DC);
  border-radius: 4px;
  padding: 16px 16px 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.ow-tcard.ow-tcard--in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.ow-tcard-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.ow-tcard-star {
  color: #8b261e;
  font-size: 10px;
  line-height: 1;
}

.ow-tcard-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1c1b;
  margin: 0 0 8px;
}

.ow-tcard-author {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #57423f;
  letter-spacing: 0.01em;
  display: block;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 960px) {
  .ow-ch-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ow-ch-testimonials {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .ow-ch-testimonials {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   § Save Your Edit — #s-save-edit
═══════════════════════════════════════════════════ */

.ow-save-hd {
  text-align: center;
  margin-bottom: 56px;
}

.ow-save-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #0f0f0f;
  margin: 0 0 16px;
}

.ow-save-headline em {
  font-style: italic;
}

.ow-save-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--soft);
  line-height: 1.55;
  margin: 0;
}

/* ── Polaroid grid ───────────────────────────────── */
.ow-save-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 20px 12px 28px;
  align-items: center;
}

/* Alternating rotations */
.ow-save-grid .ow-save-card:nth-child(1) { transform: rotate(-2.2deg); }
.ow-save-grid .ow-save-card:nth-child(2) { transform: rotate(1.4deg); }
.ow-save-grid .ow-save-card:nth-child(3) { transform: rotate(-1deg); }
.ow-save-grid .ow-save-card:nth-child(4) { transform: rotate(2.4deg); }

/* ── Polaroid card ───────────────────────────────── */
.ow-save-card {
  background: #fff;
  border: none;
  padding: 10px 10px 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13), 0 1px 5px rgba(0,0,0,0.07);
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  will-change: transform;
}

.ow-save-card:hover {
  transform: rotate(0deg) translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.07);
  z-index: 2;
}

/* ── 4-image editorial layout ────────────────────── */
/* Top: 1 hero spanning full width. Bottom: 3 strip thumbnails. */
.ow-save-sheet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 3fr 1.1fr;
  gap: 3px;
  background: #0f0f0f;
  aspect-ratio: 1 / 1.05;
}

.ow-save-sheet img:first-child {
  grid-column: 1 / -1;
}

.ow-save-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(1) contrast(1.08);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.ow-save-card:hover .ow-save-sheet img {
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.14);
}

/* ── Polaroid label ──────────────────────────────── */
.ow-save-label {
  padding: 14px 6px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ow-save-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: #1a1c1b;
  line-height: 1.2;
}

.ow-save-count {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #57423f;
}

/* Alert: crimson count + faint top rule */
.ow-save-card--alert .ow-save-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(139,38,30,0.6);
  margin: 0 auto 6px;
}

.ow-save-card--alert .ow-save-count {
  color: #8b261e;
}

/* ── Footer CTA ──────────────────────────────────── */
.ow-save-footer {
  text-align: center;
  margin-top: 44px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .ow-save-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 16px 8px 24px;
  }
  .ow-save-grid .ow-save-card:nth-child(1) { transform: rotate(-1.8deg); }
  .ow-save-grid .ow-save-card:nth-child(2) { transform: rotate(1.2deg); }
  .ow-save-grid .ow-save-card:nth-child(3) { transform: rotate(-1.4deg); }
  .ow-save-grid .ow-save-card:nth-child(4) { transform: rotate(1.8deg); }
}

@media (max-width: 540px) {
  .ow-save-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 12px 4px 20px;
  }
  .ow-save-hd { margin-bottom: 40px; }
}


/* ═══════════════════════════════════════════════════
   § FOR BRANDS
═══════════════════════════════════════════════════ */
.ow-section-brands {
  background: #1a1c1b;
  padding: clamp(24px, 3vw, 48px);
}

.ow-brands-inner {
  display: grid;
  grid-template-columns: 42fr 58fr;
  grid-template-rows: minmax(clamp(300px, 32vw, 440px), auto);
  max-width: 1280px;
  margin: 0 auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.ow-brands-img-col {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.ow-brands-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ow-brands-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 48px);
}

.ow-brands-eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.38);
  margin: 0 0 24px;
}

.ow-brands-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #faf9f7;
  margin: 0 0 20px;
}

.ow-brands-headline em {
  font-style: italic;
}

.ow-brands-body {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: rgba(250, 249, 247, 0.5);
  max-width: 42ch;
  margin: 0 0 36px;
}

.ow-brands-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #8b261e;
  color: #faf9f7;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.ow-brands-cta:hover {
  background: #6b0d0a;
}

@media (max-width: 767px) {
  .ow-brands-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ow-brands-img-col {
    height: 280px;
  }
  .ow-brands-text-col {
    padding: 28px 24px 36px;
  }
}
