/* =========================================================
   JUST THE TWO OF US — EDITORIAL POLISH v12
   Blush Pink + Powder Blue + Warm Ivory Cinematic Archive
   Desktop + portrait + landscape built together
========================================================= */

:root {
  --ivory: #fbf8f6;
  --white: #ffffff;
  --pink: #e8a9b8;
  --pink-soft: #f8e8ec;
  --pink-deep: #b66f82;
  --blue: #a9cee5;
  --blue-soft: #edf6fb;
  --blue-deep: #678ca4;
  --ink: #2b2527;
  --text: #6f6769;
  --muted: #958c8f;
  --border: rgba(64, 55, 58, 0.10);
  --shadow: 0 22px 60px rgba(66, 55, 60, 0.09);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --script: "Great Vibes", cursive;
  --transition: 220ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body);
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 86px;
  padding: 14px clamp(28px, 4vw, 70px);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 24px;
  color: #514c4e;
  background: rgba(251,248,246,.94);
  border-bottom: 1px solid rgba(74,65,68,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(132px, 10vw, 180px);
  max-height: 66px;
  object-fit: contain;
}

.desktop-nav {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.25vw, 24px);
  min-width: 0;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: #5d5759;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0; bottom: 2px; left: 0;
  height: 1px;
  background: linear-gradient(90deg,var(--pink),var(--blue));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icon,
.menu-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #625c5e;
  background: transparent;
  border: 1px solid rgba(70,60,64,.10);
  border-radius: 50%;
  cursor: pointer;
}

.header-icon svg { width: 19px; height: 19px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }

.menu-toggle { display: none; }
.menu-toggle span {
  width: 21px; height: 1.5px;
  margin: 2.5px auto;
  background: currentColor;
  transition: opacity var(--transition), transform var(--transition);
}
.menu-toggle.is-active span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2){ opacity:0; }
.menu-toggle.is-active span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* Search */
.archive-search {
  position: fixed;
  top: 86px;
  right: 0;
  left: 0;
  z-index: 990;
  padding: 12px clamp(28px,5vw,78px);
  background: rgba(251,248,246,.98);
  border-bottom: 1px solid var(--border);
}

.archive-search-inner {
  width: min(720px,100%);
  margin-left: auto;
}

.archive-search label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-deep);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.archive-search-row { display:flex; gap:8px; }
.archive-search input {
  min-width: 0; flex:1;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
}
.archive-search button {
  padding: 0 17px;
  color: #fff;
  background: var(--blue-deep);
  border: 0;
  border-radius: 10px;
  cursor:pointer;
}
.archive-search p { margin:6px 0 0; color:var(--muted); font-size:.68rem; }
.archive-search-hit { outline:2px solid rgba(232,169,184,.8); outline-offset:5px; border-radius:3px; }

/* Mobile menu */
.mobile-menu { display:none; }
.mobile-menu.is-open {
  position: fixed;
  inset: 0;
  z-index: 950;
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  padding: 12px;
  background: rgba(31,27,29,.48);
  overflow:hidden;
}

.mobile-menu-panel {
  width: min(330px, 72vw);
  max-height: calc(100dvh - 24px);
  padding: 72px 24px 18px;
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  background: linear-gradient(160deg,#fffdfb,#f8eef1 55%,#edf6fb);
  border-radius: 18px;
  box-shadow: -18px 0 50px rgba(48,41,44,.16);
  scrollbar-width: thin;
}

.mobile-menu-panel a {
  display:block;
  padding: 10px 0;
  color:#544d50;
  border-bottom:1px solid rgba(70,60,64,.09);
  font-family:var(--display);
  font-size:1.08rem;
  line-height:1.2;
}

/* =========================================================
   HERO
========================================================= */

.fulfill-hero {
  position:relative;
  height:560px;
  min-height:560px;
  overflow:hidden;
  padding-top:86px;
  background:#faf7f5;
}

.hero-art {
  position:absolute;
  top:86px; right:0; bottom:0;
  width:68%;
  background-image:url("../assets/images/fulfill-banner.jpg");
  background-repeat:no-repeat;
  background-position:center 48%;
  background-size:cover;
}

.hero-wash {
  position:absolute;
  inset:86px 0 0;
  background:
    linear-gradient(90deg,#fbf8f6 0%,rgba(251,248,246,.99) 27%,rgba(251,248,246,.88) 39%,rgba(251,248,246,.22) 56%,rgba(251,248,246,.02) 72%),
    linear-gradient(0deg,rgba(251,248,246,.15),transparent 34%);
}

.hero-inner {
  position:relative;
  z-index:3;
  width:min(1440px,100%);
  min-height:calc(560px - 86px);
  margin:auto;
  padding:26px clamp(30px,5.5vw,84px) 44px;
  display:flex;
  flex-direction:column;
}

.breadcrumb {
  display:flex;
  align-items:center;
  gap:10px;
  color:#8c8386;
  font-size:.64rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.breadcrumb span:last-child { color:var(--pink-deep); }

.hero-copy {
  width:min(510px,42%);
  margin:auto 0;
  padding:20px 0;
}

.eyebrow,.section-kicker {
  margin:0 0 12px;
  color:var(--blue-deep);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.17em;
  text-transform:uppercase;
}

.hero-copy h1 {
  margin:0 0 22px;
  color:#2e282a;
  font-family:var(--display);
  font-weight:500;
  line-height:.83;
  letter-spacing:-.045em;
}
.hero-copy h1>span { display:block; font-size:clamp(3.5rem,5.3vw,5.8rem); }
.hero-copy h1>strong { display:block; color:var(--pink-deep); font-size:clamp(4.4rem,6.5vw,6.8rem); font-weight:500; }
.hero-copy h1 em { color:var(--pink); font-family:var(--script); font-size:.66em; font-weight:400; }

.hero-subtitle {
  max-width:390px;
  margin:0 0 23px;
  color:#625a5d;
  font-family:var(--display);
  font-size:clamp(1.1rem,1.5vw,1.4rem);
  font-style:italic;
  line-height:1.42;
}

.hero-actions { display:flex; align-items:center; gap:22px; }

.primary-button,.secondary-button,.netflix-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 23px;
  border-radius:999px;
  font-size:.66rem;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
  transition:transform var(--transition),box-shadow var(--transition);
}
.primary-button { color:#fff; background:linear-gradient(135deg,#db91a5,#efb6c4); box-shadow:0 12px 28px rgba(182,111,130,.20); }
.primary-button:hover,.secondary-button:hover,.netflix-button:hover{ transform:translateY(-2px); }
.text-link { color:#777073; font-size:.67rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase; }

/* =========================================================
   SECTIONS / TYPOGRAPHY
========================================================= */

.section { padding:84px clamp(28px,5vw,78px); }
.soft-section { background:linear-gradient(135deg,#fffaf9,#f7fbfd); }
.section-inner { width:min(1320px,100%); margin:auto; }

.section-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:36px;
}

.section-heading h2,.watch-copy h2,.closing-inner h2 {
  margin:0;
  color:#302a2c;
  font-family:var(--display);
  font-size:clamp(2.5rem,3.6vw,4rem);
  font-weight:500;
  letter-spacing:-.03em;
  line-height:1;
}

.section-heading>p {
  max-width:430px;
  margin:0;
  color:var(--text);
  font-size:.86rem;
  line-height:1.75;
}

/* Watch Fulfill */
.watch-grid {
  display:grid;
  grid-template-columns:minmax(320px,.85fr) minmax(470px,1.25fr);
  gap:clamp(52px,6vw,90px);
  align-items:center;
}
.watch-copy { max-width:490px; }
.watch-copy h2 span { color:var(--pink-deep); font-family:var(--script); font-size:.8em; font-weight:400; }
.watch-copy .lead { color:#5c5558; font-family:var(--display); font-size:1.42rem; line-height:1.42; }
.watch-copy p { color:var(--text); font-size:.9rem; line-height:1.8; }
.netflix-button { margin-top:17px; color:#fff; background:#ad2430; box-shadow:0 12px 28px rgba(139,24,33,.17); }

.netflix-feature { position:relative; min-height:340px; overflow:hidden; border-radius:22px; box-shadow:var(--shadow); }
.netflix-feature img { width:100%; height:340px; object-fit:cover; }
.netflix-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(23,20,21,.82),rgba(23,20,21,.12) 62%,transparent); }
.netflix-feature-copy { position:absolute; right:30px; bottom:28px; left:30px; color:#fff; }
.platform-label { font-size:.62rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.netflix-feature-copy h3 { margin:5px 0 3px; font-family:var(--display); font-size:2.35rem; font-weight:500; }
.netflix-feature-copy p { margin:0 0 13px; color:rgba(255,255,255,.78); font-size:.73rem; }
.watch-pill { display:inline-flex; padding:8px 12px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.24); border-radius:999px; font-size:.60rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }

/* Fulfill Archive players */
.story-player-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.story-player-card { overflow:hidden; background:#fff; border:1px solid var(--border); border-radius:17px; box-shadow:0 12px 34px rgba(61,53,57,.06); }
.story-video-shell { aspect-ratio:16/9; overflow:hidden; background:#111; }
.story-video-shell iframe { width:100%; height:100%; border:0; display:block; }
.story-player-copy { padding:20px 21px 22px; }
.story-player-copy>span { color:var(--blue-deep); font-size:.62rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.story-player-copy h3 { margin:5px 0 8px; color:#3f383b; font-family:var(--display); font-size:1.38rem; font-weight:500; line-height:1.15; }
.story-player-copy p { margin:0 0 12px; color:var(--text); font-size:.75rem; line-height:1.6; }
.story-player-copy a { color:var(--pink-deep); font-size:.61rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }

/* Fulfill collection */
.archive-collection-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:0;
  align-items:start;
}
.compact-heading { margin-bottom:26px; }
.playlist-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }

.playlist-card {
  display:grid;
  grid-template-columns:128px minmax(0,1fr);
  gap:14px;
  align-items:center;
  min-height:102px;
  padding:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  transition:transform var(--transition),box-shadow var(--transition);
}
.playlist-card:hover { transform:translateY(-3px); box-shadow:0 14px 34px rgba(64,55,59,.08); }
.playlist-card img { width:128px; height:80px; object-fit:cover; border-radius:8px; }
.playlist-card span { color:var(--blue-deep); font-size:.58rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.playlist-card h3 { margin:3px 0 5px; color:#413a3d; font-family:var(--display); font-size:1.1rem; font-weight:500; line-height:1.1; }
.playlist-card p { margin:0; color:var(--text); font-size:.65rem; line-height:1.5; }

/* featured first memory gives hierarchy */
.playlist-card.featured-memory {
  grid-column:1/-1;
  grid-template-columns:190px minmax(0,1fr);
  min-height:132px;
  background:linear-gradient(135deg,#fff,#fdf4f6);
}
.playlist-card.featured-memory img { width:190px; height:108px; }
.playlist-card.featured-memory h3 { font-size:1.35rem; }
.playlist-card.featured-memory p { font-size:.72rem; }


/* Closing */
.closing-section { padding:94px 28px; text-align:center; background:linear-gradient(135deg,#f8e8ec,#fbf8f6 47%,#eaf5fb); }
.closing-inner { width:min(760px,100%); margin:auto; }
.closing-inner h2 { margin-bottom:18px; }
.closing-inner>p:not(.section-kicker) { max-width:640px; margin:0 auto 26px; color:var(--text); font-size:.88rem; line-height:1.8; }
.secondary-button { color:#fff; background:#8cb9d3; box-shadow:0 12px 28px rgba(93,147,177,.16); }

/* Footer */
.site-footer { padding:0 clamp(28px,5vw,78px); background:#f4f7f9; border-top:1px solid rgba(74,65,68,.08); }
.footer-inner {
  width:min(1440px,100%);
  min-height:132px;
  margin:auto;
  display:grid;
  grid-template-columns:100px 1fr 42px;
  align-items:center;
  gap:25px;
}
.footer-brand img { width:92px; }
.footer-copy { text-align:center; }
.footer-main { margin:0; color:#666064; font-size:.73rem; font-weight:600; }
.footer-script { margin:4px 0 0; color:var(--blue-deep); font-family:var(--script); font-size:1.35rem; line-height:1.1; }
.footer-copyline { margin:5px 0 0; color:#8a8285; font-size:.62rem; }
.back-to-top { display:grid; place-items:center; width:36px; height:36px; color:#6c8da2; background:#fff; border-radius:50%; box-shadow:0 8px 20px rgba(67,85,97,.08); }

/* =========================================================
   DARK MODE
========================================================= */

body.dark-theme { color:#f2edef; background:#1b1b1f; }
.dark-theme .site-header,.dark-theme .archive-search { color:#fff; background:rgba(24,24,28,.96); border-color:rgba(255,255,255,.08); }
.dark-theme .nav-link,.dark-theme .header-icon,.dark-theme .menu-toggle { color:rgba(255,255,255,.88); }
.dark-theme .archive-search input { color:#f4eef0; background:#292a2f; border-color:rgba(255,255,255,.08); }
.dark-theme .fulfill-hero { background:#202126; }
.dark-theme .hero-wash { background:linear-gradient(90deg,#202126 0%,rgba(32,33,38,.98) 34%,rgba(32,33,38,.76) 48%,rgba(32,33,38,.06) 70%); }
.dark-theme .hero-copy h1,.dark-theme .section-heading h2,.dark-theme .watch-copy h2,.dark-theme .closing-inner h2 { color:#f5eff1; }
.dark-theme .hero-subtitle,.dark-theme .watch-copy p,.dark-theme .section-heading>p,.dark-theme .story-player-copy p,.dark-theme .playlist-card p,.dark-theme .closing-inner>p:not(.section-kicker) { color:rgba(255,255,255,.66); }
.dark-theme .section { background:#202126; }
.dark-theme .soft-section { background:linear-gradient(145deg,#222227,#252a2e); }
.dark-theme .story-player-card,.dark-theme .playlist-card { background:#292a2f; border-color:rgba(255,255,255,.07); }
.dark-theme .playlist-card.featured-memory { background:linear-gradient(135deg,#292a2f,#30282d); }
.dark-theme .story-player-copy h3,.dark-theme .playlist-card h3 { color:#f4eef0; }
.dark-theme .closing-section { background:linear-gradient(145deg,#2b2428,#202126 52%,#222b31); }
.dark-theme .site-footer { background:#1b1c20; border-color:rgba(255,255,255,.07); }
.dark-theme .footer-main,.dark-theme .footer-copyline { color:rgba(255,255,255,.62); }
.dark-theme .footer-script { color:#a9cee5; }
.dark-theme .mobile-menu-panel { background:linear-gradient(160deg,#242428,#30282c 55%,#252e33); }
.dark-theme .mobile-menu-panel a { color:#f4eef0; border-color:rgba(255,255,255,.08); }

/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width:1100px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:grid; }
  .site-header { min-height:80px; padding:13px 24px; }
  .brand-logo { width:118px; max-height:58px; }
  .archive-search { top:80px; padding-inline:24px; }

  .fulfill-hero { height:520px; min-height:520px; padding-top:80px; }
  .hero-art { top:80px; width:64%; }
  .hero-wash { inset:80px 0 0; }
  .hero-inner { min-height:calc(520px - 80px); padding:24px 36px 40px; }
  .hero-copy { width:48%; }

  .watch-grid { grid-template-columns:.85fr 1.15fr; gap:42px; }
  .story-player-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .story-player-card:last-child { grid-column:1/-1; max-width:calc(50% - 11px); justify-self:center; width:100%; }

  .archive-collection-grid { grid-template-columns:1fr; }
}

/* =========================================================
   MOBILE PORTRAIT
========================================================= */

@media (max-width:700px) and (orientation:portrait) {
  .site-header { min-height:72px; padding:10px 17px; }
  .brand-logo { width:92px; max-height:52px; }
  .header-actions { gap:5px; }
  .header-icon,.menu-toggle { width:34px; height:34px; }
  .archive-search { top:72px; padding:11px 18px; }
  .archive-search-row { flex-direction:column; }
  .archive-search button { min-height:40px; }

  .mobile-menu.is-open { padding:8px; }
  .mobile-menu-panel { width:min(82vw,310px); max-height:calc(100dvh - 16px); padding:64px 22px 16px; }
  .mobile-menu-panel a { padding:9px 0; font-size:1rem; }

  .fulfill-hero { height:auto; min-height:720px; padding-top:72px; }
  .hero-art { top:72px; width:100%; background-position:center center; }
  .hero-wash { inset:72px 0 0; background:linear-gradient(to top,#fbf8f6 0%,rgba(251,248,246,.96) 42%,rgba(251,248,246,.36) 68%,rgba(251,248,246,.06) 100%); }
  .dark-theme .hero-wash { background:linear-gradient(to top,#202126 0%,rgba(32,33,38,.96) 43%,rgba(32,33,38,.38) 70%,rgba(32,33,38,.08) 100%); }

  .hero-inner { min-height:calc(720px - 72px); padding:22px 20px 42px; justify-content:flex-end; }
  .breadcrumb { position:absolute; top:22px; left:20px; }
  .hero-copy { width:100%; margin:0; padding:0; }
  .hero-copy h1>span { font-size:clamp(3.4rem,17vw,4.8rem); }
  .hero-copy h1>strong { font-size:clamp(4.2rem,21vw,6rem); }
  .hero-subtitle { max-width:340px; font-size:1.15rem; }
  .hero-actions { flex-direction:column; align-items:flex-start; gap:13px; }

  .section { padding:62px 18px; }
  .section-heading { flex-direction:column; align-items:flex-start; gap:14px; margin-bottom:28px; }
  .section-heading h2,.watch-copy h2,.closing-inner h2 { font-size:2.45rem; }
  .section-heading>p { font-size:.82rem; }

  .watch-grid { grid-template-columns:1fr; gap:30px; }
  .watch-copy .lead { font-size:1.24rem; }
  .watch-copy p { font-size:.88rem; }
  .netflix-feature,.netflix-feature img { min-height:250px; height:250px; }

  .story-player-grid { grid-template-columns:1fr; gap:16px; }
  .story-player-card:last-child { grid-column:auto; max-width:none; }
  .story-player-copy { padding:18px 19px 20px; }

  .playlist-grid { grid-template-columns:1fr; }
  .playlist-card,.playlist-card.featured-memory { grid-column:auto; grid-template-columns:112px minmax(0,1fr); min-height:100px; }
  .playlist-card img,.playlist-card.featured-memory img { width:112px; height:78px; }
  .playlist-card.featured-memory h3 { font-size:1.12rem; }
  .playlist-card.featured-memory p { font-size:.65rem; }


  .closing-section { padding:72px 20px; }
  .closing-inner>p:not(.section-kicker) { font-size:.84rem; }

  .footer-inner { min-height:154px; grid-template-columns:1fr; justify-items:center; gap:7px; padding:18px 0; }
  .footer-brand img { width:82px; }
  .back-to-top { margin-top:4px; }
}

/* =========================================================
   MOBILE / TABLET LANDSCAPE
   Explicit short-viewport system
========================================================= */

@media (max-width:1100px) and (max-height:600px) and (orientation:landscape) {
  .site-header { min-height:58px; padding:7px 18px; grid-template-columns:auto 1fr auto; }
  .brand-logo { width:74px; max-height:44px; }
  .header-actions { justify-self:end; gap:5px; }
  .header-icon,.menu-toggle { width:32px; height:32px; }
  .header-icon svg { width:17px; height:17px; }

  .archive-search { top:58px; padding:8px 18px; }
  .archive-search-inner { width:min(610px,75vw); }
  .archive-search label { font-size:.56rem; }
  .archive-search input { padding:7px 10px; font-size:.76rem; }

  .mobile-menu.is-open { padding:7px; }
  .mobile-menu-panel {
    width:min(250px,40vw);
    max-height:calc(100dvh - 14px);
    padding:44px 18px 12px;
    border-radius:13px;
  }
  .mobile-menu-panel a { padding:6px 0; font-size:.88rem; }

  .fulfill-hero { height:410px; min-height:410px; padding-top:58px; }
  .hero-art { top:58px; width:64%; background-position:center 45%; }
  .hero-wash { inset:58px 0 0; }
  .hero-inner { min-height:352px; padding:15px 28px 24px; }
  .breadcrumb { font-size:.54rem; }
  .hero-copy { width:45%; max-width:420px; padding:10px 0; }
  .eyebrow,.section-kicker { font-size:.58rem; margin-bottom:8px; }
  .hero-copy h1 { margin-bottom:12px; }
  .hero-copy h1>span { font-size:clamp(2.5rem,5.2vw,3.8rem); }
  .hero-copy h1>strong { font-size:clamp(3rem,6vw,4.5rem); }
  .hero-subtitle { max-width:320px; margin-bottom:14px; font-size:.92rem; line-height:1.32; }
  .primary-button,.secondary-button,.netflix-button { min-height:38px; padding:0 18px; font-size:.57rem; }
  .text-link { font-size:.57rem; }

  .section { padding:46px 28px; }
  .section-heading { gap:25px; margin-bottom:24px; }
  .section-heading h2,.watch-copy h2,.closing-inner h2 { font-size:clamp(2rem,3.4vw,2.7rem); }
  .section-heading>p { max-width:360px; font-size:.75rem; line-height:1.55; }

  .watch-grid { grid-template-columns:.8fr 1.2fr; gap:34px; }
  .watch-copy .lead { font-size:1.08rem; margin-block:12px; }
  .watch-copy p { font-size:.78rem; line-height:1.6; }
  .netflix-button { margin-top:10px; }
  .netflix-feature,.netflix-feature img { min-height:235px; height:235px; }
  .netflix-feature-copy { right:22px; bottom:20px; left:22px; }
  .netflix-feature-copy h3 { font-size:1.8rem; }

  .story-player-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
  .story-player-card:last-child { grid-column:auto; max-width:none; }
  .story-player-copy { padding:14px 15px 16px; }
  .story-player-copy>span { font-size:.54rem; }
  .story-player-copy h3 { font-size:1.05rem; margin-block:4px 6px; }
  .story-player-copy p { font-size:.66rem; line-height:1.45; }
  .story-player-copy a { font-size:.53rem; }

  .archive-collection-grid { grid-template-columns:minmax(0,1fr); gap:0; }
  .compact-heading { margin-bottom:18px; }
  .playlist-grid { gap:10px; }
  .playlist-card { grid-template-columns:96px minmax(0,1fr); min-height:80px; gap:10px; padding:8px; }
  .playlist-card img { width:96px; height:62px; }
  .playlist-card span { font-size:.50rem; }
  .playlist-card h3 { font-size:.92rem; }
  .playlist-card p { font-size:.56rem; line-height:1.4; }
  .playlist-card.featured-memory { grid-template-columns:130px minmax(0,1fr); min-height:98px; }
  .playlist-card.featured-memory img { width:130px; height:80px; }
  .playlist-card.featured-memory h3 { font-size:1.05rem; }
  .playlist-card.featured-memory p { font-size:.60rem; }


  .closing-section { padding:55px 28px; }
  .closing-inner>p:not(.section-kicker) { max-width:600px; margin-bottom:18px; font-size:.76rem; line-height:1.55; }

  .footer-inner { min-height:100px; grid-template-columns:80px 1fr 36px; gap:16px; }
  .footer-brand img { width:70px; }
  .footer-main { font-size:.62rem; }
  .footer-script { font-size:1.05rem; }
  .footer-copyline { font-size:.54rem; }
  .back-to-top { width:32px; height:32px; }
}

@media (max-width:900px) and (max-height:450px) and (orientation:landscape) {
  .section { padding:38px 22px; }
  .fulfill-hero { height:365px; min-height:365px; }
  .hero-inner { min-height:307px; padding-inline:22px; }
  .hero-copy h1>span { font-size:2.55rem; }
  .hero-copy h1>strong { font-size:3.2rem; }
  .hero-subtitle { font-size:.84rem; }
  .mobile-menu-panel { width:min(235px,38vw); }
}

/* =========================================================
   VERY SMALL PORTRAIT
========================================================= */

@media (max-width:430px) and (orientation:portrait) {
  .brand-logo { width:84px; }
  .hero-copy h1>span { font-size:3.15rem; }
  .hero-copy h1>strong { font-size:3.95rem; }
  .section-heading h2,.watch-copy h2,.closing-inner h2 { font-size:2.15rem; }
  .playlist-card,.playlist-card.featured-memory { grid-template-columns:96px minmax(0,1fr); gap:10px; }
  .playlist-card img,.playlist-card.featured-memory img { width:96px; height:70px; }
}


/* =========================================================
   HOMEPAGE-STYLE GLOBAL SHELL — v13
========================================================= */

body {
  padding: clamp(18px, 2.4vw, 36px);
  background:
    linear-gradient(
      135deg,
      #dcecf6 0%,
      #f3f7fa 48%,
      #f7e6eb 100%
    );
}

.site-shell {
  width: min(1540px, 100%);
  margin: 0 auto;
  overflow: hidden;

  background: var(--ivory);

  border: 1px solid rgba(72, 66, 69, 0.08);
  border-radius: 24px;

  box-shadow:
    0 22px 60px rgba(60, 70, 78, 0.10);
}

.site-header {
  position: sticky;
  top: 0;
  right: auto;
  left: auto;
}

.archive-search {
  position: sticky;
  top: 86px;
}

.fulfill-hero {
  padding-top: 0;
}

.hero-art {
  top: 0;
}

.hero-wash {
  inset: 0;
}

.hero-inner {
  min-height: 560px;
}

.archive-heading {
  display: block;
}

.archive-heading-copy {
  width: min(720px, 100%);
}

.archive-heading-copy h2 {
  margin-bottom: 15px;
}

.archive-heading-copy p {
  max-width: 650px;
  margin: 0;

  color: var(--text);

  font-size: 0.88rem;
  line-height: 1.75;
}

.archive-heading-copy em {
  font-family: var(--display);
  font-style: italic;
  color: inherit;
}

/* Remove the old oversized closing area entirely */
.closing-section {
  display: none;
}

/* =========================================================
   HOMEPAGE-STYLE FOOTER
========================================================= */

.site-footer {
  padding: 0 34px 18px;

  background: var(--ivory);

  border-top: 1px solid rgba(74,65,68,.08);
}

.footer-grid {
  position: relative;

  display: grid;
  grid-template-columns: 110px 1fr 1fr 42px;
  grid-template-rows: auto auto;

  align-items: center;

  gap: 8px 28px;

  min-height: 126px;

  padding: 18px 0 8px;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1 / 3;
}

.footer-brand img {
  width: 92px;
}

.footer-main {
  grid-column: 2;
  grid-row: 1;

  align-self: end;

  margin: 0;

  color: #656064;

  font-size: 0.72rem;
  font-weight: 600;

  text-align: center;
}

.footer-message {
  grid-column: 3;
  grid-row: 1;

  align-self: end;

  margin: 0;

  color: var(--blue-deep);

  font-family: var(--script);
  font-size: 1.35rem;

  line-height: 1;

  text-align: right;
  white-space: nowrap;
}

.footer-copyline {
  grid-column: 2 / 4;
  grid-row: 2;

  margin: 0;

  color: #8a8285;

  font-size: 0.62rem;

  text-align: center;
}

.back-to-top {
  grid-column: 4;
  grid-row: 1 / 3;

  justify-self: end;
}

/* =========================================================
   DARK MODE SHELL
========================================================= */

body.dark-theme {
  background: #090a0c;
}

.dark-theme .site-shell {
  background: #1b1b1f;

  border-color: #1b1b1f;

  box-shadow: none;
}

.dark-theme .site-footer {
  background: #1b1b1f;
}

.dark-theme .footer-main,
.dark-theme .footer-copyline {
  color: rgba(255,255,255,.62);
}

.dark-theme .footer-message {
  color: #a9cee5;
}

/* =========================================================
   TABLET SHELL
========================================================= */

@media (max-width: 1100px) {

  body {
    padding: 14px;
  }

  .site-shell {
    border-radius: 20px;
  }

  .archive-search {
    top: 80px;
  }

  .fulfill-hero {
    padding-top: 0;
  }

  .hero-art {
    top: 0;
  }

  .hero-wash {
    inset: 0;
  }

  .hero-inner {
    min-height: 520px;
  }
}

/* =========================================================
   MOBILE PORTRAIT SHELL + FOOTER
========================================================= */

@media
  (max-width: 700px)
  and (orientation: portrait) {

  body {
    padding: 0;
  }

  .site-shell {
    width: 100%;
    min-height: 100vh;

    border: 0;
    border-radius: 0;

    box-shadow: none;
  }

  .archive-search {
    top: 72px;
  }

  .hero-art {
    top: 0;
  }

  .hero-wash {
    inset: 0;
  }

  .hero-inner {
    min-height: 720px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;

    justify-items: center;

    gap: 7px;

    min-height: 0;

    padding: 20px 0;
  }

  .footer-brand,
  .footer-main,
  .footer-message,
  .footer-copyline,
  .back-to-top {
    grid-column: 1;
    grid-row: auto;

    justify-self: center;

    text-align: center;
  }

  .footer-message {
    white-space: normal;
  }
}

/* =========================================================
   MOBILE LANDSCAPE SHELL + FOOTER
========================================================= */

@media
  (max-width: 1100px)
  and (max-height: 600px)
  and (orientation: landscape) {

  body {
    padding: 7px;
  }

  .site-shell {
    border-radius: 15px;
  }

  .archive-search {
    top: 58px;
  }

  .fulfill-hero {
    padding-top: 0;
  }

  .hero-art {
    top: 0;
  }

  .hero-wash {
    inset: 0;
  }

  .hero-inner {
    min-height: 410px;
  }

  .footer-grid {
    grid-template-columns: 75px 1fr 1fr 34px;

    gap: 5px 15px;

    min-height: 92px;

    padding: 12px 0 6px;
  }

  .footer-brand img {
    width: 66px;
  }

  .footer-main {
    font-size: 0.60rem;
  }

  .footer-message {
    font-size: 1rem;
  }

  .footer-copyline {
    font-size: 0.52rem;
  }

  .back-to-top {
    width: 30px;
    height: 30px;
  }
}


/* =========================================================
   JUST THE TWO OF US v14 — FINAL VISUAL ALIGNMENT
   Hero asset + Watch Fulfill image + homepage footer
========================================================= */

/* ---------------------------------------------------------
   HERO BANNER
   Uses the existing requested repository asset.
--------------------------------------------------------- */
.hero-art {
  background-image: url("../assets/images/fulfill-banner.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

/* Desktop: preserve editorial split while showing the banner cleanly */
@media (min-width: 1101px) {
  .hero-art {
    width: 68% !important;
    background-position: center 46% !important;
  }
}

/* ---------------------------------------------------------
   WATCH FULFILL FEATURE IMAGE
   Do not crop the source image.
--------------------------------------------------------- */
.netflix-feature {
  min-height: 0 !important;
  height: auto !important;

  background: #eee8e4;
}

.netflix-feature img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;

  aspect-ratio: auto !important;

  object-fit: contain !important;
  object-position: center !important;
}

.netflix-overlay {
  pointer-events: none;
}

/* Keep overlay copy anchored without forcing image crop */
.netflix-feature-copy {
  bottom: 24px;
}

/* ---------------------------------------------------------
   FOOTER — MATCH HOMEPAGE / OOM / BAM FORMAT
   Logo left • main copy center-left • script right
   copyright centered below
--------------------------------------------------------- */

.site-footer {
  padding:
    0
    clamp(22px, 3vw, 38px)
    10px !important;

  background: var(--ivory) !important;

  border-top: 1px solid rgba(74, 65, 68, 0.08) !important;
}

.footer-grid {
  display: grid !important;

  grid-template-columns:
    110px
    minmax(250px, 1fr)
    minmax(260px, auto)
    42px !important;

  grid-template-rows:
    72px
    28px !important;

  align-items: center !important;

  column-gap: 28px !important;
  row-gap: 0 !important;

  min-height: 112px !important;

  padding:
    7px
    0
    0 !important;

  border-top: 0 !important;
}

.footer-brand {
  grid-column: 1 !important;
  grid-row: 1 !important;

  justify-self: start !important;
  align-self: center !important;
}

.footer-brand img {
  width: 82px !important;
  max-height: 64px !important;

  object-fit: contain !important;
}

.footer-main {
  grid-column: 2 !important;
  grid-row: 1 !important;

  justify-self: center !important;
  align-self: center !important;

  margin: 0 !important;

  color: #656064 !important;

  font-size: 0.72rem !important;
  font-weight: 600 !important;

  line-height: 1.35 !important;

  text-align: center !important;
}

.footer-message {
  grid-column: 3 !important;
  grid-row: 1 !important;

  justify-self: end !important;
  align-self: center !important;

  margin: 0 !important;

  color: var(--blue-deep) !important;

  font-family: var(--script) !important;
  font-size: 1.4rem !important;

  line-height: 1 !important;

  text-align: right !important;
  white-space: nowrap !important;
}

.footer-copyline {
  grid-column: 1 / 5 !important;
  grid-row: 2 !important;

  justify-self: stretch !important;

  width: 100% !important;

  margin: 0 !important;
  padding-top: 7px !important;

  color: #8a8285 !important;

  border-top:
    1px solid rgba(74, 65, 68, 0.06) !important;

  font-size: 0.61rem !important;

  line-height: 1.3 !important;

  text-align: center !important;
}

.back-to-top {
  grid-column: 4 !important;
  grid-row: 1 !important;

  justify-self: end !important;
  align-self: center !important;
}

/* Dark footer follows the same structure */
.dark-theme .site-footer {
  background: #1b1b1f !important;
}

.dark-theme .footer-main {
  color: rgba(255,255,255,.70) !important;
}

.dark-theme .footer-copyline {
  color: rgba(255,255,255,.48) !important;
  border-top-color: rgba(255,255,255,.06) !important;
}

.dark-theme .footer-message {
  color: #a9cee5 !important;
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */
@media (max-width: 1100px) {

  .netflix-feature img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .footer-grid {
    grid-template-columns:
      92px
      minmax(200px, 1fr)
      minmax(220px, auto)
      38px !important;

    column-gap: 18px !important;
  }

  .footer-brand img {
    width: 72px !important;
  }

  .footer-message {
    font-size: 1.22rem !important;
  }
}

/* ---------------------------------------------------------
   MOBILE PORTRAIT
--------------------------------------------------------- */
@media
  (max-width: 700px)
  and (orientation: portrait) {

  .hero-art {
    background-position: center center !important;
  }

  .netflix-feature {
    width: 100% !important;
  }

  .netflix-feature img {
    width: 100% !important;
    height: auto !important;

    object-fit: contain !important;
  }

  .netflix-feature-copy {
    right: 18px !important;
    bottom: 17px !important;
    left: 18px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;

    justify-items: center !important;

    gap: 8px !important;

    min-height: 0 !important;

    padding:
      16px
      0
      8px !important;
  }

  .footer-brand,
  .footer-main,
  .footer-message,
  .footer-copyline,
  .back-to-top {
    grid-column: 1 !important;
    grid-row: auto !important;

    justify-self: center !important;

    text-align: center !important;
  }

  .footer-brand img {
    width: 78px !important;
  }

  .footer-main {
    font-size: 0.68rem !important;
  }

  .footer-message {
    font-size: 1.2rem !important;

    white-space: normal !important;
  }

  .footer-copyline {
    padding-top: 8px !important;
  }
}

/* ---------------------------------------------------------
   MOBILE / TABLET LANDSCAPE
--------------------------------------------------------- */
@media
  (max-width: 1100px)
  and (max-height: 600px)
  and (orientation: landscape) {

  .hero-art {
    background-position: center 44% !important;
  }

  .netflix-feature img {
    width: 100% !important;
    height: auto !important;

    object-fit: contain !important;
  }

  .footer-grid {
    grid-template-columns:
      72px
      minmax(180px, 1fr)
      minmax(190px, auto)
      32px !important;

    grid-template-rows:
      58px
      23px !important;

    column-gap: 14px !important;

    min-height: 88px !important;

    padding-top: 5px !important;
  }

  .footer-brand img {
    width: 62px !important;
  }

  .footer-main {
    font-size: 0.58rem !important;
  }

  .footer-message {
    font-size: 0.98rem !important;
  }

  .footer-copyline {
    font-size: 0.50rem !important;
  }

  .back-to-top {
    width: 29px !important;
    height: 29px !important;
  }
}


/* =========================================================
   JUST THE TWO OF US v15 — FOOTER + WATCH FEATURE SCALE
========================================================= */

/* ---------------------------------------------------------
   WATCH FULFILL — smaller visual, no cropping
--------------------------------------------------------- */
.watch-grid {
  grid-template-columns:
    minmax(300px, 0.9fr)
    minmax(420px, 1fr) !important;

  gap: clamp(44px, 5vw, 72px) !important;
}

.netflix-feature {
  width: min(100%, 640px) !important;
  justify-self: end !important;

  min-height: 0 !important;
  height: auto !important;
}

.netflix-feature img {
  width: 100% !important;
  height: auto !important;

  max-height: 460px !important;

  object-fit: contain !important;
  object-position: center !important;
}

.netflix-feature-copy {
  right: 24px !important;
  bottom: 22px !important;
  left: 24px !important;
}

/* ---------------------------------------------------------
   FOOTER — exact homepage-style horizontal alignment
   Logo left | main copy true center | script right
   Copyright centered below
--------------------------------------------------------- */

.site-footer {
  padding:
    0
    clamp(22px, 3vw, 38px)
    10px !important;

  background: var(--ivory) !important;
}

.footer-grid {
  position: relative !important;

  display: grid !important;
  grid-template-columns:
    1fr
    1fr
    1fr !important;

  grid-template-rows:
    72px
    26px !important;

  align-items: center !important;

  width: 100% !important;
  min-height: 108px !important;

  padding:
    6px
    0
    0 !important;

  column-gap: 18px !important;
}

.footer-brand {
  grid-column: 1 !important;
  grid-row: 1 !important;

  justify-self: start !important;
  align-self: center !important;
}

.footer-brand img {
  width: 82px !important;
  max-height: 64px !important;

  object-fit: contain !important;
}

.footer-main {
  grid-column: 2 !important;
  grid-row: 1 !important;

  justify-self: center !important;
  align-self: center !important;

  margin: 0 !important;

  color: #656064 !important;

  font-size: 0.72rem !important;
  font-weight: 600 !important;

  line-height: 1.35 !important;

  text-align: center !important;
  white-space: nowrap !important;
}

.footer-message {
  grid-column: 3 !important;
  grid-row: 1 !important;

  justify-self: end !important;
  align-self: center !important;

  margin: 0 !important;

  color: var(--blue-deep) !important;

  font-family: var(--script) !important;
  font-size: 1.38rem !important;

  line-height: 1 !important;

  text-align: right !important;
  white-space: nowrap !important;
}

.footer-copyline {
  grid-column: 1 / 4 !important;
  grid-row: 2 !important;

  justify-self: stretch !important;

  width: 100% !important;

  margin: 0 !important;
  padding-top: 7px !important;

  color: #8a8285 !important;

  border-top:
    1px solid rgba(74, 65, 68, 0.06) !important;

  font-size: 0.61rem !important;

  line-height: 1.3 !important;

  text-align: center !important;
}

/* Back-to-top is visually independent so it cannot disturb center alignment */
.back-to-top {
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;

  grid-column: auto !important;
  grid-row: auto !important;

  transform: translateY(-50%) !important;
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */
@media (max-width: 1100px) {

  .watch-grid {
    grid-template-columns:
      minmax(280px, 0.9fr)
      minmax(380px, 1fr) !important;

    gap: 34px !important;
  }

  .netflix-feature {
    width: min(100%, 560px) !important;
  }

  .netflix-feature img {
    max-height: 400px !important;
  }

  .footer-main {
    font-size: 0.66rem !important;
  }

  .footer-message {
    font-size: 1.22rem !important;
  }
}

/* ---------------------------------------------------------
   MOBILE PORTRAIT
--------------------------------------------------------- */
@media
  (max-width: 700px)
  and (orientation: portrait) {

  .watch-grid {
    grid-template-columns: 1fr !important;
  }

  .netflix-feature {
    width: min(100%, 520px) !important;

    justify-self: center !important;
  }

  .netflix-feature img {
    max-height: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;

    justify-items: center !important;

    gap: 7px !important;

    min-height: 0 !important;

    padding:
      16px
      0
      8px !important;
  }

  .footer-brand,
  .footer-main,
  .footer-message,
  .footer-copyline {
    grid-column: 1 !important;
    grid-row: auto !important;

    justify-self: center !important;

    text-align: center !important;
  }

  .footer-main {
    white-space: normal !important;
  }

  .footer-message {
    white-space: normal !important;
  }

  .back-to-top {
    position: static !important;

    transform: none !important;

    margin-top: 4px !important;
  }
}

/* ---------------------------------------------------------
   MOBILE / TABLET LANDSCAPE
--------------------------------------------------------- */
@media
  (max-width: 1100px)
  and (max-height: 600px)
  and (orientation: landscape) {

  .watch-grid {
    grid-template-columns:
      minmax(250px, 0.85fr)
      minmax(320px, 1fr) !important;

    gap: 28px !important;
  }

  .netflix-feature {
    width: min(100%, 500px) !important;
  }

  .netflix-feature img {
    max-height: 330px !important;
  }

  .footer-grid {
    grid-template-columns:
      1fr
      1fr
      1fr !important;

    grid-template-rows:
      58px
      22px !important;

    min-height: 86px !important;
  }

  .footer-brand img {
    width: 62px !important;
  }

  .footer-main {
    font-size: 0.56rem !important;
  }

  .footer-message {
    font-size: 0.96rem !important;
  }

  .footer-copyline {
    font-size: 0.50rem !important;
  }

  .back-to-top {
    width: 29px !important;
    height: 29px !important;
  }
}


/* =========================================================
   JUST THE TWO OF US v16 — FOOTER FINAL ALIGNMENT
========================================================= */

.site-footer {
  padding:
    0
    clamp(22px, 3vw, 38px)
    10px !important;

  background: var(--ivory) !important;

  border-top:
    1px solid rgba(74, 65, 68, 0.08) !important;
}

.footer-grid {
  display: grid !important;

  grid-template-columns:
    minmax(0, 1fr)
    auto !important;

  grid-template-rows:
    72px
    26px !important;

  align-items: center !important;

  width: 100% !important;
  min-height: 108px !important;

  padding:
    6px
    0
    0 !important;

  column-gap: 28px !important;
  row-gap: 0 !important;
}

.footer-left {
  grid-column: 1 !important;
  grid-row: 1 !important;

  justify-self: start !important;

  display: flex !important;
  align-items: center !important;

  gap: 20px !important;
}

.footer-brand {
  display: inline-flex !important;
  align-items: center !important;

  flex: 0 0 auto !important;
}

.footer-brand img {
  width: 82px !important;
  max-height: 64px !important;

  object-fit: contain !important;
}

.footer-main {
  margin: 0 !important;

  color: #656064 !important;

  font-size: 0.72rem !important;
  font-weight: 600 !important;

  line-height: 1.35 !important;

  text-align: left !important;
  white-space: nowrap !important;
}

.footer-message {
  grid-column: 2 !important;
  grid-row: 1 !important;

  justify-self: end !important;
  align-self: center !important;

  margin: 0 !important;

  color: var(--blue-deep) !important;

  font-family: var(--script) !important;
  font-size: 1.38rem !important;

  line-height: 1 !important;

  text-align: right !important;
  white-space: nowrap !important;
}

.footer-copyline {
  grid-column: 1 / 3 !important;
  grid-row: 2 !important;

  justify-self: stretch !important;

  width: 100% !important;

  margin: 0 !important;
  padding-top: 7px !important;

  color: #8a8285 !important;

  border-top:
    1px solid rgba(74, 65, 68, 0.06) !important;

  font-size: 0.61rem !important;

  line-height: 1.3 !important;

  text-align: center !important;
}

/* Remove any legacy back-to-top rendering */
.back-to-top {
  display: none !important;
}

/* Dark mode */
.dark-theme .site-footer {
  background: #1b1b1f !important;
}

.dark-theme .footer-main {
  color: rgba(255,255,255,.70) !important;
}

.dark-theme .footer-copyline {
  color: rgba(255,255,255,.48) !important;

  border-top-color:
    rgba(255,255,255,.06) !important;
}

.dark-theme .footer-message {
  color: #a9cee5 !important;
}

/* Tablet */
@media (max-width: 1100px) {

  .footer-left {
    gap: 16px !important;
  }

  .footer-brand img {
    width: 72px !important;
  }

  .footer-main {
    font-size: 0.66rem !important;
  }

  .footer-message {
    font-size: 1.18rem !important;
  }
}

/* Mobile portrait */
@media
  (max-width: 700px)
  and (orientation: portrait) {

  .footer-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;

    justify-items: center !important;

    gap: 8px !important;

    min-height: 0 !important;

    padding:
      16px
      0
      8px !important;
  }

  .footer-left {
    grid-column: 1 !important;
    grid-row: auto !important;

    justify-self: center !important;

    flex-direction: column !important;

    gap: 7px !important;
  }

  .footer-main,
  .footer-message,
  .footer-copyline {
    grid-column: 1 !important;
    grid-row: auto !important;

    justify-self: center !important;

    text-align: center !important;
  }

  .footer-brand img {
    width: 78px !important;
  }

  .footer-main {
    white-space: normal !important;
  }

  .footer-message {
    white-space: normal !important;
  }
}

/* Mobile/tablet landscape */
@media
  (max-width: 1100px)
  and (max-height: 600px)
  and (orientation: landscape) {

  .footer-grid {
    grid-template-columns:
      minmax(0, 1fr)
      auto !important;

    grid-template-rows:
      58px
      22px !important;

    min-height: 86px !important;
  }

  .footer-left {
    gap: 12px !important;
  }

  .footer-brand img {
    width: 62px !important;
  }

  .footer-main {
    font-size: 0.56rem !important;
  }

  .footer-message {
    font-size: 0.96rem !important;
  }

  .footer-copyline {
    font-size: 0.50rem !important;
  }
}


/* =========================================================
   JUST THE TWO OF US v17 — MOBILE HERO + LANDSCAPE NAV FIX
   Portrait: full banner, no face crop
   Landscape: full OomBam composition + compact dropdown nav
========================================================= */

/* =========================================================
   MOBILE PORTRAIT
   Show the banner as a complete image block above the copy.
========================================================= */
@media
  (max-width: 700px)
  and (orientation: portrait) {

  .fulfill-hero {
    display: block !important;

    height: auto !important;
    min-height: 0 !important;

    padding-top: 0 !important;

    overflow: visible !important;

    background: var(--ivory) !important;
  }

  /* Full banner, no cover crop */
  .hero-art {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    height: auto !important;

    aspect-ratio: 16 / 9 !important;

    background-image:
      url("../assets/images/fulfill-banner.jpg") !important;

    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;

    background-color: #e9e3df !important;
  }

  /* No dark gradient over the actual banner image */
  .hero-wash {
    display: none !important;
  }

  /* Text becomes a separate editorial block below the image */
  .hero-inner {
    position: relative !important;

    min-height: 0 !important;

    padding:
      22px
      20px
      38px !important;

    background:
      linear-gradient(
        180deg,
        rgba(251,248,246,1),
        rgba(251,248,246,.98)
      ) !important;
  }

  .breadcrumb {
    position: static !important;

    margin-bottom: 30px !important;

    color: #8c8386 !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-copy h1 > span {
    font-size:
      clamp(
        3.15rem,
        16vw,
        4.5rem
      ) !important;
  }

  .hero-copy h1 > strong {
    font-size:
      clamp(
        3.9rem,
        19vw,
        5.4rem
      ) !important;
  }

  .hero-subtitle {
    max-width: 330px !important;

    font-size: 1.08rem !important;
    line-height: 1.42 !important;
  }

  /* Dark mode keeps the separated text block readable */
  .dark-theme .fulfill-hero,
  .dark-theme .hero-inner {
    background: #202126 !important;
  }

  .dark-theme .breadcrumb {
    color: rgba(255,255,255,.55) !important;
  }
}


/* =========================================================
   MOBILE / TABLET LANDSCAPE
   1) compact dropdown instead of full-screen overlay
   2) show complete OomBam banner without cropping Oom
========================================================= */
@media
  (max-width: 1100px)
  and (max-height: 600px)
  and (orientation: landscape) {

  /* ---------- Navigation ---------- */

  .mobile-menu.is-open {
    position: fixed !important;

    top: 64px !important;
    right: 14px !important;
    bottom: auto !important;
    left: auto !important;

    z-index: 1200 !important;

    display: block !important;

    width: auto !important;
    height: auto !important;

    padding: 0 !important;

    background: transparent !important;

    overflow: visible !important;

    pointer-events: none !important;
  }

  .mobile-menu-panel {
    width: min(245px, 38vw) !important;
    max-height: calc(100dvh - 76px) !important;

    padding:
      9px
      16px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    color: #514b4e !important;
    background:
      linear-gradient(
        160deg,
        #fffdfb,
        #f8eef1 56%,
        #edf6fb
      ) !important;

    border:
      1px solid rgba(70,60,64,.10) !important;
    border-radius: 14px !important;

    box-shadow:
      0 18px 45px rgba(27,24,26,.22) !important;

    pointer-events: auto !important;

    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
  }

  .mobile-menu-panel a {
    min-height: 0 !important;

    padding:
      7px
      2px !important;

    color: #544d50 !important;

    font-size: .88rem !important;
    line-height: 1.12 !important;
  }

  /* Dark-mode dropdown */
  .dark-theme .mobile-menu-panel {
    color: #f4eef0 !important;
    background:
      linear-gradient(
        160deg,
        #242428,
        #30282c 56%,
        #252e33
      ) !important;

    border-color:
      rgba(255,255,255,.08) !important;
  }

  .dark-theme .mobile-menu-panel a {
    color: #f4eef0 !important;
  }

  /* ---------- Hero ---------- */

  .fulfill-hero {
    height: 390px !important;
    min-height: 390px !important;

    padding-top: 0 !important;

    overflow: hidden !important;
  }

  /*
     Keep the entire supplied landscape banner visible.
     The unused area becomes part of the editorial background
     rather than cropping either Oom or Bam.
  */
  .hero-art {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 67% !important;
    height: 100% !important;

    background-image:
      url("../assets/images/fulfill-banner.jpg") !important;

    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;

    background-color: #eee8e4 !important;
  }

  .hero-wash {
    display: block !important;

    inset: 0 !important;

    background:
      linear-gradient(
        90deg,
        #fbf8f6 0%,
        rgba(251,248,246,.99) 28%,
        rgba(251,248,246,.93) 39%,
        rgba(251,248,246,.46) 49%,
        rgba(251,248,246,.08) 64%,
        transparent 75%
      ) !important;
  }

  .hero-inner {
    min-height: 390px !important;

    padding:
      16px
      28px
      23px !important;
  }

  .hero-copy {
    width: 43% !important;
    max-width: 410px !important;
  }

  .hero-copy h1 > span {
    font-size:
      clamp(
        2.45rem,
        4.8vw,
        3.5rem
      ) !important;
  }

  .hero-copy h1 > strong {
    font-size:
      clamp(
        2.95rem,
        5.7vw,
        4.15rem
      ) !important;
  }

  .hero-subtitle {
    max-width: 315px !important;

    font-size: .88rem !important;
  }

  /* Dark-mode landscape wash */
  .dark-theme .hero-wash {
    background:
      linear-gradient(
        90deg,
        #202126 0%,
        rgba(32,33,38,.99) 28%,
        rgba(32,33,38,.94) 39%,
        rgba(32,33,38,.50) 50%,
        rgba(32,33,38,.10) 66%,
        transparent 76%
      ) !important;
  }
}


/* Extra-short landscape phones */
@media
  (max-width: 900px)
  and (max-height: 450px)
  and (orientation: landscape) {

  .mobile-menu.is-open {
    top: 58px !important;
    right: 10px !important;
  }

  .mobile-menu-panel {
    width: min(225px, 36vw) !important;
    max-height: calc(100dvh - 68px) !important;

    padding:
      7px
      14px !important;
  }

  .mobile-menu-panel a {
    padding:
      6px
      2px !important;

    font-size: .82rem !important;
  }

  .fulfill-hero {
    height: 350px !important;
    min-height: 350px !important;
  }

  .hero-inner {
    min-height: 350px !important;

    padding:
      13px
      22px
      19px !important;
  }

  .hero-art {
    width: 66% !important;
  }

  .hero-copy {
    width: 42% !important;
  }

  .hero-copy h1 > span {
    font-size: 2.35rem !important;
  }

  .hero-copy h1 > strong {
    font-size: 2.9rem !important;
  }

  .hero-subtitle {
    font-size: .80rem !important;
  }
}


/* =========================================================
   V20 — EDITORIAL FULFILL MEDIA LAYOUT
   Featured rewatch + archive collection side by side
========================================================= */

.archive-media-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.archive-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(330px, .98fr);
  gap: clamp(30px, 3.6vw, 54px);
  align-items: start;
}

.featured-rewatch-column,
.collection-column {
  min-width: 0;
}

.archive-section-heading {
  margin-bottom: 26px;
}

.archive-section-heading .section-kicker {
  margin-bottom: 10px;
}

.archive-section-heading h2 {
  margin: 0 0 13px;
  color: #302a2c;
  font-family: var(--display);
  font-size: clamp(2.45rem, 3.25vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .98;
}

.archive-section-intro {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.68;
}

.series-name {
  color: #4a4145;
  font-weight: 700;
}

/* Four featured videos form a balanced 2 × 2 editorial grid. */
.archive-media-layout .story-player-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.archive-media-layout .story-player-card:last-child {
  grid-column: auto;
  max-width: none;
  width: auto;
  justify-self: stretch;
}

.archive-media-layout .story-player-copy {
  padding: 17px 18px 19px;
}

.archive-media-layout .story-player-copy h3 {
  font-size: 1.22rem;
}

.archive-media-layout .story-player-copy p {
  font-size: .71rem;
}

/* Archive becomes a compact vertical browsing rail. */
.archive-media-layout .playlist-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.archive-media-layout .playlist-card,
.archive-media-layout .playlist-card.featured-memory {
  grid-column: auto;
  grid-template-columns: 102px minmax(0, 1fr);
  min-height: 86px;
  gap: 11px;
  padding: 8px;
}

.archive-media-layout .playlist-card img,
.archive-media-layout .playlist-card.featured-memory img {
  width: 102px;
  height: 68px;
  border-radius: 7px;
}

.archive-media-layout .playlist-card.featured-memory {
  background: linear-gradient(135deg,#fff,#fdf4f6);
}

.archive-media-layout .playlist-card h3,
.archive-media-layout .playlist-card.featured-memory h3 {
  margin: 3px 0 4px;
  font-size: .98rem;
}

.archive-media-layout .playlist-card p,
.archive-media-layout .playlist-card.featured-memory p {
  font-size: .60rem;
  line-height: 1.38;
}

.archive-media-layout .playlist-card span {
  font-size: .52rem;
}

.dark-theme .archive-section-heading h2 {
  color: #f5eff1;
}

.dark-theme .archive-section-intro {
  color: rgba(255,255,255,.66);
}

.dark-theme .series-name {
  color: rgba(255,255,255,.9);
}

.dark-theme .archive-media-layout .playlist-card.featured-memory {
  background: linear-gradient(135deg,#292a2f,#30272b);
}

/* Tablet: stack before either column becomes cramped. */
@media (max-width: 980px) {
  .archive-media-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .archive-section-heading {
    max-width: 720px;
  }

  .archive-media-layout .playlist-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .archive-media-layout .playlist-card,
  .archive-media-layout .playlist-card.featured-memory {
    grid-template-columns: 112px minmax(0,1fr);
  }

  .archive-media-layout .playlist-card img,
  .archive-media-layout .playlist-card.featured-memory img {
    width: 112px;
    height: 74px;
  }
}

@media (max-width: 700px) and (orientation: portrait) {
  .archive-media-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .archive-media-layout {
    gap: 44px;
  }

  .archive-section-heading {
    margin-bottom: 22px;
  }

  .archive-section-heading h2 {
    font-size: 2.4rem;
  }

  .archive-section-intro {
    font-size: .80rem;
    line-height: 1.6;
  }

  .archive-media-layout .story-player-grid,
  .archive-media-layout .playlist-grid {
    grid-template-columns: 1fr;
  }

  .archive-media-layout .playlist-card,
  .archive-media-layout .playlist-card.featured-memory {
    grid-template-columns: 104px minmax(0,1fr);
  }

  .archive-media-layout .playlist-card img,
  .archive-media-layout .playlist-card.featured-memory img {
    width: 104px;
    height: 72px;
  }
}

/* Short landscape: preserve density without squeezing cards. */
@media (max-width: 1100px) and (max-height: 600px) and (orientation: landscape) {
  .archive-media-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .archive-media-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .9fr);
    gap: 26px;
  }

  .archive-section-heading {
    margin-bottom: 18px;
  }

  .archive-section-heading h2 {
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    margin-bottom: 9px;
  }

  .archive-section-intro {
    font-size: .70rem;
    line-height: 1.5;
  }

  .archive-media-layout .story-player-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
  }

  .archive-media-layout .story-player-copy {
    padding: 12px 13px 14px;
  }

  .archive-media-layout .story-player-copy h3 {
    font-size: .98rem;
  }

  .archive-media-layout .story-player-copy p {
    font-size: .61rem;
  }

  .archive-media-layout .playlist-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .archive-media-layout .playlist-card,
  .archive-media-layout .playlist-card.featured-memory {
    grid-template-columns: 82px minmax(0,1fr);
    min-height: 70px;
    gap: 8px;
    padding: 6px;
  }

  .archive-media-layout .playlist-card img,
  .archive-media-layout .playlist-card.featured-memory img {
    width: 82px;
    height: 54px;
  }

  .archive-media-layout .playlist-card span {
    font-size: .46rem;
  }

  .archive-media-layout .playlist-card h3,
  .archive-media-layout .playlist-card.featured-memory h3 {
    font-size: .82rem;
  }

  .archive-media-layout .playlist-card p,
  .archive-media-layout .playlist-card.featured-memory p {
    font-size: .52rem;
  }
}

@media (max-width: 820px) and (max-height: 600px) and (orientation: landscape) {
  .archive-media-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .archive-media-layout .playlist-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* =========================================================
   v22.0 — GLOBAL SHELL / NAVIGATION STANDARDIZATION
   ---------------------------------------------------------
   Fulfill The Series now follows the same structural system as
   Home, Oom, and Bam:
   - 1480px / 96vw master canvas
   - shared OB global header/search/mobile navigation
   - 24px desktop shell curvature / 22px tablet / 0 mobile
   - near-black #090a0c dark canvas
   - fixed + scroll-locked landscape hamburger via shared script
   - page-specific blush/powder-blue editorial identity retained
========================================================= */

/* ---------- Master page canvas ---------- */
body.page-fulfill {
  min-height: 100vh;
  padding: clamp(24px, 4vw, 62px) 20px;
  display: block;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(169, 206, 229, .34), transparent 31%),
    radial-gradient(circle at 92% 12%, rgba(248, 232, 236, .62), transparent 33%),
    linear-gradient(135deg, #dcecf6 0%, #f5f7f8 48%, #f3e3e8 100%);
}

body.page-fulfill > .site-shell {
  position: relative;
  width: min(1480px, 96vw);
  margin: 0 auto;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(72, 66, 69, .08);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 22px 60px rgba(60, 70, 78, .10);
}

/* Shared header is the top cap of the same editorial canvas. */
@media (min-width: 1101px) {
  body.page-fulfill > .ob-header {
    width: min(1480px, 96vw);
    margin-inline: auto;
    border-radius: 24px 24px 0 0;
  }

  body.page-fulfill > .site-shell {
    width: min(1480px, 96vw);
    border-radius: 0 0 24px 24px;
  }

  /* Same treatment as the Homepage hero: flush top seam,
     premium rounded finish at the bottom of the banner. */
  body.page-fulfill .fulfill-hero,
  body.page-fulfill .hero-art,
  body.page-fulfill .hero-wash {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  body.page-fulfill .fulfill-hero {
    border-radius: 0 0 24px 24px;
  }
}

/* ---------- Shared search flow ---------- */
body.page-fulfill > .ob-site-search {
  width: min(1480px, 96vw);
  margin-inline: auto;
}

/* ---------- Hero: shared header now owns navigation height ---------- */
body.page-fulfill .fulfill-hero {
  padding-top: 0 !important;
  overflow: hidden;
}

body.page-fulfill .hero-art {
  top: 0 !important;
}

body.page-fulfill .hero-wash {
  inset: 0 !important;
}

/* ---------- Dark-mode hierarchy: same baseline as Home/Oom/Bam ---------- */
html[data-theme="dark"] body.page-fulfill,
body.dark-theme.page-fulfill {
  --ob-dark-bg: #090a0c;
  --ob-dark-panel: #111214;
  color: #f2edef;
  background: #090a0c !important;
  background-image: none !important;
}

html[data-theme="dark"] body.page-fulfill > .ob-header,
body.dark-theme.page-fulfill > .ob-header {
  background: #090a0c !important;
  background-image: none !important;
  border-bottom-color: rgba(255,255,255,.07) !important;
  box-shadow: none;
}

html[data-theme="dark"] body.page-fulfill > .site-shell,
body.dark-theme.page-fulfill > .site-shell {
  background: #090a0c !important;
  border-color: rgba(255,255,255,.06) !important;
  box-shadow: none !important;
}

body.dark-theme.page-fulfill .fulfill-hero,
html[data-theme="dark"] body.page-fulfill .fulfill-hero,
body.dark-theme.page-fulfill .watch-section,
html[data-theme="dark"] body.page-fulfill .watch-section {
  background: #090a0c !important;
}

body.dark-theme.page-fulfill .hero-wash,
html[data-theme="dark"] body.page-fulfill .hero-wash {
  background:
    linear-gradient(90deg,#090a0c 0%,rgba(9,10,12,.98) 34%,rgba(9,10,12,.76) 48%,rgba(9,10,12,.05) 70%) !important;
}

body.dark-theme.page-fulfill .soft-section,
html[data-theme="dark"] body.page-fulfill .soft-section {
  background: #111214 !important;
}

body.dark-theme.page-fulfill .story-player-card,
body.dark-theme.page-fulfill .playlist-card,
html[data-theme="dark"] body.page-fulfill .story-player-card,
html[data-theme="dark"] body.page-fulfill .playlist-card {
  background: #141518 !important;
  border-color: rgba(255,255,255,.07) !important;
}

body.dark-theme.page-fulfill .playlist-card.featured-memory,
html[data-theme="dark"] body.page-fulfill .playlist-card.featured-memory {
  background: linear-gradient(135deg,#141518,#1b171a) !important;
}

body.dark-theme.page-fulfill .site-footer,
html[data-theme="dark"] body.page-fulfill .site-footer {
  background: #090a0c !important;
  border-color: rgba(255,255,255,.07) !important;
}

/* ---------- Tablet: same shell geometry ---------- */
@media (min-width: 761px) and (max-width: 1100px) {
  body.page-fulfill {
    padding: 22px 14px;
  }

  body.page-fulfill > .ob-header {
    width: 100%;
    border-radius: 22px 22px 0 0;
  }

  body.page-fulfill > .ob-site-search,
  body.page-fulfill > .site-shell {
    width: 100%;
    max-width: 100%;
  }

  body.page-fulfill > .site-shell {
    border-radius: 0 0 22px 22px;
  }

  body.page-fulfill .fulfill-hero {
    border-radius: 0 0 22px 22px;
  }
}

/* ---------- Mobile portrait: established edge-to-edge standard ---------- */
@media (max-width: 760px) and (orientation: portrait) {
  body.page-fulfill {
    padding: 0 !important;
  }

  body.page-fulfill > .ob-header,
  body.page-fulfill > .ob-site-search,
  body.page-fulfill > .site-shell,
  body.page-fulfill .fulfill-hero,
  body.page-fulfill .hero-art,
  body.page-fulfill .hero-wash {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
  }

  body.page-fulfill > .site-shell {
    border: 0;
    box-shadow: none;
  }
}

/* ---------- Short landscape: exactly the shared Home/Oom/Bam canvas ---------- */
@media (max-width: 1100px) and (max-height: 600px) and (orientation: landscape) {
  html,
  body.page-fulfill {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.page-fulfill {
    padding: 8px 8px 14px !important;
  }

  body.page-fulfill > .ob-header,
  body.page-fulfill > .ob-site-search,
  body.page-fulfill > .site-shell {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-fulfill > .ob-header,
  body.page-fulfill > .site-shell,
  body.page-fulfill .fulfill-hero,
  body.page-fulfill .hero-art,
  body.page-fulfill .hero-wash {
    border-radius: 0 !important;
  }

  body.page-fulfill > .site-shell {
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
}


/* =========================================================
   v22.1 — TABLET HERO / BANNER FRAMING
   ---------------------------------------------------------
   Problem:
   The older hero rules constrained the artwork to 64–68% of the
   banner width. On iPad portrait and landscape this produced a
   tall, narrow image window and cropped one of the two subjects.

   Fix:
   Use the supplied landscape banner across the FULL hero canvas
   on tablets, then place the editorial wash/copy over the left.
   This keeps both Oom and Bam visible while preserving the
   existing desktop editorial composition.
========================================================= */

/* ---------- Tablet portrait ---------- */
@media
  (min-width: 701px)
  and (max-width: 1100px)
  and (orientation: portrait) {

  body.page-fulfill .fulfill-hero {
    height: 600px !important;
    min-height: 600px !important;
    padding-top: 0 !important;
    overflow: hidden !important;
  }

  body.page-fulfill .hero-art {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background-image:
      url("../assets/images/fulfill-banner.jpg") !important;

    background-size: cover !important;
    background-repeat: no-repeat !important;

    /* Full-width canvas prevents the portrait tablet crop. */
    background-position: center center !important;
  }

  body.page-fulfill .hero-wash {
    display: block !important;
    inset: 0 !important;

    background:
      linear-gradient(
        90deg,
        #fbf8f6 0%,
        rgba(251,248,246,.99) 27%,
        rgba(251,248,246,.94) 38%,
        rgba(251,248,246,.66) 48%,
        rgba(251,248,246,.20) 60%,
        rgba(251,248,246,.03) 74%
      ) !important;
  }

  body.page-fulfill .hero-inner {
    min-height: 600px !important;
    padding:
      28px
      clamp(34px, 6vw, 62px)
      42px !important;
  }

  body.page-fulfill .hero-copy {
    width: 45% !important;
    max-width: 390px !important;
    margin: auto 0 !important;
  }

  body.page-fulfill .hero-copy h1 > span {
    font-size: clamp(3.1rem, 7.3vw, 4.5rem) !important;
  }

  body.page-fulfill .hero-copy h1 > strong {
    font-size: clamp(3.85rem, 9vw, 5.45rem) !important;
  }

  body.page-fulfill .hero-subtitle {
    max-width: 330px !important;
    font-size: clamp(1rem, 2vw, 1.15rem) !important;
  }

  html[data-theme="dark"] body.page-fulfill .hero-wash,
  body.dark-theme.page-fulfill .hero-wash {
    background:
      linear-gradient(
        90deg,
        #090a0c 0%,
        rgba(9,10,12,.99) 27%,
        rgba(9,10,12,.94) 38%,
        rgba(9,10,12,.70) 49%,
        rgba(9,10,12,.24) 62%,
        rgba(9,10,12,.03) 76%
      ) !important;
  }
}


/* ---------- iPad / tablet landscape ---------- */
/*
   Modern iPad landscape widths commonly exceed the 1100px mobile
   breakpoint. This range keeps those devices from falling back to
   the old 68%-wide artwork window.
*/
@media
  (min-width: 1101px)
  and (max-width: 1400px)
  and (orientation: landscape) {

  body.page-fulfill .fulfill-hero {
    height: 560px !important;
    min-height: 560px !important;
    overflow: hidden !important;
  }

  body.page-fulfill .hero-art {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center 48% !important;
  }

  body.page-fulfill .hero-wash {
    inset: 0 !important;

    background:
      linear-gradient(
        90deg,
        #fbf8f6 0%,
        rgba(251,248,246,.99) 25%,
        rgba(251,248,246,.92) 36%,
        rgba(251,248,246,.58) 47%,
        rgba(251,248,246,.14) 60%,
        transparent 74%
      ) !important;
  }

  body.page-fulfill .hero-inner {
    min-height: 560px !important;
    padding:
      30px
      clamp(42px, 5vw, 72px)
      44px !important;
  }

  body.page-fulfill .hero-copy {
    width: 42% !important;
    max-width: 470px !important;
  }

  html[data-theme="dark"] body.page-fulfill .hero-wash,
  body.dark-theme.page-fulfill .hero-wash {
    background:
      linear-gradient(
        90deg,
        #090a0c 0%,
        rgba(9,10,12,.99) 25%,
        rgba(9,10,12,.94) 36%,
        rgba(9,10,12,.62) 48%,
        rgba(9,10,12,.16) 62%,
        transparent 76%
      ) !important;
  }
}


/* =========================================================
   v22.4 — CANONICAL GLOBAL SEARCH STANDARD
   ---------------------------------------------------------
   Home + Oom + Bam are the source of truth for search styling.
   Fulfill only controls placement:
   - header first
   - search panel directly below header
   - Global.css controls row layout, input, button, spacing,
     colors, responsive stacking, and theme states.
========================================================= */

body.page-fulfill > .ob-header {
  position: relative;
  z-index: 30;
}

body.page-fulfill > .ob-site-search {
  position: relative !important;
  z-index: 20;
  width: min(1480px, 96vw);
  margin: 0 auto !important;
}

/* Preserve the continuous editorial shell when search is open. */
@media (min-width: 1101px) {
  body.page-fulfill > .ob-site-search:not([hidden]) {
    width: min(1480px, 96vw) !important;
    margin-inline: auto !important;
    border-radius: 0 !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.page-fulfill > .ob-site-search:not([hidden]) {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 760px) {
  body.page-fulfill > .ob-site-search:not([hidden]) {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    border-radius: 0 !important;
  }
}

/* =========================================================
   FULFILL v22.5 — STICKY GLOBAL HEADER RESTORATION
   Keep the shared navigation visible while scrolling, matching
   Home / Oom / Bam / Community behavior.
========================================================= */

body.page-fulfill > .ob-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 5000 !important;
}

body.page-fulfill > .ob-site-search {
  position: relative !important;
  z-index: 20 !important;
}

@media (min-width: 1101px) {
  body.page-fulfill > .ob-header {
    width: min(1480px, 96vw) !important;
    margin-inline: auto !important;
    border-radius: 24px 24px 0 0 !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.page-fulfill > .ob-header {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 22px 22px 0 0 !important;
  }
}

@media (max-width: 760px),
       (max-width: 1100px) and (max-height: 600px) and (orientation: landscape) {
  body.page-fulfill > .ob-header {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
  }
}
