/**
 * VYNE+ Subscription page.
 *
 * Ported from the standalone design (whole pages/VYNE+ Subscription). All rules
 * scoped under .subscription-page so the imported palette/base never leak onto
 * the shared v2 chrome (topbar/footer keep their home-v2.css styling). The
 * standalone's own topbar/notif/footer were dropped on import. Fonts come from
 * the v2 Google-Fonts stylesheet. Design variable names are re-declared on the
 * wrapper, so they cascade only into this page.
 */

.subscription-page {
  --bg: #080605;
  --bg-2: #0d0a07;
  --panel: #15110c;
  --panel-2: #1d1712;
  --line: rgba(231,210,176,0.14);
  --line-soft: rgba(231,210,176,0.07);
  --gold: #c9a44c;
  --gold-soft: #e6cf9e;
  --gold-deep: #9b7833;
  --ink: #f5ede0;
  --body: #c7bba8;
  --muted: #8e8474;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --shell: 1680px;
  --pad: clamp(24px, 5vw, 120px);

  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 300;
  /* The design's body sets no font-size/line-height (so: 16px/normal); our global
     body is 17px/1.6, which leaked in and made every inheriting block taller. */
  font-size: 16px;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
}

/* The design's `* { box-sizing: border-box; margin: 0; padding: 0 }` reset wasn't
   ported, so UA paragraph margins and <ul> indents leaked into the ported blocks. */
.subscription-page *, .subscription-page *::before, .subscription-page *::after { box-sizing: border-box; }
.subscription-page p, .subscription-page ul, .subscription-page ol, .subscription-page li,
.subscription-page h1, .subscription-page h2, .subscription-page h3, .subscription-page h4,
.subscription-page figure, .subscription-page blockquote, .subscription-page dl, .subscription-page dd { margin: 0; padding: 0; }

.subscription-page ::selection { background: var(--gold); color: #16100a; }
.subscription-page a { color: inherit; text-decoration: none; }
/* position:relative + z-index lifts the (transparent) shell above the hero's
   opaque background, so the z-index:-1 hero bottles show THROUGH it, behind the
   text — the layered look from the original design. */
.subscription-page .shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
.subscription-page .kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.subscription-page h1, .subscription-page h2, .subscription-page h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); }
.subscription-page em { font-style: italic; color: var(--gold-soft); }
.subscription-page .sec-h { font-size: clamp(38px, 5.5vw, 68px); line-height: 1.02; margin: 14px 0 0; }
.subscription-page .sec-lead { font-family: var(--serif); font-size: clamp(18px, 2vw, 24px); line-height: 1.5; color: var(--body); max-width: 60ch; margin-top: 20px; }
.subscription-page .btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 34px; cursor: pointer; border: 1px solid var(--line); background: transparent; color: var(--ink); transition: all 0.2s; }
.subscription-page .btn:hover { border-color: var(--gold-soft); }
.subscription-page .btn.primary { background: linear-gradient(180deg, #d9b765, #b98f3c); color: #16100a; border-color: transparent; }
.subscription-page .btn.primary:hover { background: linear-gradient(180deg, #e7c87a, #c89a44); }

/* ===== Hero ===== */
/* display:block is load-bearing: home-v2.css's global .hero is the homepage's
   flex hero, and as a flex container it turned .shell into a flex item with
   min-width:auto — 1584px wide instead of 1440, pushing the hero content
   144px past the viewport (clipped by the hero's own overflow). */
.subscription-page .hero { display: block; min-height: 0; position: relative; padding: clamp(60px, 9vw, 130px) 0 clamp(40px, 6vw, 90px); text-align: center; background: var(--bg); }
.subscription-page .hero .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 16px; }
.subscription-page .hero .eyebrow::before, .subscription-page .hero .eyebrow::after { content: ''; width: 56px; height: 1px; background: var(--gold-deep); }
.subscription-page .hero h1 { font-size: clamp(46px, 8vw, 108px); line-height: 0.98; margin: 22px 0 0; font-weight: 400; }
/* reset: a global .sub (subscription card) leaks a dark gradient bg + height */
.subscription-page .hero .sub { background: none; min-height: 0; height: auto; padding: 0; border: none; box-shadow: none; font-family: var(--serif); font-size: clamp(18px, 2vw, 25px); line-height: 1.5; color: var(--body); max-width: 44ch; margin: 24px auto 0; }
.subscription-page .hero-cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.subscription-page .hero-bottles { margin-top: clamp(-60px, -3vw, -20px); width: 100vw; margin-left: 50%; transform: translateX(-50%); position: relative; z-index: -1; }
.subscription-page .hero-bottles img { width: 100%; display: block; }

/* ===== What is it ===== */
.subscription-page .band { padding: clamp(56px, 8vw, 110px) 0; border-top: 1px solid var(--line-soft); }
.subscription-page .band.alt { background: linear-gradient(180deg, #0d0a07, #080605); }
.subscription-page .whatis-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 5vw, 80px); margin: 0; text-align: center; }
.subscription-page .wp { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.subscription-page .wp-ic { flex: 0 0 auto; width: 104px; height: 104px; background: rgba(201,164,76,0.08); border: 1px solid rgba(201,164,76,0.28); color: var(--gold); display: grid; place-items: center; }
.subscription-page .wp-ic svg { width: 46px; height: 46px; }
.subscription-page .wp-t { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--ink); }
.subscription-page .wp-b { font-size: 16px; line-height: 1.6; color: var(--body); margin-top: 5px; font-family: var(--serif); }

/* ===== Bottles / calendar (flip cards) ===== */
.subscription-page .bottles-block { background: linear-gradient(180deg, #f6efe0, #efe6d3); color: #2a2014; }
.subscription-page .bottles-block .kicker { color: #9b7833; }
.subscription-page .bottles-block .sec-h { color: #241c14; }
.subscription-page .bottles-block .sec-lead { color: #4a3f2a; }
.subscription-page .bottles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: clamp(36px, 5vw, 60px); }
.subscription-page .bcard { position: relative; perspective: 1600px; aspect-ratio: 0.62; }
.subscription-page .bcard-inner { position: relative; width: 100%; height: 100%; transition: transform 0.7s cubic-bezier(0.4,0.1,0.2,1); transform-style: preserve-3d; }
.subscription-page .bcard.flipped .bcard-inner { transform: rotateY(180deg); }
.subscription-page .bcard-face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid rgba(42,33,26,0.18); background: #fbf6ec; overflow: hidden; display: flex; flex-direction: column; }
.subscription-page .bcard-front .bimg { position: relative; overflow: hidden; background: #0a0807; flex: 1; }
.subscription-page .bcard-front .bimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.subscription-page .bcard .season { position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #16100a; background: var(--gold-soft); padding: 5px 10px; z-index: 2; }
.subscription-page .bcard-front .binfo { padding: 20px 22px 24px; }
.subscription-page .bcard-front .bcomposer { font-family: var(--serif); font-style: italic; font-size: 26px; color: #241c14; line-height: 1.1; }
.subscription-page .bcard-front .bwork { font-family: var(--serif); font-size: 17px; color: #9b7833; margin-top: 4px; }
.subscription-page .bcard-front .btype { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a7a60; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(42,33,26,0.12); }
.subscription-page .flip-btn { position: absolute; bottom: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid var(--gold-deep); background: #fffdf7; color: var(--gold-deep); font-size: 24px; font-weight: 300; line-height: 1; cursor: pointer; display: grid; place-items: center; z-index: 3; transition: background 0.2s, color 0.2s, transform 0.3s; }
.subscription-page .flip-btn:hover { background: var(--gold-deep); color: #fff; }
.subscription-page .bcard.flipped .flip-btn.front-btn { transform: rotate(135deg); }
.subscription-page .bcard-back { transform: rotateY(180deg); background: #1d1712; border-color: var(--gold-deep); padding: 30px 28px; justify-content: flex-start; }
.subscription-page .bcard-back .bk-season { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.subscription-page .bcard-back .bk-composer { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--ink); margin-top: 10px; line-height: 1; }
.subscription-page .bcard-back .bk-work { font-family: var(--serif); font-size: 16px; color: var(--gold-soft); margin-top: 4px; }
.subscription-page .bcard-back .bk-note { font-family: var(--serif); font-size: 15px; line-height: 1.6; color: var(--body); margin-top: 18px; }
.subscription-page .bcard-back .bk-specs { list-style: none; margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 9px; }
.subscription-page .bcard-back .bk-specs li { display: flex; justify-content: space-between; gap: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.subscription-page .bcard-back .bk-specs li b { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 500; }
.subscription-page .bcard-back .flip-btn { border-color: var(--gold-soft); background: rgba(231,207,158,0.12); color: var(--gold-soft); transform: rotate(45deg); }
.subscription-page .bcard-back .flip-btn:hover { background: var(--gold-soft); color: #16100a; }

/* ===== Marquee ===== */
.subscription-page .marquee { overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; background: #0d0a07; }
.subscription-page .marquee-track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: subs-scroll-x 34s linear infinite; }
.subscription-page .marquee-item { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3vw, 40px); color: var(--ink); display: inline-flex; align-items: center; gap: 60px; }
.subscription-page .marquee-item::after { content: "\2726"; color: var(--gold); font-size: 0.5em; font-style: normal; }
@keyframes subs-scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .subscription-page .marquee-track { animation: none; } }

/* ===== Science / Technology / Results (pf2) ===== */
.subscription-page .pf2 .pf2-findings { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(24px,3vw,56px); margin: clamp(36px,4vw,56px) 0 clamp(40px,5vw,64px); }
.subscription-page .pf2 .pf2-find { padding-top: 22px; border-top: 1px solid var(--line); }
.subscription-page .pf2 .pf2-num { font-family: var(--serif); font-weight: 500; font-size: clamp(40px,4.4vw,68px); line-height: 1; color: var(--gold); }
.subscription-page .pf2 .pf2-num .u { font-size: .42em; color: var(--ink); margin-left: 4px; }
.subscription-page .pf2 .pf2-desc { font-family: var(--serif); font-size: 15px; line-height: 1.5; color: var(--body); margin-top: 16px; max-width: 30ch; }
.subscription-page .pf2 .tab-row { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 40px; overflow-x: auto; }
.subscription-page .pf2 .tab { font-family: var(--mono); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); background: none; border: none; padding: 14px 26px; cursor: pointer; position: relative; white-space: nowrap; }
.subscription-page .pf2 .tab.active { color: var(--ink); }
.subscription-page .pf2 .tab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold); }
.subscription-page .pf2 .pf2-panel[hidden] { display: none; }
.subscription-page .pf2 .pf2-ph { max-width: 64ch; margin-bottom: 36px; }
.subscription-page .pf2 .pf2-ph h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px,3.2vw,42px); color: var(--ink); margin: 0 0 14px; }
.subscription-page .pf2 .pf2-ph p { font-family: var(--serif); font-size: clamp(17px,1.5vw,21px); line-height: 1.5; color: var(--body); margin: 0; }
.subscription-page .pf2 .collage { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: 234px; gap: 18px; }
.subscription-page .pf2 .collage > div { border: 1px solid var(--line); padding: 22px; background: var(--panel); position: relative; border-radius: 4px; }
.subscription-page .pf2 .collage .hero-photo { grid-row: span 2; background: #0a0807 center/cover no-repeat; padding: 0; }
.subscription-page .pf2 .collage .k { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.subscription-page .pf2 .collage .n { font-family: var(--serif); font-weight: 500; font-size: 44px; color: var(--gold); line-height: 1; margin: 10px 0; }
.subscription-page .pf2 .collage .b { font-size: 13px; color: var(--body); font-family: var(--serif); line-height: 1.5; }
.subscription-page .pf2 .collage .hd { font-family: var(--serif); font-size: 16px; color: var(--gold-soft); margin-bottom: 4px; }
.subscription-page .pf2 .collage .quote { grid-column: span 2; background: rgba(201,164,76,.08); border-color: var(--gold); }
.subscription-page .pf2 .collage .qm { font-family: var(--serif); font-size: 50px; color: var(--gold); line-height: .5; }
.subscription-page .pf2 .collage .qt { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); margin: 10px 0; }
.subscription-page .pf2 .collage .qa { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.subscription-page .pf2 .pf2-more { display: inline-block; margin-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
@media (max-width: 1024px) { .subscription-page .pf2 .collage { grid-template-columns: 1fr 1fr; } .subscription-page .pf2 .collage .hero-photo { grid-row: auto; grid-column: span 2; min-height: 220px; } }

/* ===== Gallery ===== */
.subscription-page .gwall { columns: 4; column-gap: 14px; margin-top: clamp(36px, 5vw, 56px); }
.subscription-page .gwall > * { break-inside: avoid; margin: 0 0 14px; }
.subscription-page .gtile { border: 1px solid var(--line); overflow: hidden; background: var(--panel); }
.subscription-page .gtile img { width: 100%; display: block; }
.subscription-page .gtile .gcap { padding: 13px 16px; font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--body); border-top: 1px solid var(--line-soft); }
.subscription-page .gtile.quote { padding: 24px 22px; }
.subscription-page .gtile.quote .qm { font-family: var(--serif); font-size: 40px; color: var(--gold); line-height: 0.4; }
.subscription-page .gtile.quote .qt { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink); margin-top: 14px; }
.subscription-page .gtile.quote .qb { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }
.subscription-page .gtile.stat { padding: 34px 22px; text-align: center; background: #221a12; }
.subscription-page .gtile.stat .r { font-family: var(--serif); font-weight: 500; font-size: 52px; color: var(--gold-soft); line-height: 1; }
.subscription-page .gtile.stat .rl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #c9b896; margin-top: 12px; }

/* ===== Ordering module ===== */
.subscription-page .order { position: relative; padding: clamp(60px, 8vw, 120px) 0; border-top: 1px solid var(--line); background: #f2ead9; color: #2a2014; scroll-margin-top: 90px; }
.subscription-page .order::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, transparent 0 15px, rgba(120,90,40,0.06) 15px 16px), repeating-linear-gradient(90deg, transparent 0 15px, rgba(120,90,40,0.06) 15px 16px); }
.subscription-page .order > .shell { position: relative; z-index: 1; }
.subscription-page .order .kicker { color: #9b7833; }
.subscription-page .order .sec-h { color: #241c14; }
.subscription-page .order-head { text-align: center; }
.subscription-page .order-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4vw, 64px); align-items: stretch; margin-top: clamp(40px, 5vw, 64px); }
.subscription-page .order-photo { position: relative; align-self: stretch; }
.subscription-page .order-carousel { border-radius: 16px; overflow: hidden; background: #e3d8c4; box-shadow: 0 26px 60px rgba(120,90,40,0.22); height: 100%; }
.subscription-page .order-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.subscription-page .order-track img { width: 100%; flex: 0 0 100%; height: 100%; object-fit: cover; display: block; }
.subscription-page .order-slider { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; align-items: center; gap: 20px; padding: 11px 22px; background: rgba(8,6,5,0.55); backdrop-filter: blur(6px); border: 1px solid rgba(231,207,158,0.28); border-radius: 999px; z-index: 3; }
.subscription-page .order-arrow { background: none; border: none; color: var(--gold-soft); font-family: var(--serif); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px; transition: color 0.15s, transform 0.15s; }
.subscription-page .order-arrow:hover { color: #fff; transform: scale(1.15); }
.subscription-page .order-dots { display: flex; align-items: center; gap: 9px; }
.subscription-page .order-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(231,207,158,0.35); border: none; padding: 0; cursor: pointer; transition: width 0.3s, background 0.3s; }
.subscription-page .order-dot.active { width: 26px; background: var(--gold-soft); }
.subscription-page .order-body { display: grid; grid-template-columns: 1fr; gap: 26px; align-content: start; }
.subscription-page .pkg-list { display: flex; flex-direction: column; gap: 14px; }
.subscription-page .pkg { position: relative; border: 1px solid rgba(42,33,26,0.18); background: #fbf6ec; padding: 22px 24px; cursor: pointer; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; display: flex; align-items: center; gap: 18px; }
.subscription-page .pkg:hover { border-color: var(--gold-deep); }
.subscription-page .pkg.selected { border-color: var(--gold-deep); box-shadow: 0 0 0 1px var(--gold-deep), 0 14px 34px rgba(120,90,40,0.16); background: #fffdf7; }
.subscription-page .pkg .radio { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--gold-deep); display: grid; place-items: center; }
.subscription-page .pkg.selected .radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--gold-deep); }
.subscription-page .pkg .pk-main { flex: 1; }
.subscription-page .pkg .pk-name { font-family: var(--serif); font-style: italic; font-size: 23px; color: #241c14; }
.subscription-page .pkg .pk-desc { font-size: 13px; color: #8a7a60; margin-top: 3px; }
.subscription-page .pkg .pk-gift { display: inline-block; margin-top: 8px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: #16100a; background: var(--gold-soft); padding: 4px 9px; }
.subscription-page .pkg .pk-price { font-family: var(--serif); font-size: 30px; color: #9b7833; white-space: nowrap; }
.subscription-page .pkg .pk-price small { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: #a08f70; display: block; text-align: right; margin-top: 2px; }
.subscription-page .pkg .best { position: absolute; top: -10px; right: 18px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #16100a; background: var(--gold); padding: 4px 10px; }
.subscription-page .order-side { border: 1px solid rgba(42,33,26,0.18); background: #fbf6ec; padding: 28px 30px; }
.subscription-page .order-side h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: #8a7a60; padding-bottom: 16px; border-bottom: 1px solid rgba(42,33,26,0.12); font-weight: 400; }
.subscription-page .ship-order { margin-top: 20px; }
.subscription-page .ship-order .so-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #9b7833; }
.subscription-page .ship-steps { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.subscription-page .ship-step { display: flex; align-items: center; gap: 14px; padding: 11px 14px; background: #fffdf7; border: 1px solid rgba(42,33,26,0.1); }
.subscription-page .ship-step img { width: 34px; border-radius: 3px; flex: 0 0 auto; }
.subscription-page .ship-step .ss-order { font-family: var(--mono); font-size: 11px; color: #a08f70; width: 20px; flex: 0 0 auto; }
.subscription-page .ship-step .ss-name { font-family: var(--serif); font-style: italic; font-size: 17px; color: #241c14; }
.subscription-page .ship-step .ss-sub { font-size: 11px; color: #8a7a60; margin-top: 1px; }
.subscription-page .ship-step .ss-tag { margin-left: auto; font-family: var(--mono); font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; color: #16100a; background: var(--gold-soft); padding: 3px 8px; flex: 0 0 auto; }
.subscription-page .ship-note { font-family: var(--serif); font-style: italic; font-size: 13px; color: #6a5c44; margin-top: 14px; line-height: 1.5; }
.subscription-page .order-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(42,33,26,0.12); }
.subscription-page .extend-row { position: relative; margin-top: 22px; padding: 20px 20px 18px; border: 1.5px solid rgba(155,120,51,0.4); background: linear-gradient(180deg, rgba(244,210,122,0.10), rgba(155,120,51,0.05)); border-radius: 12px; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.subscription-page .extend-row.on { border-color: #9b7833; box-shadow: 0 10px 30px rgba(155,120,51,0.22); background: linear-gradient(180deg, rgba(244,210,122,0.18), rgba(155,120,51,0.08)); }
.subscription-page .extend-ribbon { position: absolute; top: -11px; left: 20px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: #16100a; background: linear-gradient(180deg, #f4d27a, #c89a44); padding: 4px 11px; border-radius: 999px; box-shadow: 0 3px 10px rgba(155,120,51,0.35); }
.subscription-page .extend-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.subscription-page .extend-txt .extend-ttl { font-family: var(--serif); font-weight: 600; font-size: 25px; color: #2a2014; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; line-height: 1.1; }
.subscription-page .save-sticker { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #16100a; background: linear-gradient(180deg, #f4d27a, #c89a44); padding: 6px 12px; border-radius: 999px; transform: rotate(-3deg); box-shadow: 0 3px 10px rgba(155,120,51,0.35); }
.subscription-page .extend-txt .extend-sub { font-size: 13px; line-height: 1.55; color: #6a5c44; margin-top: 6px; max-width: 44ch; }
.subscription-page .extend-txt .extend-sub b { color: #9b7833; font-weight: 600; }
.subscription-page .extend-benefits { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.subscription-page .extend-benefits li { font-family: var(--serif); font-size: 14px; color: #4a3f2a; padding-left: 24px; position: relative; }
.subscription-page .extend-benefits li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #9b7833; font-family: var(--sans); font-weight: 700; font-size: 13px; }
.subscription-page .extend-foot { margin-top: 14px; padding-top: 12px; border-top: 1px dashed rgba(155,120,51,0.35); font-family: var(--serif); font-style: italic; font-size: 13px; color: #8a7a60; transition: color 0.2s; }
.subscription-page .extend-row.on .extend-foot { color: #6a5c2c; }
.subscription-page .extend-foot b { font-style: normal; color: #9b7833; font-weight: 600; }
.subscription-page .extend-switch { flex: 0 0 auto; width: 56px; height: 30px; border-radius: 999px; border: 1px solid rgba(42,33,26,0.25); background: #e3d8c4; position: relative; cursor: pointer; transition: background 0.2s, border-color 0.2s; padding: 0; margin-top: 2px; }
.subscription-page .extend-switch .knob { position: absolute; top: 2px; left: 2px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: transform 0.22s; }
.subscription-page .extend-switch.on { background: #9b7833; border-color: #9b7833; }
.subscription-page .extend-switch.on .knob { transform: translateX(26px); }
.subscription-page .order-total .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #8a7a60; }
.subscription-page .order-total .val { font-family: var(--serif); font-size: 34px; color: #9b7833; }
.subscription-page .order-side .cta { width: 100%; margin-top: 22px; background: linear-gradient(180deg, #d9b765, #b98f3c); color: #16100a; border: none; padding: 17px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.subscription-page .order-side .cta:hover { background: linear-gradient(180deg, #e7c87a, #c89a44); }
.subscription-page .order-side .fineprint { font-family: var(--serif); font-style: italic; font-size: 12px; color: #8a7a60; text-align: center; margin-top: 14px; }

/* ===== FAQ ===== */
.subscription-page .faq-list { max-width: 900px; margin: clamp(36px, 5vw, 56px) auto 0; }
.subscription-page .faq-item { border-bottom: 1px solid var(--line); }
.subscription-page .faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-family: var(--serif); font-size: clamp(19px, 2.2vw, 26px); padding: 24px 44px 24px 0; cursor: pointer; position: relative; }
.subscription-page .faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 300; font-size: 28px; color: var(--gold); transition: transform 0.25s; }
.subscription-page .faq-item.open .faq-q::after { content: "\2212"; }
.subscription-page .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.subscription-page .faq-a-inner { padding: 0 44px 26px 0; font-family: var(--serif); font-size: 17px; line-height: 1.65; color: var(--body); }

/* ===== Floating Order CTA ===== */
.subscription-page .float-cta { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(140%); z-index: 60; opacity: 0; transition: transform 0.45s cubic-bezier(0.2,0.7,0.2,1), opacity 0.45s; }
.subscription-page .float-cta.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.subscription-page .float-cta button { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: #16100a; background: linear-gradient(180deg, #e7c87a, #c89a44); border: none; padding: 17px 34px; border-radius: 999px; cursor: pointer; box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(231,207,158,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.subscription-page .float-cta button:hover { transform: translateY(-2px); }
.subscription-page .float-cta button .glyph { font-family: var(--serif); font-size: 18px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) { .subscription-page .gwall { columns: 3; } }
@media (max-width: 900px) {
  .subscription-page .whatis-points { grid-template-columns: 1fr; }
  .subscription-page .order-body, .subscription-page .order-layout { grid-template-columns: 1fr; }
  .subscription-page .bottles-grid { grid-template-columns: 1fr 1fr; }
  .subscription-page .gwall { columns: 2; }
  .subscription-page .pf2 .pf2-findings { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .subscription-page .bottles-grid { grid-template-columns: 1fr; } .subscription-page .gwall { columns: 1; } .subscription-page .pf2 .collage { grid-template-columns: 1fr; }
  /* The ≤1024px rule gives these `grid-column: span 2`; with one explicit column
     left that spawns an implicit second one, so the collage rendered as two
     cramped 124px/200px columns on a phone instead of stacking. */
  .subscription-page .pf2 .collage .hero-photo,
  .subscription-page .pf2 .collage .quote { grid-column: auto; }
}

/* Phones: the floating pill becomes the design's full-width bottom bar, so the
   page needs room under it and the pill's ✦ goes (the design's bar has none). */
@media (max-width: 860px) {
  .subscription-page { padding-bottom: 78px; }
  .subscription-page .float-cta .glyph { display: none; }
  /* The pill is an inline-flex row, so inside the full-width bar its label
     would sit against the left edge. */
  .subscription-page .float-cta button { display: block; width: 100%; text-align: center; }
}

/* The carousel dots belong to the phone layout; the desktop grid needs none. */
.subscription-page .bdots { display: none; }

/* Gallery band: dark on desktop, the design's cream "gallery-bright" on phones.
   The colour used to sit in an inline style on the section, which no stylesheet
   can override — hence the min-width guard rather than a plain rule. */
@media (min-width: 861px) {
  .subscription-page #gallery { background: linear-gradient(180deg, #1a150f, #14100b); }
}

/* The rating line belongs to the phone hero only (Subscription_FULL_MOBILE) —
   the desktop hero keeps its two buttons instead. */
.subscription-page .hero .stars,
.subscription-page .hero .rev { display: none; }

/* Phones: keep the hero inside the viewport, shrink the composer title */
@media (max-width: 600px) {
  .subscription-page .hero { overflow-x: hidden; }
  .subscription-page .hero .shell { max-width: 100%; }
  .subscription-page .hero h1 { font-size: 34px; line-height: 1.02; overflow-wrap: break-word; }
  .subscription-page .hero .eyebrow { flex-wrap: wrap; justify-content: center; text-align: center; }
  /* The design's phone kicker is a plain gold mono line — no side rules. */
  .subscription-page .hero .eyebrow::before, .subscription-page .hero .eyebrow::after { display: none; }
  /* Design order on phones: kicker → title → lead → ★★★★★ → reviews → photo.
     The buttons return further down, in the #order band. */
  .subscription-page .hero .stars,
  .subscription-page .hero .rev { display: block; }
  .subscription-page .hero .hero-cta { display: none; }
}

/* ---------- Gallery on phones ----------
 * The mobile design shows a curated six of the wall's twelve tiles (the mobile
 * export swaps in the homepage gallery and keeps six .m-keep cards); showing all
 * twelve made this section 4059px of scrolling against the design's ~1820. */
@media (max-width: 560px) {
  .subscription-page .gwall .gtile { display: none; }
  .subscription-page .gwall .gtile.m-keep { display: block; }
}

/* ---------- Bottle cards on phones ----------
 * The mobile design turns the four season bottles into a horizontal snap
 * carousel (.bgrid-m: 76%-wide cards bleeding into the gutters) instead of a
 * stack — that alone is the difference between a 723px section and a 2700px one. */
@media (max-width: 560px) {
  .subscription-page .bottles-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    padding: 0 var(--pad) 4px;
    scroll-padding-left: var(--pad);
    scrollbar-width: none;
  }
  .subscription-page .bottles-grid::-webkit-scrollbar { display: none; }
  .subscription-page .bottles-grid .bcard {
    flex: 0 0 76%;
    max-width: 300px;
    scroll-snap-align: center;
    aspect-ratio: 0.62;
  }
}

/* ---------- Phone-sized proof collage + FAQ ----------
 * Values taken from the standalone mobile design (Subscription_FULL_MOBILE): its
 * collage cards are 20px-padded 200px-tall tiles and its FAQ rows are tighter
 * than the desktop ones we were inheriting. */
@media (max-width: 560px) {
  .subscription-page .pf2 .collage { gap: 12px; }
  .subscription-page .pf2 .collage > div { padding: 20px; border-radius: 8px; }
  .subscription-page .pf2 .collage .hero-photo { min-height: 200px; padding: 0; }
  .subscription-page .pf2 .collage .n { font-size: 40px; line-height: 1; margin: 8px 0; }
  .subscription-page .pf2 .collage .b { font-size: 13px; line-height: 1.5; }
  .subscription-page .pf2 .collage .qt { font-size: 19px; margin: 10px 0; }

  .subscription-page .faq-q { font-size: 19px; padding: 17px 34px 17px 0; }
  .subscription-page .faq-a-inner { font-size: 14.5px; line-height: 1.6; padding: 0 0 18px; }
}

/* The phone layer (subscription-mobile.css) brings the MOBILE design's palette,
   where --ink is the light cream used on its dark bands. This heading sits on a
   cream band, so it needs the dark ink back; the repeated class outranks the
   generated layer's h1,h2,h3 rule. */
@media (max-width: 860px) {
  .subscription-page.subscription-page.subscription-page .bottles-block .sec-h { color: #241c14; }
}

/* home-v2.css's global .sub is the homepage's dark subscription card; on this
 * page .sub is a line of text, and its 2px gold ::after was drawing a stray rule.
 * The global .faq-list likewise arrives with a top border the design doesn't have. */
.subscription-page .sub::after { content: none; }
.subscription-page .faq-list { border-top: 0; }

/* ---------------------------------------------------------------------------
 * The hero, on a phone.
 *
 * On a desktop the bottle shot is a full-bleed band tucked behind the buttons:
 * 100vw wide, pulled up by a negative margin and pushed behind with a negative
 * z-index. At phone width that trick collapses — the picture lands half off the
 * screen with the two buttons sitting on top of it (which is what the page was
 * doing).
 *
 * The MOBILE design (LOLA/v2/whole pages mobile/Subscription_FULL_MOBILE) puts
 * the picture in the ordinary flow under the copy, full width of the column and
 * nothing overlapping it. The compiled phone layer never carried these rules
 * because the design names that block .m-hero-img and our markup does not.
 * ------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .subscription-page .hero {
    padding: 26px 0 0;
    text-align: center;
  }
  .subscription-page .hero h1 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.04;
    margin-top: 16px;
  }
  .subscription-page .hero .sub {
    font-size: 16px;
    margin-top: 14px;
  }
  .subscription-page .hero-cta {
    margin-top: 22px;
    gap: 10px;
  }
  .subscription-page .hero-cta .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  /* Undo the desktop full-bleed trick; the design's own .m-hero-img rules in
     subscription-mobile.css then give the picture its size and radius. */
  .subscription-page .hero-bottles {
    width: auto;
    margin-left: 0;
    transform: none;
    position: static;
    z-index: auto;
  }
}
