/* ============================================================
   DESIGN COFFEE — Premium subscription studio · Paris
   Sticker-based, warm, editorial · uses brand assets
   ============================================================ */

:root {
  /* — Palette — */
  --bg:        #F5EFE6;   /* warm parchment */
  --cream:     #FDFAF5;   /* steamed milk */
  --paper:     #EFE7D9;
  --dark:      #1C1410;   /* espresso black */
  --dark-2:    #2A1E16;
  --accent:    #C4622D;   /* burnt sienna */
  --accent-2:  #D17239;
  --amber:     #E0934B;
  --muted:     #8C7B6E;
  --border:    #E2D8CE;
  --green:     #6FAD7E;

  --line:       rgba(28, 20, 16, 0.10);
  --line-soft:  rgba(28, 20, 16, 0.06);
  --line-dark:  rgba(253, 250, 245, 0.14);
  --line-amber: rgba(196, 98, 45, 0.42);

  /* — Type — */
  --display: "Funnel Display", "Inter", system-ui, sans-serif;
  --sans:    "Inter", system-ui, -apple-system, sans-serif;

  /* — Spacing — */
  --section-y: 160px;
  --gutter:    clamp(20px, 4vw, 64px);

  /* — Motion — */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-ink: cubic-bezier(0.7, 0, 0.3, 1);

  --shadow-warm:  0 30px 80px -30px rgba(60, 32, 18, 0.35), 0 14px 30px -16px rgba(28, 20, 16, 0.18);
  --shadow-deep:  0 50px 120px -40px rgba(28, 20, 16, 0.55);
}

@media (max-width: 900px) { :root { --section-y: 96px; } }

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--dark); }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}
button { background: none; border: none; color: inherit; font: inherit; cursor: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--cream); }

/* ---------- Type utilities ---------- */
.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.label {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--dark);
}
.label.muted { color: var(--muted); }
.label.cream { color: var(--cream); }
.label.amber { color: var(--accent); }

.container {
  width: 100%; max-width: 1320px; margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}

/* ============================================================
   Sticker — decorative hand-drawn images
   ============================================================ */
.sticker {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 8px rgba(28, 20, 16, 0.10));
  will-change: transform;
}
.sticker img { display: block; width: 100%; height: 100%; object-fit: contain; }
@keyframes wiggleA { 0%,100% { transform: rotate(var(--rot,0deg)); } 50% { transform: rotate(calc(var(--rot,0deg) + 3deg)); } }
@keyframes wiggleB { 0%,100% { transform: rotate(var(--rot,0deg)); } 50% { transform: rotate(calc(var(--rot,0deg) - 3deg)); } }
@keyframes floatA  { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-8px) rotate(calc(var(--rot,0deg) + 2deg)); } }
.sticker--wiggle { animation: wiggleA 4.5s ease-in-out infinite; }
.sticker--wiggle-b { animation: wiggleB 5.2s ease-in-out infinite; }
.sticker--float { animation: floatA 6s ease-in-out infinite; }

/* ============================================================
   Reveals — JS-gated so content is visible without JS
   ============================================================ */
html.js .reveal {
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  transform: translateY(20px);
  opacity: 0.001;
  transition:
    clip-path 0.9s var(--ease),
    -webkit-clip-path 0.9s var(--ease),
    transform 0.9s var(--ease),
    opacity 0.9s var(--ease);
  will-change: clip-path, transform;
}
html.js .reveal.is-in {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transform: none;
  opacity: 1;
}
html.js .fx-up    { opacity: 0; transform: translateY(34px); transition: opacity 0.95s var(--ease), transform 0.95s var(--ease); }
html.js .fx-up.is-in { opacity: 1; transform: none; }
html.js .fx-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.95s var(--ease), transform 0.95s var(--ease); }
html.js .fx-left.is-in { opacity: 1; transform: none; }
html.js .fx-label { opacity: 0; transform: translateY(12px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .fx-label.is-in { opacity: 1; transform: none; }
html.js .fx-card  { opacity: 0; transform: translateY(46px) scale(0.985); transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.js .fx-card.is-in { opacity: 1; transform: none; }
html.js .fx-sticker { opacity: 0; transform: scale(0.6) rotate(var(--rot, 0deg)); transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.js .fx-sticker.is-in { opacity: 1; transform: scale(1) rotate(var(--rot, 0deg)); }

.reveal-lines .line { display: block; overflow: hidden; padding: 0.04em 0; }
.reveal-lines .line-inner { display: block; }
html.js .reveal-lines .line-inner {
  transform: translateY(110%);
  transition: transform 1.05s var(--ease);
  will-change: transform;
}
html.js .reveal-lines.is-in .line-inner { transform: translateY(0); }
html.js .reveal-lines.is-in .line:nth-child(1) .line-inner { transition-delay: 0s; }
html.js .reveal-lines.is-in .line:nth-child(2) .line-inner { transition-delay: 0.12s; }
html.js .reveal-lines.is-in .line:nth-child(3) .line-inner { transition-delay: 0.24s; }
html.js .reveal-lines.is-in .line:nth-child(4) .line-inner { transition-delay: 0.36s; }
html.js .reveal-lines.is-in .line:nth-child(5) .line-inner { transition-delay: 0.48s; }

html.no-fx, html.no-fx *, html.no-fx *::before, html.no-fx *::after {
  transition: none !important; animation: none !important;
}

/* ============================================================
   Custom cursor — sticker-style coffee cup on links
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 999px;
  background: var(--accent);
  pointer-events: none; z-index: 9999;
  display: grid; place-items: center;
  font-size: 16px; line-height: 1;
  color: transparent;
  opacity: 0;
  mix-blend-mode: multiply;
  transition:
    width 0.45s var(--ease), height 0.45s var(--ease), margin 0.45s var(--ease),
    background-color 0.5s var(--ease), color 0.5s var(--ease),
    opacity 0.4s ease, mix-blend-mode 0.3s ease;
}
.cursor.is-link {
  width: 58px; height: 58px; margin: -29px 0 0 -29px;
  background: var(--dark);
  color: var(--cream);
  mix-blend-mode: normal;
}
.cursor.is-link::after { content: "☕"; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
@media (prefers-reduced-motion: reduce) { .cursor { display: none; } body { cursor: auto; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 24px; height: 48px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.5s var(--ease), background-color 0.45s var(--ease);
  isolation: isolate;
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--fill, transparent);
  transform: translateX(-101%);
  transition: transform 0.6s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-1px); }

.btn--outline { border: 1px solid var(--dark); color: var(--dark); background: transparent; --fill: var(--dark); }
.btn--outline:hover { color: var(--cream); }
.btn--solid   { background: var(--dark); color: var(--cream); border: 1px solid var(--dark); --fill: var(--accent); }
.btn--solid:hover { border-color: var(--accent); }
.btn--amber   { background: var(--accent); color: var(--cream); border: 1px solid var(--accent); --fill: var(--dark); box-shadow: 0 14px 30px -14px rgba(196, 98, 45, 0.6); }
.btn--amber:hover { border-color: var(--dark); }
.btn--cream   { background: var(--cream); color: var(--dark); border: 1px solid var(--cream); --fill: var(--accent); }
.btn--cream:hover { color: var(--cream); border-color: var(--accent); }
.btn--ghost-cream { border: 1px solid rgba(253,250,245,0.35); color: var(--cream); background: transparent; --fill: rgba(253,250,245,0.10); }
.btn--big { height: 58px; padding: 0 30px; font-size: 14.5px; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(253, 250, 245, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--border);
  padding: 14px 0;
}

/* Nav menu links (pages cibles) */
.nav__menu { display: flex; align-items: center; gap: 26px; }
.nav__menu a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s var(--ease);
}
.nav__menu a:hover { color: var(--accent); }
.nav__menu a.is-current { color: var(--accent); text-decoration: underline; text-underline-offset: 5px; }
@media (max-width: 880px) { .nav__menu { display: none; } }

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  color: var(--dark);
  flex-shrink: 0;
}
.nav__brand .stick {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  display: inline-block;
  transform: rotate(-8deg);
  transition: transform 0.5s var(--ease);
}
.nav__brand:hover .stick { transform: rotate(8deg); }
.nav__brand .stick img { width: 100%; height: 100%; object-fit: contain; }
.nav__links {
  display: flex; gap: 36px;
  font-size: 13px; letter-spacing: 0.02em; color: var(--dark);
}
.nav__link { position: relative; padding: 8px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__ctas { gap: 10px; }
  .nav__ctas .btn--outline { display: none; }
}
@media (max-width: 768px) {
  .nav .container { padding-left: 16px; padding-right: 16px; }
}

/* ============================================================
   Hero — bold sans-serif, scattered stickers
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 45% 55%;
  gap: clamp(24px, 3vw, 48px);
  align-items: center; width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  color: var(--accent);
}
.hero__eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); }
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--dark);
}
.hero__title .accent { color: var(--accent); }
.hero__title .underline {
  display: inline-block;
  position: relative;
}
.hero__title .underline::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 0.06em;
  height: 0.14em;
  background: var(--accent);
  opacity: 0.9;
  transform: skewY(-1.5deg);
  border-radius: 999px;
  z-index: -1;
}
.hero__sub {
  margin-top: 32px;
  max-width: 480px;
  color: var(--muted);
  font-size: 18px; line-height: 1.6;
}
.hero__tagline {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero__ctas {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.hero__legal {
  margin-top: 26px;
  font-size: 13.5px; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero__legal .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--accent); }

/* Stickers around hero text */
.hero__stickers { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__sticker-1 { top: 14%; right: 56%; width: 84px; height: 84px; --rot: -10deg; transform: rotate(-10deg); }
.hero__sticker-2 { top: 52%; left: 2%; width: 96px; height: 96px; --rot: 6deg; transform: rotate(6deg); }
.hero__sticker-3 { bottom: 8%; right: 50%; width: 72px; height: 72px; --rot: -15deg; transform: rotate(-15deg); }

/* Membership card — Group 6 reference */
@keyframes floatLoop {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-8px) rotate(-0.4deg); }
}
@keyframes cardEnter {
  0%   { transform: translateY(60px) rotate(-5deg); opacity: 0; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}
.hero__aside { position: relative; }
.member-card {
  position: relative;
  background: var(--cream);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-warm);
  max-width: 520px;
  margin-left: auto;
  padding: 32px 36px 28px;
  display: flex; flex-direction: column;
  min-height: 540px;
}
html.js .member-card {
  opacity: 0;
  animation: cardEnter 1.2s var(--ease) 0.4s forwards, floatLoop 8s ease-in-out 1.8s infinite;
}

.member-card__head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
}
.member-card__label {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.005em;
}
.member-card__avail {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.member-card__avail .dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 4px rgba(111, 173, 126, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(111,173,126,0.6); }
  60%     { box-shadow: 0 0 0 10px rgba(111,173,126,0); }
}

.member-card__body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
}
.member-card__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 5.5vw, 64px);
  line-height: 0.92; letter-spacing: -0.05em;
  color: var(--dark);
  max-width: 6ch;
}

/* Scattered stickers — right side, like Group 6 */
.member-card__stickers {
  position: absolute;
  top: -10px; right: -8px;
  width: 200px; height: 240px;
  pointer-events: none;
}
.member-card__word {
  position: absolute;
  top: 8px; right: 56px;
  font-family: "Caveat", "Funnel Display", cursive;
  font-weight: 700;
  font-size: 30px;
  color: var(--dark);
  background: var(--cream);
  padding: 4px 12px 2px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--cream), 0 4px 8px rgba(28,20,16,0.1);
  transform: rotate(-8deg);
}
.member-card__st {
  position: absolute;
  filter: drop-shadow(0 4px 8px rgba(28,20,16,0.1));
}
.member-card__st img { width: 100%; height: 100%; object-fit: contain; }

.member-card__st-1 { top: 50px; right: 14px; width: 78px; height: 88px; transform: rotate(-6deg); }   /* jug */
.member-card__st-2 { top: 130px; right: 90px; width: 60px; height: 60px; transform: rotate(10deg); }  /* cup + spoon */
.member-card__st-3 { top: 156px; right: 6px;  width: 56px; height: 56px; transform: rotate(-12deg); } /* beans */
.member-card__st-4 { top: 210px; right: 60px; width: 64px; height: 56px; transform: rotate(8deg); }   /* mug */

.member-card__foot {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.member-card__price { display: flex; flex-direction: column; gap: 2px; }
.member-card__priceLabel {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.member-card__priceRow { display: flex; align-items: baseline; gap: 6px; }
.member-card__priceNum {
  font-family: var(--display); font-weight: 800;
  font-size: 36px; line-height: 0.95; letter-spacing: -0.045em;
  color: var(--dark);
}
.member-card__priceUnit { font-size: 13px; color: var(--muted); }
.member-card__cta { white-space: nowrap; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .member-card { margin-left: 0; }
  .hero__sticker-1, .hero__sticker-2, .hero__sticker-3 { display: none; }
}

/* ============================================================
   Clients marquee — cup pattern + dark strip
   ============================================================ */
.marquee {
  position: relative;
  background: var(--dark);
  color: var(--cream);
  padding: 44px 0;
  overflow: hidden;
}
.marquee::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/rectangle-1.png");
  background-size: 200px auto;
  background-repeat: repeat;
  opacity: 0.06;
  filter: invert(1) brightness(2);
}
.marquee__label {
  position: relative;
  text-align: center;
  color: rgba(253,250,245,0.55);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 28px;
}
.marquee__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex; align-items: center; gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__name {
  font-family: var(--display); font-weight: 800;
  font-size: 30px; letter-spacing: -0.035em;
  color: var(--cream);
}
.marquee__name em {
  font-style: italic; font-weight: 600; color: var(--accent-2);
}
.marquee__bean {
  width: 22px; height: 22px;
  display: inline-block;
}
.marquee__bean img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.6; }

/* ============================================================
   How it works — 3 cards on amber gradient
   ============================================================ */
.how {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}
.how__head { text-align: center; margin-bottom: 80px; max-width: 880px; margin-left: auto; margin-right: auto; position: relative; }
.how__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-top: 18px;
}
.how__title .accent { color: var(--accent); }

.how__sticker {
  position: absolute;
  top: -20px; left: 50%;
  width: 80px; height: 80px;
  transform: translateX(-50%) rotate(-8deg);
}
.how__sticker img { width: 100%; height: 100%; object-fit: contain; }

.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--dark);
  border-radius: 24px;
  padding: 36px 32px 32px;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease), border-color 0.7s var(--ease);
  display: flex; flex-direction: column;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  border-color: var(--accent);
}
.how-card__sticker {
  position: absolute;
  top: 24px; right: 22px;
  width: 72px; height: 72px;
  transition: transform 0.7s var(--ease);
}
.how-card:hover .how-card__sticker { transform: rotate(10deg) scale(1.05); }
.how-card__sticker img { width: 100%; height: 100%; object-fit: contain; }
.how-card__num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(80px, 8vw, 120px); line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--accent);
  margin-bottom: auto;
}
.how-card__title {
  font-family: var(--display); font-weight: 800;
  font-size: 26px; line-height: 1.05; letter-spacing: -0.035em;
  margin-top: 28px;
  color: var(--dark);
  max-width: 14ch;
}
.how-card__desc {
  color: var(--muted); font-size: 14.5px; line-height: 1.7;
  margin-top: 14px;
}

@media (max-width: 900px) { .how__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Assurance — full-bleed amber gradient background
   ============================================================ */
.assurance {
  position: relative;
  padding: var(--section-y) 0;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.assurance::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/img-16.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.assurance::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 20, 16, 0.55) 0%, rgba(28, 20, 16, 0.45) 50%, rgba(28, 20, 16, 0.7) 100%);
  z-index: -1;
}
.assurance__grid {
  position: relative;
  display: grid; grid-template-columns: 0.9fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}
.assurance__num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(180px, 24vw, 360px);
  line-height: 0.82; letter-spacing: -0.07em;
  color: var(--cream);
  text-shadow: 0 10px 40px rgba(28, 20, 16, 0.3);
}
.assurance__bar { width: 80px; height: 2px; background: var(--cream); margin: 28px 0; opacity: 0.6; }
.assurance__caption {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.3;
  color: rgba(253,250,245,0.85);
  max-width: 24ch;
  letter-spacing: -0.02em;
}
.assurance__quote {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--cream);
  max-width: 22ch;
}
.assurance__cite {
  margin-top: 30px;
  display: flex; align-items: center; gap: 14px;
  color: rgba(253,250,245,0.85);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.assurance__cite::before {
  content: ""; width: 32px; height: 1px; background: var(--cream); opacity: 0.6;
}
.assurance__sticker {
  position: absolute;
  bottom: 60px; right: 6%;
  width: 130px; height: 130px;
  transform: rotate(8deg);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
  z-index: 1;
}
.assurance__sticker img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 900px) {
  .assurance__grid { grid-template-columns: 1fr; gap: 28px; }
  .assurance__sticker { display: none; }
}

/* ============================================================
   Positioning — cream, pure typography
   ============================================================ */
.position {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
}
.position__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(42px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 18ch;
  margin: 0 auto;
}
.position__title .accent { color: var(--accent); }
.position__title .strike {
  display: inline-block;
  position: relative;
  color: var(--muted);
}
.position__title .strike::after {
  content: "";
  position: absolute; left: -2%; right: -2%;
  top: 52%;
  height: 0.08em;
  background: var(--accent);
  transform: skewY(-2deg);
  border-radius: 999px;
}
.position__sub {
  max-width: 58ch;
  margin: 36px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}
.position__sub strong { color: var(--dark); font-weight: 500; }
.position__sticker {
  position: absolute;
  top: 18%; right: 8%;
  width: 110px; height: 110px;
  transform: rotate(12deg);
}
.position__sticker img { width: 100%; height: 100%; object-fit: contain; }

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

/* ============================================================
   Features — 3×2 grid with sticker icons
   ============================================================ */
.features { padding: 30px 0 var(--section-y); position: relative; }
.features__head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  margin-bottom: 64px; flex-wrap: wrap;
}
.features__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.96; letter-spacing: -0.045em;
  max-width: 14ch;
  margin-top: 14px;
}
.features__title .accent { color: var(--accent); }

.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.feat {
  background: var(--cream);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  transition: background-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}
.feat:hover {
  background: var(--bg);
  transform: translateY(-2px);
  z-index: 2;
  box-shadow: var(--shadow-warm);
}
.feat__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  transition: transform 0.5s var(--ease);
  margin-bottom: 6px;
}
.feat:hover .feat__icon { transform: rotate(-8deg) scale(1.05); }
.feat__icon img { width: 100%; height: 100%; object-fit: contain; }
.feat__name {
  font-family: var(--display); font-weight: 800;
  font-size: 24px; line-height: 1.1; letter-spacing: -0.035em;
  color: var(--dark);
}
.feat__desc {
  color: var(--muted); font-size: 14.5px; line-height: 1.7;
  margin-top: auto;
}
.features__foot {
  margin-top: 48px; display: flex; justify-content: center;
}
.features__link {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; color: var(--accent);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  transition: gap 0.5s var(--ease);
}
.features__link:hover { gap: 22px; }

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Pricing — dark card on amber gradient bg
   ============================================================ */
.pricing {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.pricing__head { text-align: center; margin-bottom: 56px; position: relative; }
.pricing__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.96; letter-spacing: -0.045em;
  margin-top: 16px;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
}
.pricing__title .accent { color: var(--accent); }
.pricing__sticker-l {
  position: absolute;
  top: -10px; left: 8%;
  width: 110px; height: 110px;
  transform: rotate(-18deg);
}
.pricing__sticker-r {
  position: absolute;
  top: 10px; right: 8%;
  width: 100px; height: 100px;
  transform: rotate(14deg);
}
.pricing__sticker-l img, .pricing__sticker-r img { width: 100%; height: 100%; object-fit: contain; }

.priceCard {
  max-width: 720px; margin: 0 auto;
  position: relative;
  background: var(--dark);
  color: var(--cream);
  border-radius: 32px;
  padding: 44px clamp(28px, 4vw, 52px);
  box-shadow: 0 50px 120px -40px rgba(196, 98, 45, 0.55), 0 18px 40px -24px rgba(28, 20, 16, 0.45);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.priceCard::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/img-14.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
}
.priceCard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0.6) 0%, rgba(28,20,16,0.85) 60%, rgba(28,20,16,0.95) 100%);
  z-index: -1;
}
.priceCard:hover { transform: translateY(-4px); }

.priceCard__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-bottom: 28px;
  border-bottom: 1px dashed var(--line-dark);
}
.priceCard__name {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.035em;
}
.priceCard__pause {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
}
.priceCard__pause .dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(196, 98, 45, 0.18);
}

.priceCard__priceRow {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 4px;
}
.priceCard__priceMain {
  display: flex; align-items: flex-end; gap: 12px;
  line-height: 0.9;
}
.priceCard__priceNum {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(72px, 10vw, 132px); line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--cream);
  white-space: nowrap;
}
.priceCard__priceUnit {
  font-family: var(--sans); font-size: 18px; color: rgba(253,250,245,0.6);
  padding-bottom: 14px;
}
.priceCard__annual {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(253,250,245,0.7);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.priceCard__annual b { color: var(--cream); font-weight: 600; }
.priceCard__save {
  display: inline-block;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(196, 98, 45, 0.22); color: var(--cream);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.priceCard__divider {
  margin: 32px 0;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--line-dark) 0 7px, transparent 7px 14px);
}
.priceCard__features {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
}
.priceCard__features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--cream);
}
.priceCard__features li svg {
  flex: 0 0 18px; color: var(--accent);
}
.priceCard__cta { margin-top: 36px; }
.priceCard__foot {
  margin-top: 22px;
  font-style: italic;
  font-size: 14px; color: rgba(253,250,245,0.7);
  text-align: center; line-height: 1.5;
}

.reassure {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1180px; margin-left: auto; margin-right: auto;
}
.reassure__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 24px 22px 28px;
  display: flex; align-items: center; gap: 20px;
  overflow: visible;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.reassure__card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-warm);
}
.reassure__icon {
  width: 64px; height: 64px;
  flex: 0 0 64px;
  display: flex; align-items: center; justify-content: center;
  /* no overflow:hidden — let the sticker breathe past its 64px box */
}
.reassure__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  transform: rotate(-6deg);
  filter: drop-shadow(0 4px 8px rgba(28, 20, 16, 0.15));
}
  display: grid; place-items: center;
  overflow: hidden;
}
.reassure__icon img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.reassure__title {
  font-family: var(--display); font-weight: 800;
  font-size: 17px; letter-spacing: -0.03em;
  color: var(--dark);
}
.reassure__desc {
  font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 2px;
}

@media (max-width: 720px) {
  .priceCard__features { grid-template-columns: 1fr; }
  .reassure { grid-template-columns: 1fr; }
  .pricing__sticker-l, .pricing__sticker-r { display: none; }
}

/* ============================================================
   FAQ + sticky contact card
   ============================================================ */
.faq { padding: var(--section-y) 0; }
.faq__grid {
  display: grid; grid-template-columns: 1.45fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.faq__head { margin-bottom: 40px; }
.faq__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.96; letter-spacing: -0.045em;
  margin-top: 16px;
  max-width: 14ch;
}
.faq__title .accent { color: var(--accent); }

.faq__list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__btn {
  width: 100%; padding: 26px 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: inherit;
}
.faq-item__q {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.25; letter-spacing: -0.03em;
  color: var(--dark);
}
.faq-item__plus {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--border); display: grid; place-items: center;
  color: var(--accent);
  transition: transform 0.55s var(--ease), background-color 0.55s var(--ease), color 0.55s var(--ease), border-color 0.55s var(--ease);
}
.faq-item__plus svg { transition: transform 0.55s var(--ease); }
.faq-item.is-open .faq-item__plus { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.faq-item.is-open .faq-item__plus svg { transform: rotate(45deg); }
.faq-item__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease);
}
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__bodyInner {
  overflow: hidden;
  color: var(--muted); font-size: 15.5px; line-height: 1.7;
  padding-right: 60px;
}
.faq-item.is-open .faq-item__bodyInner { padding-bottom: 26px; }

.contact-card {
  position: sticky; top: 100px;
  background: var(--dark); color: var(--cream);
  border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow-warm);
  overflow: hidden;
  isolation: isolate;
}
.contact-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/img-15.jpg");
  background-size: cover; background-position: center;
  opacity: 0.4;
  z-index: -2;
}
.contact-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0.4) 0%, rgba(28,20,16,0.85) 70%);
  z-index: -1;
}
.contact-card__sticker {
  width: 56px; height: 56px;
  margin-bottom: 22px;
  transform: rotate(-8deg);
  background: var(--cream);
  border-radius: 14px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card__sticker img { width: 100%; height: 100%; object-fit: contain; filter: none; }
.contact-card__eyebrow { color: var(--accent-2); margin-bottom: 12px; }
.contact-card__title {
  font-family: var(--display); font-weight: 800; font-size: 36px;
  line-height: 1; letter-spacing: -0.045em;
}
.contact-card__title .accent { color: var(--accent-2); }
.contact-card__desc { margin-top: 14px; color: rgba(253,250,245,0.7); font-size: 14.5px; line-height: 1.65; }
.contact-card__cta { margin-top: 24px; }
.contact-card__meta {
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px; color: rgba(253,250,245,0.7);
}
.contact-card__meta a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { position: static; }
}

/* ============================================================
   Final CTA — full-bleed amber gradient background
   ============================================================ */
.finalcta {
  position: relative;
  padding: clamp(120px, 18vh, 200px) 0;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.finalcta::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/img-13.jpg");
  background-size: cover; background-position: center;
  z-index: -2;
}
.finalcta::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(28,20,16,0.3) 0%, rgba(28,20,16,0.6) 70%, rgba(28,20,16,0.85) 100%);
  z-index: -1;
}
.finalcta__inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
.finalcta__label { color: rgba(253,250,245,0.85); margin-bottom: 20px; }
.finalcta__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95; letter-spacing: -0.05em;
  color: var(--cream);
  text-shadow: 0 10px 40px rgba(28, 20, 16, 0.4);
}
.finalcta__title .accent { color: var(--bg); }
.finalcta__sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(253,250,245,0.85);
  line-height: 1.55;
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
}
.finalcta__ctas {
  margin-top: 44px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.finalcta__sticker-l {
  position: absolute;
  top: 12%; left: 8%;
  width: 110px; height: 110px;
  transform: rotate(-14deg);
  z-index: 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
}
.finalcta__sticker-r {
  position: absolute;
  bottom: 14%; right: 8%;
  width: 130px; height: 130px;
  transform: rotate(12deg);
  z-index: 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
}
.finalcta__sticker-l img, .finalcta__sticker-r img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 900px) {
  .finalcta__sticker-l, .finalcta__sticker-r { display: none; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 100px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1.1fr; gap: 60px;
  margin-bottom: 80px;
}
.footer__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 800; font-size: 28px;
  letter-spacing: -0.04em; margin-bottom: 18px;
}
.footer__brand .stick {
  width: 36px; height: 36px; flex: 0 0 36px;
  transform: rotate(-8deg);
  background: var(--cream);
  border-radius: 8px;
  padding: 4px;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer__brand .stick img { width: 100%; height: 100%; object-fit: contain; filter: none; }
.footer__tag {
  font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: 18px; color: rgba(253,250,245,0.6);
  max-width: 30ch;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.footer__contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--accent); }
.footer__contact a:hover { color: var(--cream); }

.footer__colHead { color: var(--accent); margin-bottom: 18px; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer__list a { position: relative; }
.footer__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.footer__list a:hover::after { transform: scaleX(1); }

.footer__cta {
  background: rgba(253, 250, 245, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 22px; padding: 28px;
  position: relative;
  overflow: hidden;
}
.footer__cta h4 {
  font-family: var(--display); font-weight: 800; font-size: 24px;
  line-height: 1.05; letter-spacing: -0.035em;
}
.footer__cta h4 .accent { color: var(--accent); }
.footer__cta p { color: rgba(253,250,245,0.65); font-size: 14px; margin-top: 8px; line-height: 1.5; }
.footer__cta .btn { margin-top: 20px; }

.footer__bottom {
  border-top: 1px solid var(--line-dark); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(253,250,245,0.5); letter-spacing: 0.04em;
}
.footer__bottom .stick {
  width: 18px; height: 18px; display: inline-block; vertical-align: middle;
  margin-right: 6px;
}
.footer__bottom .stick img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.5; }

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


/* ============================================================
   MEMBER CARD — rebuilt for new brief
   ============================================================ */
.member-card {
  background: var(--dark);
  color: var(--cream);
  border: 1px solid var(--dark);
  padding: 24px 28px 26px;
  min-height: 0;
  display: flex; flex-direction: column;
}
.member-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/img-16.jpg");
  background-size: cover; background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.member-card > * { position: relative; z-index: 1; }
.member-card__head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.member-card__brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 800;
  font-size: 18px; letter-spacing: -0.035em;
  color: var(--cream);
}
.member-card__brandIcon {
  width: 22px; height: 22px; display: inline-block;
  transform: rotate(-8deg);
}
.member-card__brandIcon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.member-card__avail {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,250,245,0.65); font-weight: 500;
}

/* Espresso header band */
.member-card__band {
  margin: 18px -28px 0;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  display: flex; gap: 36px;
  white-space: nowrap;
  border-top: 1px dashed rgba(28,20,16,0.2);
  border-bottom: 1px dashed rgba(28,20,16,0.2);
}
.member-card__band span { animation: marquee 22s linear infinite; flex-shrink: 0; }

.member-card__label {
  margin-top: 22px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,250,245,0.55);
}

.member-card__priceBlock {
  margin-top: 14px;
}
.member-card__priceRow {
  display: flex; align-items: baseline; gap: 8px;
}
.member-card__priceNum {
  font-family: var(--display); font-weight: 800;
  font-size: 56px; line-height: 0.9; letter-spacing: -0.05em;
  color: var(--cream);
}
.member-card__priceUnit { font-size: 16px; color: rgba(253,250,245,0.65); }
.member-card__annual {
  margin-top: 8px;
  font-size: 13.5px; color: rgba(253,250,245,0.65);
  font-style: italic;
  font-family: var(--display); font-weight: 500;
}
.member-card__annual b { color: var(--accent-2); font-weight: 600; font-style: normal; }

.member-card__checks {
  list-style: none;
  margin: 22px 0 22px;
  padding: 20px 0;
  border-top: 1px dashed rgba(253,250,245,0.18);
  border-bottom: 1px dashed rgba(253,250,245,0.18);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px;
  font-size: 13px;
  color: rgba(253,250,245,0.9);
}
.member-card__checks li {
  display: flex; align-items: center; gap: 9px;
  line-height: 1.3;
}
.member-card__check {
  width: 18px; height: 18px;
  flex: 0 0 18px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(196,98,45,0.18);
  color: var(--accent-2);
}
.member-card__cta { margin-top: 0; }

.member-card__stickers {
  position: absolute;
  bottom: -28px; right: -22px;
  width: 160px; height: 120px;
  pointer-events: none;
  z-index: 2;
}
.member-card__st {
  position: absolute;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}
.member-card__st img { width: 100%; height: 100%; object-fit: contain; }
.member-card__st-1 { top: 0; right: 14px; width: 60px; height: 60px; transform: rotate(-10deg); }
.member-card__st-2 { top: 38px; right: 70px; width: 78px; height: 88px; transform: rotate(8deg); }

@media (max-width: 600px) {
  .member-card__checks { grid-template-columns: 1fr; }
  .member-card__priceNum { font-size: 44px; }
}

/* ============================================================
   SERVICES MARQUEE — dark band w/ ☕ separators
   ============================================================ */
.servicesMarquee {
  background: var(--dark);
  color: var(--cream);
  padding: 28px 0;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(0,0,0,0.4);
}
.servicesMarquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.servicesMarquee__track {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap; width: max-content;
  animation: marquee 60s linear infinite;
}
.servicesMarquee:hover .servicesMarquee__track { animation-play-state: paused; }
.servicesMarquee__item {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.035em;
  color: var(--cream);
}
.servicesMarquee__item em {
  color: var(--accent-2); font-style: italic; font-weight: 500;
}
.servicesMarquee__bean {
  font-size: 22px;
  color: var(--accent);
  display: inline-block;
  transform: translateY(-2px);
  filter: saturate(1.2);
}

/* ============================================================
   WEBFLOW SECTION
   ============================================================ */
.webflow {
  padding: var(--section-y) 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.webflow__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.webflow__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.95; letter-spacing: -0.045em;
  margin-top: 18px;
  color: var(--dark);
}
.webflow__title .accent { color: var(--accent); font-style: italic; font-weight: 600; }
.webflow__p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16.5px; line-height: 1.7;
  max-width: 44ch;
}
.webflow__p strong { color: var(--dark); font-weight: 500; }
.webflow__stamps {
  margin-top: 36px;
  display: flex; gap: 18px; align-items: center;
}
.webflow__stamp {
  width: 56px; height: 56px;
  display: inline-block;
  transform: rotate(-6deg);
  filter: drop-shadow(0 6px 12px rgba(28,20,16,0.15));
}
.webflow__stamp:nth-child(2) { transform: rotate(8deg); }
.webflow__stamp img { width: 100%; height: 100%; object-fit: contain; }

.webflowReq {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-warm);
  position: relative;
}
.webflowReq__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.webflowReq__label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.webflowReq__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.webflowReq__status .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(196,98,45,0.2);
  animation: pulse 2.2s ease-in-out infinite;
}
.webflowReq__quote {
  margin: 20px 0 6px;
  padding: 18px 20px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: 18.5px; line-height: 1.4; letter-spacing: -0.015em;
  color: var(--dark);
}
.webflowReq__steps {
  list-style: none;
  margin-top: 8px;
  display: flex; flex-direction: column;
}
.webflowReq__steps li {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  align-items: start;
}
.webflowReq__steps li:first-child { border-top: 0; }
.webflowReq__num {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.04em;
  color: var(--muted);
}
.webflowReq__steps li.is-done .webflowReq__num,
.webflowReq__steps li.is-active .webflowReq__num { color: var(--accent); }
.webflowReq__steps b {
  font-family: var(--display); font-weight: 700;
  font-size: 15.5px; letter-spacing: -0.015em; color: var(--dark);
  display: block;
}
.webflowReq__steps p {
  font-size: 13.5px; color: var(--muted); margin-top: 2px; line-height: 1.45;
}
.webflowReq__steps li.is-active {
  position: relative;
}
.webflowReq__steps li.is-active::after {
  content: "";
  position: absolute;
  right: -4px; top: 18px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(196,98,45,0.2);
  animation: pulse 2.2s ease-in-out infinite;
}

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


/* ============================================================
   v4 OVERRIDES — Sober refinements (titles black, etc.)
   ============================================================ */

/* Titles always dark — accent reserved for labels & CTAs */
.hero__title,
.hero__title .accent,
.hero__title .underline,
.how__title,
.how__title .accent,
.features__title,
.features__title .accent,
.pricing__title,
.pricing__title .accent,
.faq__title,
.faq__title .accent,
.position__title,
.position__title .accent {
  color: var(--dark);
}
/* Italic in headlines for emphasis (replaces accent) */
.hero__title em,
.position__title em,
.contact-card__title em,
.finalcta__title em {
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: inherit;
}
/* Remove the orange underline accent under hero "attitré" — no longer needed */
.hero__title .underline::after { display: none; }
.position__title .strike { color: var(--muted); }
.position__title .strike::after { display: none; }

/* Final CTA title kept on dark bg (cream) */
.finalcta__title,
.finalcta__title .accent { color: var(--cream); }

/* Pricing card title section keeps clean accent only on the eyebrow label */
.pricing__title .accent { color: var(--dark); }

/* ============================================================
   NAV — always fixed, never hides
   ============================================================ */
.nav { position: fixed; transform: none !important; }

/* ============================================================
   LOYALTY CARD (replaces member-card)
   ============================================================ */
@keyframes loyaltyEnter {
  0%   { transform: translateY(40px) rotate(0deg); opacity: 0; }
  100% { transform: translateY(0) rotate(-3.5deg); opacity: 1; }
}
@keyframes loyaltyFloat {
  0%, 100% { transform: translateY(0) rotate(-3.5deg); }
  50%      { transform: translateY(-6px) rotate(-3deg); }
}
.loyalty {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  background: var(--cream);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 28px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 40px 80px -28px rgba(28,20,16,0.22),
    0 14px 28px -16px rgba(28,20,16,0.12);
  transform: rotate(-3.5deg);
}
html.js .loyalty {
  opacity: 0;
  animation:
    loyaltyEnter 1s var(--ease) 0.3s forwards,
    loyaltyFloat 9s ease-in-out 1.4s infinite;
}
/* Coffee bean stamps watermark pattern */
.loyalty::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(196,98,45,0.05) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 78%, rgba(196,98,45,0.05) 0 5px, transparent 6px),
    radial-gradient(circle at 76% 14%, rgba(196,98,45,0.04) 0 4px, transparent 5px);
  pointer-events: none;
  border-radius: inherit;
}

.loyalty__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.loyalty__brand {
  font-family: var(--display); font-weight: 800;
  font-size: 18px; letter-spacing: -0.035em;
  color: var(--dark);
  display: inline-flex; align-items: center; gap: 8px;
}
.loyalty__brandIcon {
  width: 22px; height: 22px; display: inline-block;
  transform: rotate(-8deg);
}
.loyalty__brandIcon img { width: 100%; height: 100%; object-fit: contain; }
.loyalty__no {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.loyalty__label {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.loyalty__sig {
  margin-top: 4px;
  font-family: "Caveat", "Funnel Display", cursive;
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.loyalty__stampsLabel {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}
.loyalty__count {
  font-family: var(--display); font-weight: 700; font-style: normal;
  font-size: 14px;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.loyalty__stamps {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.loyalty__stamp {
  aspect-ratio: 1;
  border: 1px dashed var(--border);
  border-radius: 999px;
  display: grid; place-items: center;
  position: relative;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255,255,255,0.4);
}
.loyalty__stamp.is-on {
  border: 1px solid var(--accent);
  background: rgba(196,98,45,0.06);
}
.loyalty__stamp.is-on img {
  width: 70%; height: 70%; object-fit: contain;
  transform: rotate(-6deg);
}
.loyalty__stamp:nth-child(2).is-on img { transform: rotate(8deg); }
.loyalty__stamp:nth-child(3).is-on img { transform: rotate(-12deg); }
.loyalty__stamp:nth-child(4).is-on img { transform: rotate(5deg); }
.loyalty__stamp:nth-child(5).is-on img { transform: rotate(-3deg); }
.loyalty__stamp.is-final {
  font-family: var(--display);
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
  border-style: solid;
}
.loyalty__foot {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 980px) {
  .loyalty { margin: 0 auto; max-width: 380px; }
}

/* ============================================================
   CLIENTS — discreet horizontal list
   ============================================================ */
.clients {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  text-align: center;
}
.clients__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 26px;
}
.clients__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
}
.clients__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.03em;
  color: var(--muted);
  transition: color 0.5s var(--ease);
}
.clients__name:nth-child(3n+1) { font-style: italic; font-weight: 500; }
.clients__name:hover { color: var(--dark); }

/* ============================================================
   PROJECTS — clean masonry grid
   ============================================================ */
.projects {
  padding: var(--section-y) 0;
}
.projects__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 56px;
  flex-wrap: wrap;
}
.projects__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--dark);
  margin-top: 16px;
  max-width: 14ch;
}
.projects__lede {
  max-width: 38ch;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.proj {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.proj:hover { transform: translateY(-3px); border-color: var(--accent); }
.proj__media {
  position: relative;
  width: 100%;
  background: var(--paper);
  overflow: hidden;
}
.proj__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(28,20,16,0.04) 0,
      rgba(28,20,16,0.04) 2px,
      transparent 2px, transparent 9px),
    linear-gradient(180deg, var(--paper), #ebe1d2);
}
.proj__media .ph {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  text-align: center;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  z-index: 2;
}
.proj__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0) 50%, rgba(28,20,16,0.82) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 3;
  color: var(--cream);
}
.proj:hover .proj__overlay { opacity: 1; }
.proj__cat {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
  margin-bottom: 4px;
}
.proj__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.proj--lg { grid-column: span 3; }
.proj--lg .proj__media { aspect-ratio: 4 / 3; }
.proj--md { grid-column: span 3; }
.proj--md .proj__media { aspect-ratio: 4 / 3; }
.proj--sm { grid-column: span 2; }
.proj--sm .proj__media { aspect-ratio: 1 / 1; }
.proj--tall { grid-column: span 2; }
.proj--tall .proj__media { aspect-ratio: 3 / 4; }
@media (max-width: 900px) {
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .proj { grid-column: span 1 !important; }
  .proj .proj__media { aspect-ratio: 4 / 3 !important; }
}
.projects__foot { margin-top: 48px; text-align: center; }
.projects__link {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 4px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.projects__link:hover { gap: 18px; color: var(--accent); border-color: var(--accent); }

/* ============================================================
   WEBFLOW NOTE — quiet inline (replaces full section)
   ============================================================ */
.webflowNote { padding: 0 0 var(--section-y); }
.webflowNote__box {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.webflowNote__badge {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding: 7px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  white-space: nowrap;
  align-self: start;
  margin-top: 4px;
}
.webflowNote__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}
.webflowNote__text p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 64ch;
}
.webflowNote__text p strong { color: var(--dark); font-weight: 500; }
@media (max-width: 700px) {
  .webflowNote__box { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   PRICING — fix amber CTA hover (NO dark brown on brown)
   ============================================================ */
.btn--amber {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
  --fill: transparent;
  box-shadow: 0 14px 30px -14px rgba(196, 98, 45, 0.6);
}
/* Override the dark fill that slid in on hover — use a lighter amber instead */
.btn--amber::before { background: var(--accent-2); }
.btn--amber:hover { border-color: var(--accent-2); color: var(--cream); }

/* Aerate pricing card */
.priceCard {
  background: var(--dark);
  border-radius: 24px;
}
.priceCard::before { display: none; }
.priceCard::after  { display: none; }
.priceCard {
  padding: 42px clamp(28px, 4vw, 52px);
}
.priceCard__features { gap: 14px 24px; margin-bottom: 28px; }
.priceCard__features li { font-size: 14px; line-height: 1.4; }

/* ============================================================
   FOOTER — black bg
   ============================================================ */
.footer { background: #0D0D0D; }

/* ============================================================
   HERO — kill the orange decorative stickers behind text
   (keep loyalty card; reduce noise)
   ============================================================ */
.hero__stickers { display: none; }

/* Smaller decorative stickers in dense sections — keep but quieter */
.position__sticker,
.pricing__sticker-l,
.pricing__sticker-r {
  opacity: 0.45;
  filter: grayscale(0.2);
}
.assurance__sticker {
  opacity: 1;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
}

/* ============================================================
   Reveal motion — softer & longer (single continuous thread)
   ============================================================ */
html.js .reveal,
html.js .fx-up,
html.js .fx-left,
html.js .fx-label,
html.js .fx-card {
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .reveal-lines .line-inner {
  transition-duration: 1.3s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}



/* ============================================================
   v5 — landscape loyalty + horizontal projects + line clip fix
   ============================================================ */

/* —— Reveal-lines: prevent descender clipping on g, p, y, j —— */
.reveal-lines .line { padding: 0.12em 0; }

/* —— LOYALTY CARD: landscape 1.6:1, minimal —— */
.loyalty {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  aspect-ratio: 1.6 / 1;
  background: #FDFAF5;
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 40px 80px -28px rgba(28,20,16,0.22),
    0 14px 28px -16px rgba(28,20,16,0.12);
  transform: rotate(-3.5deg);
  animation: none !important;
}
html.js .loyalty {
  opacity: 0;
  animation:
    loyaltyEnter 1s var(--ease) 0.3s forwards,
    loyaltyFloat 9s ease-in-out 1.4s infinite !important;
}
.loyalty::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(196,98,45,0.06) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 78%, rgba(196,98,45,0.06) 0 5px, transparent 6px),
    radial-gradient(circle at 76% 14%, rgba(196,98,45,0.04) 0 4px, transparent 5px);
  pointer-events: none;
  border-radius: inherit;
}
.loyalty__inner {
  position: relative;
  height: 100%;
  padding: 22px 26px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  z-index: 1;
}
.loyalty__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.loyalty__brand {
  font-family: var(--display); font-weight: 800;
  font-size: 17px; letter-spacing: -0.035em;
  color: var(--dark);
  display: inline-flex; align-items: center; gap: 7px;
}
.loyalty__brandIcon {
  width: 20px; height: 20px; display: inline-block;
  transform: rotate(-8deg);
}
.loyalty__brandIcon img { width: 100%; height: 100%; object-fit: contain; }
.loyalty__label {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.loyalty__art {
  position: relative;
  display: grid; place-items: center;
  min-height: 0;
  overflow: hidden;
}
.loyalty__art img {
  width: 88%;
  max-height: 100%;
  object-fit: contain;
  transform: rotate(-2deg);
  filter: drop-shadow(0 4px 10px rgba(28,20,16,0.06));
}
.loyalty__foot {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.loyalty__dot { color: var(--accent); }
.loyalty__city { letter-spacing: 0.06em; font-style: normal; font-weight: 500; font-size: 11px; text-transform: uppercase; color: var(--muted); }

/* Disable previous loyalty rules that don't apply anymore */
.loyalty__no, .loyalty__sig + .loyalty__stampsLabel,
.loyalty__stamps, .loyalty__stamp, .loyalty__count, .loyalty__stampsLabel,
.loyalty__footL, .loyalty__footR { display: none !important; }

/* ============================================================
   PROJECTS — horizontal scroll tied to page scroll
   ============================================================ */
.hscroll {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hscroll__track {
  display: flex;
  gap: 28px;
  padding: 0 var(--gutter);
  will-change: transform;
  /* Scroll is driven by JS — page scroll position → horizontal translate */
}
.hscroll__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.hscroll__head .label { margin: 0; }
.hscroll__behance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--dark);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hscroll__behance:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-1px);
}
.hscroll__behance svg { transition: transform 0.25s var(--ease); }
.hscroll__behance:hover svg { transform: translate(2px, -2px); }
@media (max-width: 700px) {
  .hscroll__head { flex-direction: column; align-items: flex-start; gap: 14px; }
}
.hscroll__item {
  flex: 0 0 clamp(360px, 38vw, 560px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.hscroll__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hscroll__item:hover .hscroll__media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.hscroll__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hscroll__item:hover img { transform: scale(1.03); }

.hscroll__cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
}
.hscroll__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--dark);
}
.hscroll__cat {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
@media (max-width: 700px) {
  .hscroll__item { flex-basis: 78vw; }
  .hscroll__name { font-size: 18px; }
  .hscroll__cat { font-size: 11px; letter-spacing: 0.12em; }
}

/* ============================================================
   PRICING — wrap with side loyalty card
   ============================================================ */
.pricingWrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.pricingWrap .priceCard { max-width: none; margin: 0; }
.loyaltyAside {
  display: flex; flex-direction: column; gap: 22px;
}
.loyaltyAside__card { display: block; }
.loyaltyAside__card .loyalty {
  margin: 0;
  max-width: 100%;
  transform: rotate(-3deg);
  animation: none !important;
  opacity: 1 !important;
}
.loyaltyAside__note {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  max-width: 32ch;
  margin: 0 auto;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
@media (max-width: 980px) {
  .pricingWrap { grid-template-columns: 1fr; }
  .loyaltyAside { order: -1; max-width: 440px; margin: 0 auto 24px; }
}

/* ============================================================
   Title corrections: keep them dark, italic emphasis
   ============================================================ */
.finalcta__title em,
.how__title em,
.features__title em,
.pricing__title em,
.faq__title em,
.position__title em,
.contact-card__title em {
  font-style: italic;
  font-weight: 500;
}



/* ============================================================
   v6 — loyalty card: animated sticker cycle (stickers smaller to fit)
   ============================================================ */
.loyalty__sticker {
  position: absolute;
  top: 50%; left: 50%;
  width: 26%;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  filter: drop-shadow(0 4px 8px rgba(28,20,16,0.12));
  opacity: 0;
  --rot: 0deg;
  transform: translate(-50%, -50%) rotate(var(--rot)) scale(0.7);
  animation: stickerCycle 12s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}
.loyalty__sticker img {
  width: 100%; height: 100%; object-fit: contain;
}
@keyframes stickerCycle {
  0%      { opacity: 0; transform: translate(-50%, -50%) rotate(calc(var(--rot) - 14deg)) scale(0.6); }
  6%      { opacity: 1; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1); }
  16%     { opacity: 1; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1); }
  20%     { opacity: 0; transform: translate(-50%, -50%) rotate(calc(var(--rot) + 14deg)) scale(0.6); }
  100%    { opacity: 0; transform: translate(-50%, -50%) rotate(calc(var(--rot) + 14deg)) scale(0.6); }
}
/* Per-sticker offset + rotation + delay */
.loyalty__sticker--1 { --rot: -6deg;  animation-delay: 0s; }
.loyalty__sticker--2 { --rot:  8deg;  animation-delay: 2s; }
.loyalty__sticker--3 { --rot: -10deg; animation-delay: 4s; }
.loyalty__sticker--4 { --rot:  5deg;  animation-delay: 6s; }
.loyalty__sticker--5 { --rot: -4deg;  animation-delay: 8s; }
.loyalty__sticker--6 { --rot: 10deg;  animation-delay: 10s; }

/* Pricing aside card — same sticker cycle */
.loyaltyAside__card .loyalty__sticker { width: 24%; }

@media (prefers-reduced-motion: reduce) {
  .loyalty__sticker { animation: none; opacity: 1; transform: translate(-50%, -50%) rotate(var(--rot)); }
  .loyalty__sticker:not(:first-child) { opacity: 0; }
}



/* ============================================================
   v7 — Serif accent in hero title (Instrument Serif italic)
   ============================================================ */
.hero__title em.serif,
.position__title em.serif,
.finalcta__title em.serif {
  font-family: "Instrument Serif", "Funnel Display", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  /* Optical balance: serif looks lighter at same size, bump slightly */
  font-size: 1.04em;
}

/* Hero subtitle gets a touch more breathing room since headline is longer now */
.hero__title { font-size: clamp(48px, 7.4vw, 116px); }
.hero__sub { margin-top: 28px; }


/* ============================================================
   v8 — Hero like the Group-6 reference
   - Member card with "Design coffee club" + sticker cluster
   - Hero gets a slight buttery cream block to frame the content
   ============================================================ */

/* Hero block sits on a slightly warmer cream so it reads as a frame */
.hero {
  background: var(--bg); /* keep parent bg */
}
.hero .container {
  position: relative;
}

/* MemberCard — Group-6 reference layout */
@keyframes memberEnter {
  0%   { transform: translateY(40px) rotate(-1deg); opacity: 0; }
  100% { transform: translateY(0) rotate(-2deg); opacity: 1; }
}
@keyframes memberFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(-1deg); }
}
.memberCard {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 36px 40px;
  width: 100%;
  max-width: 540px;
  min-height: 360px;
  margin-left: auto;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 40px 80px -28px rgba(28,20,16,0.22),
    0 14px 28px -16px rgba(28,20,16,0.12);
  transform: rotate(-2deg);
  isolation: isolate;
}
html.js .memberCard {
  opacity: 0;
  animation:
    memberEnter 1s var(--ease) 0.3s forwards,
    memberFloat 9s ease-in-out 1.4s infinite;
}

.memberCard__label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.005em;
}

.memberCard__title {
  margin-top: 6px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 5.4vw, 64px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--dark);
  max-width: 6ch;
}

/* Sticker cluster on right */
.memberCard__stickers {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 50%;
  height: 86%;
  pointer-events: none;
}
.memberCard__word {
  position: absolute;
  top: 4px;
  right: 92px;
  font-family: "Caveat", "Funnel Display", cursive;
  font-weight: 700;
  font-size: 30px;
  color: var(--dark);
  background: var(--cream);
  padding: 2px 14px 0;
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--cream), 0 4px 8px rgba(28,20,16,0.12);
  transform: rotate(-6deg);
  white-space: nowrap;
}
.memberCard__st {
  position: absolute;
  filter: drop-shadow(0 4px 8px rgba(28,20,16,0.12));
}
.memberCard__st img { width: 100%; height: 100%; object-fit: contain; }

/* Layout matched to Group-6 reference */
.memberCard__st--1 { top: 50px; right: 18px; width: 82px; height: 92px; transform: rotate(-6deg); }  /* mug */
.memberCard__st--2 { top: 140px; right: 92px; width: 60px; height: 60px; transform: rotate(-10deg); } /* beans */
.memberCard__st--3 { top: 152px; right: 14px; width: 64px; height: 64px; transform: rotate(8deg); }   /* cup */
.memberCard__st--4 { top: 220px; right: 80px; width: 72px; height: 72px; transform: rotate(-4deg); }  /* cafetiere */
.memberCard__st--5 { top: 230px; right: 8px; width: 64px; height: 64px; transform: rotate(10deg); }   /* coffee tasse */

.memberCard__star {
  position: absolute;
  font-family: var(--display);
  font-weight: 700;
  color: var(--dark);
}
.memberCard__star--1 {
  top: 100px;
  right: 78px;
  font-size: 24px;
  background: var(--cream);
  border-radius: 999px;
  padding: 0 6px;
  box-shadow: 0 0 0 2px var(--cream), 0 4px 8px rgba(28,20,16,0.1);
  transform: rotate(8deg);
}
.memberCard__star--2 {
  top: 200px;
  right: 0;
  font-size: 22px;
  background: var(--cream);
  border-radius: 999px;
  padding: 0 6px;
  box-shadow: 0 0 0 2px var(--cream), 0 4px 8px rgba(28,20,16,0.1);
  transform: rotate(-10deg);
}

@media (max-width: 980px) {
  .memberCard { margin: 0 auto; max-width: 480px; }
}

/* Bigger hero text fits the larger card */
.hero__title { font-size: clamp(48px, 7.8vw, 116px); }

/* Hide the old decorative stickers behind the hero text */
.hero__stickers { display: none; }

/* Nav inline link (Connexion) */
.nav__link--inline {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  padding: 0 12px;
  height: 48px;
  display: inline-flex; align-items: center;
  position: relative;
}
.nav__link--inline::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav__link--inline:hover::after { transform: scaleX(1); }
@media (max-width: 720px) { .nav__link--inline { display: none; } }



/* ============================================================
   v9 — Hero layout: card dominates, text steps back
   ============================================================ */

/* Smaller, more reserved headline */
.hero__title {
  font-size: clamp(40px, 4.6vw, 68px) !important;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.hero__sub  { font-size: 16px; max-width: 44ch; }
.hero__eyebrow { margin-bottom: 24px; }

/* Push hero text down a bit for breathing room above */
.hero__grid > div:first-child { padding-top: 40px; padding-bottom: 40px; }

/* —— Card dominates the right side —— */
.memberCard {
  max-width: none;
  width: 110%;          /* spill past column edge for tangible feel */
  margin-left: -10%;    /* pull toward center, overlap with text gutter */
  min-height: 520px;
  padding: 44px 44px 52px;
  border-radius: 28px;
  transform: rotate(-7deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 60px 120px -40px rgba(28,20,16,0.32),
    0 22px 44px -22px rgba(28,20,16,0.18);
}
html.js .memberCard {
  animation:
    memberEnter 1.1s var(--ease) 0.25s forwards,
    memberFloatBig 10s ease-in-out 1.5s infinite;
}
@keyframes memberEnter {
  0%   { transform: translateY(50px) rotate(-3deg); opacity: 0; }
  100% { transform: translateY(0) rotate(-7deg); opacity: 1; }
}
@keyframes memberFloatBig {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50%      { transform: translateY(-10px) rotate(-6deg); }
}

/* Bigger title inside card to match the bigger card */
.memberCard__title {
  font-size: clamp(56px, 6.4vw, 88px);
  max-width: 7ch;
}

/* Sticker cluster scales up & shifts */
.memberCard__stickers {
  width: 56%;
  height: 92%;
  top: 28px;
  right: 28px;
}
.memberCard__word {
  font-size: 36px;
  top: 6px;
  right: 110px;
}
.memberCard__st--1 { top: 60px;  right: 22px; width: 100px; height: 112px; }
.memberCard__st--2 { top: 170px; right: 108px; width: 72px;  height: 72px;  }
.memberCard__st--3 { top: 188px; right: 16px;  width: 78px;  height: 78px;  }
.memberCard__st--4 { top: 280px; right: 96px;  width: 86px;  height: 86px;  }
.memberCard__st--5 { top: 296px; right: 10px;  width: 78px;  height: 78px;  }
.memberCard__star--1 { top: 130px; right: 96px; font-size: 28px; }
.memberCard__star--2 { top: 260px; right: 4px;  font-size: 26px; }

/* —— Responsive: stack & shrink card on small viewports —— */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__grid > div:first-child { padding-top: 0; padding-bottom: 0; }
  .memberCard {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    min-height: 440px;
    transform: rotate(-3deg);
  }
  html.js .memberCard {
    animation:
      memberEnterSm 1s var(--ease) 0.25s forwards,
      memberFloatSm 9s ease-in-out 1.4s infinite;
  }
  @keyframes memberEnterSm {
    0%   { transform: translateY(40px) rotate(0deg); opacity: 0; }
    100% { transform: translateY(0) rotate(-3deg); opacity: 1; }
  }
  @keyframes memberFloatSm {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-6px) rotate(-2deg); }
  }
}



/* ============================================================
   v10 — Inside-card typography (Soho House / Amex Black feel)
   Card size unchanged; only text hierarchy refined.
   ============================================================ */

/* Top label — tiny, muted, uppercase */
.memberCard__label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Brand block — medium-bold, restrained */
.memberCard__brand {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.memberCard__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--dark);
  line-height: 1;
}
.memberCard__sep {
  width: 24px;
  height: 1px;
  background: var(--border);
}
.memberCard__sub {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--muted);
  line-height: 1;
}

/* Bottom meta — small, muted */
.memberCard__meta {
  position: absolute;
  bottom: 28px;
  left: 44px;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Kill the old giant title rule if still loaded */
.memberCard__title { display: none !important; }

@media (max-width: 980px) {
  .memberCard__meta { left: 36px; bottom: 24px; }
}


/* ============================================================
   v11 — Shrink hero card ~30-35% + nav cup unicode
   ============================================================ */

/* Nav cup glyph (replaces image sticker) */
.nav__brand .cup {
  font-family: var(--sans);
  font-size: 18px;
  display: inline-block;
  transform: translateY(-1px) rotate(-6deg);
}

/* Card: tighter, smaller, no overflow into text column */
.memberCard {
  width: 100% !important;
  margin-left: 0 !important;
  max-width: 380px !important;
  min-height: 360px !important;
  padding: 28px 30px 28px !important;
  border-radius: 22px !important;
  margin-left: auto !important;
}

/* Inner type scaled down a touch to match smaller card */
.memberCard__brand { margin-top: 12px; gap: 10px; }
.memberCard__name { font-size: 18px; }
.memberCard__sep { width: 18px; }
.memberCard__sub { font-size: 15px; }
.memberCard__meta { bottom: 22px; left: 30px; font-size: 9.5px; }

/* Sticker cluster scaled back to match card */
.memberCard__stickers {
  width: 56%;
  height: 86%;
  top: 18px;
  right: 16px;
}
.memberCard__word { font-size: 26px; top: 2px; right: 78px; padding: 2px 12px 0; }
.memberCard__st--1 { top: 44px;  right: 14px; width: 70px; height: 78px; }
.memberCard__st--2 { top: 118px; right: 74px; width: 52px; height: 52px; }
.memberCard__st--3 { top: 132px; right: 8px;  width: 56px; height: 56px; }
.memberCard__st--4 { top: 196px; right: 64px; width: 60px; height: 60px; }
.memberCard__st--5 { top: 206px; right: 4px;  width: 56px; height: 56px; }
.memberCard__star--1 { top: 90px;  right: 66px; font-size: 22px; }
.memberCard__star--2 { top: 184px; right: 0;    font-size: 20px; }

/* Equal visual weight: rebalance hero columns */
.hero__grid { grid-template-columns: 1fr 1fr !important; }

@media (max-width: 980px) {
  .memberCard { max-width: 380px !important; margin: 0 auto !important; }
}


/* ============================================================
   v12 — Use Group-6 image directly as hero card (simpler)
   ============================================================ */
.memberCardImg {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
  transform: rotate(-3deg);
  filter: drop-shadow(0 30px 60px rgba(28,20,16,0.18)) drop-shadow(0 10px 22px rgba(28,20,16,0.10));
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
}
.memberCardImg img {
  width: 100%; height: auto; display: block;
}
@keyframes memberImgEnter {
  0%   { transform: translateY(40px) rotate(0deg); opacity: 0; }
  100% { transform: translateY(0) rotate(-3deg); opacity: 1; }
}
@keyframes memberImgFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-6px) rotate(-2deg); }
}
html.js .memberCardImg {
  opacity: 0;
  animation:
    memberImgEnter 1s var(--ease) 0.3s forwards,
    memberImgFloat 9s ease-in-out 1.4s infinite;
}
@media (max-width: 980px) {
  .memberCardImg { max-width: 420px; }
}


/* ============================================================
   v13 — Hero card hover: lift, straighten, glow
   ============================================================ */
.memberCardImg {
  cursor: pointer;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes memberImgFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-6px) rotate(-2deg); }
}
.memberCardImg:hover {
  animation-play-state: paused;
  transform: translateY(-10px) rotate(0deg) scale(1.04) !important;
  filter:
    drop-shadow(0 50px 90px rgba(28,20,16,0.28))
    drop-shadow(0 18px 30px rgba(196,98,45,0.18));
}
.memberCardImg img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.memberCardImg:hover img {
  transform: scale(1.02);
}


/* ============================================================
   v14 — Avatar icon button + footer mini calendar
   ============================================================ */

/* Avatar circle inside primary CTA */
.btn--withAvatar { padding-left: 8px; gap: 12px; }
.btn--withAvatar .btn__avatar {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--cream);
  flex: 0 0 30px;
  box-shadow: inset 0 0 0 1.5px rgba(253,250,245,0.18);
}
.btn--withAvatar .btn__avatar svg { width: 16px; height: 16px; }
.btn--withAvatar:hover .btn__avatar { background: var(--cream); color: var(--accent); }

/* —— Mini calendar in footer cta —— */
.miniCal {
  margin: 22px 0 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 14px;
}
.miniCal__head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.miniCal__month { font-family: var(--display); font-weight: 600; letter-spacing: -0.015em; font-size: 13px; color: #fff; text-transform: none; }
.miniCal__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 500;
}
.miniCal__pulse {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.25);
  animation: pulse 2.2s ease-in-out infinite;
}

.miniCal__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
  margin-bottom: 12px;
}
.miniCal__slot {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 8px 0 6px;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  font-family: var(--sans);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.miniCal__slot span { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.miniCal__slot b { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.miniCal__slot:hover {
  border-color: var(--accent);
  background: rgba(196,98,45,0.08);
}
.miniCal__slot.is-active {
  background: var(--accent);
  border-color: var(--accent);
}
.miniCal__slot.is-active span,
.miniCal__slot.is-active b { color: #fff; }
.miniCal__slot.is-full {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.6);
}

.miniCal__slots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.miniCal__time {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 8px 0;
  font-size: 12px;
  font-family: var(--sans);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.miniCal__time:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(196,98,45,0.08);
}
.miniCal__time--on {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

.miniCal__cta { margin-top: 4px; justify-content: center; }


/* ============================================================
   v15 — Cal.com inline embed in footer
   ============================================================ */
.calEmbed {
  margin: 22px 0 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 8px;
  overflow: hidden;
}
.calEmbed__inline {
  width: 100%;
  min-height: 420px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}
.calEmbed__inline iframe {
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
}


/* ============================================================
   v16 — Sticky left columns in footer while Cal embed scrolls
   ============================================================ */
.footer__grid { align-items: start; }
.footer__grid > div:first-child,
.footer__grid > div:nth-child(2) {
  position: sticky;
  top: 110px;
  align-self: start;
}
@media (max-width: 900px) {
  .footer__grid > div:first-child,
  .footer__grid > div:nth-child(2) { position: static; top: auto; }
}


/* ============================================================
   v17 — How it works · image-bg cards (3 step storytelling)
   ============================================================ */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.howCard {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.howCard::before {
  /* abstract coffee texture background */
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/img-14.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 1.2s var(--ease);
}
.howCard:nth-child(1)::before { background-image: url("assets/img-13.jpg"); }
.howCard:nth-child(2)::before { background-image: url("assets/img-14.jpg"); background-position: center; }
.howCard:nth-child(3)::before { background-image: url("assets/img-16.jpg"); }

.howCard::after {
  /* dark vignette at bottom for text legibility */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0) 36%, rgba(28,20,16,0.55) 64%, rgba(28,20,16,0.92) 100%);
  z-index: -1;
}
.howCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 50px 100px -40px rgba(28,20,16,0.45);
}
.howCard:hover::before { transform: scale(1.04); }

.howCard__visual {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 62%;
  z-index: 1;
}
.howCard__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 28px;
  z-index: 2;
}
.howCard__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.howCard__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 36ch;
}

/* —— Card 1 visual: member card image tilted —— */
.howCard__memberImg {
  position: absolute;
  top: 22%;
  left: 6%;
  width: 88%;
  height: auto;
  transform: rotate(-7deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

/* —— Card 2 visual: scattered pill tags + mug overlay —— */
.howCard__visual--tags { overflow: hidden; }
.howTag {
  position: absolute;
  top: var(--y); left: var(--x);
  transform: translate(-50%, -50%) rotate(var(--rot, 0));
  background: rgba(245,239,230,0.92);
  color: var(--dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  border: 1px solid rgba(28,20,16,0.06);
  z-index: 1;
}
.howCard__mug {
  position: absolute;
  top: 48%; left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 38%;
  aspect-ratio: 1;
  z-index: 2;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
  animation: howMugFloat 6s ease-in-out infinite;
}
.howCard__mug img { width: 100%; height: 100%; object-fit: contain; }
@keyframes howMugFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
  50%      { transform: translate(-50%, -54%) rotate(-2deg); }
}

/* —— Card 3 visual: stacked delivery cards with real mockups —— */
.howSq {
  position: absolute;
  width: 54%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 20px 36px rgba(0,0,0,0.35), 0 8px 14px rgba(0,0,0,0.18);
}
.howSq img { width: 100%; height: 100%; object-fit: cover; display: block; }
.howSq--1 { top: 4%;  left: 12%; transform: rotate(-8deg); }
.howSq--2 { top: -2%; left: 38%; transform: rotate(6deg); z-index: 1; }
.howAvatar {
  position: absolute;
  top: 14%; right: 14%;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  border: 2.5px solid #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  z-index: 3;
}
.howAvatar svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .how__grid { grid-template-columns: 1fr; gap: 16px; }
  .howCard { aspect-ratio: 4 / 4.4; }
  /* Push the member-card image higher so it doesn't sit on the text */
  .howCard__memberImg {
    top: 6%;
    width: 80%;
    left: 10%;
  }
}

/* Kill the old how-card styling that's still present */
.how-card { display: none !important; }


/* ============================================================
   v18 — Tight gap between Features and Webflow note
   ============================================================ */
.features { padding-bottom: 40px !important; }
.webflowNote { padding-bottom: 80px !important; padding-top: 0 !important; }


/* ============================================================
   v19 — Pricing redesign · two-card layout (invite + plan)
   ============================================================ */
.planGrid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.planCard {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  min-height: 560px;
}

/* —— LEFT: invite card with coffee texture bg —— */
.planCard--invite {
  padding: 36px;
  display: flex; flex-direction: column;
  color: #fff;
}
.planCard__bg {
  position: absolute; inset: 0;
  background-image: url("assets/img-14.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: transform 1.2s var(--ease);
}
.planCard--invite::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0) 30%, rgba(28,20,16,0.55) 70%, rgba(28,20,16,0.85) 100%);
  z-index: -1;
}
.planCard--invite:hover .planCard__bg { transform: scale(1.04); }

.planCard__cardImg {
  position: absolute;
  top: 8%;
  left: -4%;
  width: 76%;
  height: auto;
  border-radius: 18px;
  transform: rotate(-7deg);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  background: #fff;
  z-index: 1;
}
.planCard__inviteBody {
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.planCard__pill {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
  margin-bottom: 22px;
}
.planCard__pill:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.planCard__inviteTitle {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 12ch;
}

/* —— RIGHT: dark plan card —— */
.planCard--plan {
  background: #0E0907;
  color: #fff;
  padding: 36px clamp(28px, 3vw, 44px) 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 18px 28px;
  align-content: start;
}

.planCard__head {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
  padding-right: 230px; /* clearance for top-right stickers */
}
@media (max-width: 980px) {
  .planCard__head { padding-right: 180px; }
}
@media (max-width: 560px) {
  .planCard__head { padding-right: 0; }
}
.planCard__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.planCard__note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.005em;
  font-weight: 400;
  margin-top: 6px;
}

.planCard__eyebrow {
  grid-column: 1 / -1;
  color: #FF5A4D;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.015em;
  margin-top: 18px;
}

.planCard__priceRow {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 4px;
}
.planCard__priceMain {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #fff;
}
.planCard__priceUnit {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
}
.planCard__annual {
  grid-column: 1 / -1;
  margin-top: -6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-family: var(--display);
  font-weight: 500;
}
.planCard__annual b {
  color: var(--accent-2); font-weight: 600; font-style: normal;
}

.planCard__listLabel {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: #fff;
  margin-top: 14px;
  margin-bottom: -4px;
}

.planCard__features {
  grid-column: 1 / -1;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.planCard__features li {
  display: flex; align-items: center; gap: 10px;
  line-height: 1.3;
}
.planCard__features .check {
  width: 22px; height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: #2DC470;
  color: #0E0907;
  display: grid; place-items: center;
}
.planCard__features .check svg { width: 14px; height: 14px; }

.planCard__cta {
  grid-column: 1 / 2;
  margin-top: 22px;
  background: #fff;
  color: #0E0907;
  padding: 18px 28px;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  text-align: center;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
  display: inline-block;
  align-self: end;
  justify-self: start;
  width: fit-content;
  min-width: 280px;
}
.planCard__cta:hover { background: var(--accent); color: #fff; }

.planCard__stickers {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 210px;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}
.planCard__sticker {
  position: absolute;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}
.planCard__sticker img { width: 100%; height: 100%; object-fit: contain; }
.planCard__sticker--1 { right: 130px; top: 18px;  width: 64px; height: 64px; transform: rotate(-10deg); }
.planCard__sticker--2 { right: 60px;  top: 0;     width: 84px; height: 84px; transform: rotate(6deg); }
.planCard__sticker--3 { right: 0;     top: 24px;  width: 68px; height: 68px; transform: rotate(12deg); }
  right: 28px;
  width: 220px;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}
.planCard__sticker {
  position: absolute;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}
.planCard__sticker img { width: 100%; height: 100%; object-fit: contain; }
.planCard__sticker--1 { right: 130px; bottom: 0;  width: 70px; height: 70px; transform: rotate(-8deg); }
.planCard__sticker--2 { right: 70px;  bottom: 8px; width: 90px; height: 90px; transform: rotate(4deg); }
.planCard__sticker--3 { right: 0;     bottom: 0;  width: 76px; height: 76px; transform: rotate(8deg); }

.planCard__guarantee {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-right: 8px;
  font-size: 12.5px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* —— Kill the old priceCard + wrap rules —— */
.priceCard, .pricingWrap, .loyaltyAside { display: none !important; }

@media (max-width: 980px) {
  .planGrid { grid-template-columns: 1fr; }
  .planCard { min-height: 480px; }
  .planCard__cardImg { width: 86%; left: 50%; top: 8%; transform: translateX(-50%) rotate(-5deg); }
  .planCard__features { grid-template-columns: 1fr; }
  .planCard__stickers { width: 170px; height: 80px; right: 14px; top: 14px; }
  .planCard__sticker--1 { right: 105px; top: 14px; width: 52px; height: 52px; }
  .planCard__sticker--2 { right: 50px;  top: 0;    width: 68px; height: 68px; }
  .planCard__sticker--3 { right: 0;     top: 18px; width: 56px; height: 56px; }
}


/* ============================================================
   v15 — Hero stack on tablet & mobile (≤ 1024px)
   - Beige background (same as desktop)
   - Card simply goes below the text, nothing fancy
   ============================================================ */
@media (max-width: 1024px) {
  /* Force single column — override the !important 1fr 1fr rule above */
  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Section padding tighter on mobile */
  .hero {
    padding: 110px 0 60px;
    min-height: 0;
    background: var(--bg) !important;
  }

  /* Kill any decorative stickers / pseudo backgrounds behind the hero */
  .hero__stickers,
  .hero .sticker,
  .hero::before,
  .hero::after {
    display: none !important;
    background: none !important;
    content: none !important;
  }

  /* Eyebrow */
  .hero__eyebrow { margin-bottom: 20px; }

  /* Title — sized to fit the viewport, no overflow */
  .hero__title {
    font-size: clamp(34px, 7vw, 64px) !important;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--dark);
  }
  .hero__title em.serif { font-size: 0.95em; }

  /* Sub copy — solid dark, full width, readable */
  .hero__sub {
    margin-top: 20px;
    max-width: none;
    font-size: 16px;
    line-height: 1.55;
    color: var(--dark);
    opacity: 0.78;
  }

  /* CTAs — row by default on tablet */
  .hero__ctas {
    margin-top: 28px;
    gap: 12px;
  }

  .hero__legal { margin-top: 18px; }

  /* Card slots in BELOW the text, centered, smaller */
  .hero__aside {
    display: flex;
    justify-content: center;
  }
  .memberCardImg {
    width: 82%;
    max-width: 320px;
    margin: 0 auto;
    transform: rotate(-2deg);
    /* Softer shadow on mobile so it doesn't bleed into the next section */
    filter:
      drop-shadow(0 8px 18px rgba(28,20,16,0.10))
      drop-shadow(0 3px 6px rgba(28,20,16,0.06)) !important;
  }
  /* Keep the card visible even if entrance animation misbehaves */
  html.js .memberCardImg {
    opacity: 1;
    animation: memberImgFloat 9s ease-in-out infinite;
  }
  .memberCardImg:hover {
    /* Disable the lift on touch devices so the shadow stays tame */
    transform: rotate(-2deg) !important;
    filter:
      drop-shadow(0 8px 18px rgba(28,20,16,0.10))
      drop-shadow(0 3px 6px rgba(28,20,16,0.06)) !important;
  }
}

/* Small mobile: full-width stacked CTAs */
@media (max-width: 640px) {
  .hero__ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   v16 — Disable :hover effect on touch devices (the giant
   drop-shadow on memberCardImg:hover was sticking on mobile
   and rendering as a dark coffee-coloured blur behind the hero)
   ============================================================ */
@media (hover: none), (max-width: 1024px) {
  .memberCardImg,
  .memberCardImg:hover,
  .memberCardImg:focus,
  .memberCardImg:active {
    cursor: default !important;
    transform: rotate(-2deg) !important;
    filter:
      drop-shadow(0 8px 18px rgba(28,20,16,0.10))
      drop-shadow(0 3px 6px rgba(28,20,16,0.06)) !important;
    animation: none !important;
  }
  .memberCardImg img,
  .memberCardImg:hover img {
    transform: none !important;
  }
}


/* ============================================================
   v19 — Force opaque beige background
   An injected inline stylesheet sets html,body { background:
   transparent }, which lets the underlying app chrome show
   through on mobile. Override it.
   ============================================================ */
html,
body {
  background: var(--bg) !important;
  background-color: var(--bg) !important;
}


/* ============================================================
   v20 — Force light color scheme on all devices
   iOS/Android dark mode can tint iframe backgrounds; lock to light.
   ============================================================ */
:root, html, body {
  color-scheme: light only !important;
  forced-color-adjust: none !important;
}


/* ============================================================
   v21 — Hero forced beige, no exceptions
   ============================================================ */
section.hero,
section.hero *,
section.hero::before,
section.hero::after {
  background-image: none !important;
  backdrop-filter: none !important;
}
section.hero {
  background: #F5EFE6 !important;
  background-color: #F5EFE6 !important;
}
/* Re-allow background colors on intentional elements inside hero */
section.hero .btn,
section.hero .btn--primary,
section.hero .btn *,
section.hero .memberCardImg,
section.hero img,
section.hero .hero__legal,
section.hero .hero__avatar {
  background-image: none !important;
}


/* ============================================================
   v22 — FINAL hero beige fix (mobile/tablet/touch)
   ============================================================ */
@media (max-width: 1024px), (hover: none), (pointer: coarse) {
  html,
  body,
  main,
  section.hero {
    background: #F5EFE6 !important;
    background-color: #F5EFE6 !important;
    background-image: none !important;
  }

  section.hero {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
  }

  section.hero::before,
  section.hero::after {
    content: none !important;
    display: none !important;
    background: none !important;
    background-image: none !important;
    filter: none !important;
    backdrop-filter: none !important;
  }

  section.hero *::before,
  section.hero *::after {
    background-image: none !important;
    filter: none !important;
    backdrop-filter: none !important;
  }

  .hero__stickers,
  .hero .sticker {
    display: none !important;
  }

  .memberCardImg,
  .memberCardImg:hover,
  .memberCardImg:focus,
  .memberCardImg:active {
    transform: rotate(-2deg) !important;
    filter:
      drop-shadow(0 10px 24px rgba(28,20,16,0.14))
      drop-shadow(0 3px 8px rgba(28,20,16,0.08)) !important;
    box-shadow: none !important;
    animation: none !important;
  }

  .memberCardImg img,
  .memberCardImg:hover img,
  .memberCardImg:focus img,
  .memberCardImg:active img {
    transform: none !important;
    filter: none !important;
  }

  .clients {
    background: #F5EFE6 !important;
    background-image: none !important;
    position: relative;
    z-index: 2;
  }
}


/* ============================================================
   v23 — Features header: stack title + intro vertically
   ============================================================ */
.features__head {
  display: block !important;
  margin-bottom: 64px;
}
.features__heading { max-width: 880px; }
.features__intro {
  margin-top: 22px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  white-space: pre-line;
}

/* ============================================================
   v24 — Mug logos as circles (contact card + footer)
   The img-17.png ships with a rounded-square ground; we mask
   it into a circle and put a cream disc behind it.
   ============================================================ */
.contact-card__sticker {
  border-radius: 50% !important;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 6px 18px rgba(28,20,16,0.10), inset 0 0 0 1px rgba(28,20,16,0.06);
}
.contact-card__sticker img {
  width: 78% !important;
  height: 78% !important;
  object-fit: contain;
}

.footer__brand .stick {
  border-radius: 50% !important;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(28,20,16,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__brand .stick img {
  width: 76% !important;
  height: 76% !important;
  object-fit: contain;
}

/* ============================================================
   FREE OFFER — La dégustation
   ============================================================ */
.freeoffer {
  position: relative;
  padding: 30px 0 var(--section-y);
  overflow: hidden;
}
.freeoffer__sticker {
  position: absolute;
  top: 40px; right: clamp(16px, 6vw, 90px);
  width: clamp(64px, 8vw, 104px); height: auto;
  z-index: 2;
}
.freeoffer__sticker img { width: 100%; height: 100%; object-fit: contain; }

.freeoffer__head {
  max-width: 760px;
  margin-bottom: 52px;
}
.freeoffer__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 6vw, 76px); line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-top: 16px;
}
.freeoffer__sub {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 17px; line-height: 1.65;
  color: var(--muted);
}

.freeoffer__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.tasteCard {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px clamp(28px, 3vw, 44px) 38px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tasteCard:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-warm);
}
.tasteCard__free {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(196, 98, 45, 0.10);
  border: 1px solid rgba(196, 98, 45, 0.28);
  padding: 5px 12px 4px; border-radius: 999px;
}
.tasteCard__icon {
  display: block;
  width: 66px; height: 66px;
  margin-bottom: 22px;
  transition: transform 0.7s var(--ease);
}
.tasteCard:hover .tasteCard__icon { transform: rotate(-8deg) scale(1.05); }
.tasteCard__icon img { width: 100%; height: 100%; object-fit: contain; }
.tasteCard__kicker {
  font-family: "Caveat", "Funnel Display", cursive;
  font-weight: 700; font-size: 24px;
  color: var(--accent);
  margin-bottom: 4px;
}
.tasteCard__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--dark);
  max-width: 16ch;
}
.tasteCard__desc {
  margin-top: 14px;
  font-size: 15px; line-height: 1.7;
  color: var(--muted);
  max-width: 38ch;
}

.freeoffer__foot {
  margin-top: 34px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.freeoffer__note {
  font-family: var(--display); font-weight: 500;
  font-size: 17px; letter-spacing: -0.02em;
  color: var(--dark);
  max-width: 34ch;
}
.freeoffer__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .freeoffer__grid { grid-template-columns: 1fr; }
  .freeoffer__foot { flex-direction: column; align-items: flex-start; }
  .freeoffer__ctas { width: 100%; }
  .freeoffer__ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* ============================================================
   AUDIENCE — Pour qui
   ============================================================ */
.audience { padding: var(--section-y) 0; position: relative; }
.audience__head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.audience__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 6vw, 76px); line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-top: 16px;
}
.audience__sub {
  margin: 22px auto 0;
  max-width: 46ch;
  font-size: 17px; line-height: 1.65;
  color: var(--muted);
}

.audience__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.audCard {
  position: relative;
  border-radius: 28px;
  padding: 44px clamp(30px, 3.4vw, 50px) 46px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.audCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.audCard--cream {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--dark);
}
.audCard--dark {
  background: var(--dark);
  color: var(--cream);
}
.audCard__sticker {
  position: absolute;
  top: 30px; right: 30px;
  width: 64px; height: 64px;
  transition: transform 0.7s var(--ease);
}
.audCard:hover .audCard__sticker { transform: rotate(-8deg) scale(1.06); }
.audCard__sticker img { width: 100%; height: 100%; object-fit: contain; }
.audCard__kicker {
  font-family: "Caveat", "Funnel Display", cursive;
  font-weight: 700; font-size: 25px;
  color: var(--accent);
  margin-bottom: 6px;
}
.audCard--dark .audCard__kicker { color: var(--accent-2); }
.audCard__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 3.2vw, 42px); line-height: 1.0;
  letter-spacing: -0.04em;
}
.audCard__desc {
  margin-top: 16px;
  font-size: 16px; line-height: 1.7;
  max-width: 40ch;
}
.audCard--cream .audCard__desc { color: var(--muted); }
.audCard--dark .audCard__desc { color: rgba(253,250,245,0.72); }
.audCard__list {
  list-style: none;
  margin-top: 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.audCard__list li {
  position: relative;
  padding-left: 26px;
  font-family: var(--display); font-weight: 500;
  font-size: 15.5px; letter-spacing: -0.01em;
}
.audCard__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
}
.audCard--dark .audCard__list li::before { background: var(--accent-2); }

@media (max-width: 860px) {
  .audience__grid { grid-template-columns: 1fr; }
}
.position__cta { margin-top: 36px; }
.audience__cta { margin-top: 40px; text-align: center; }

/* AUDIENCE — profiles grid (broad targeting) */
.audience__grid--profiles {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.profileCard {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px 30px;
  color: var(--dark);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.profileCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
  border-color: var(--accent);
}
.profileCard__num {
  display: block;
  font-family: "Caveat", "Funnel Display", cursive;
  font-weight: 700; font-size: 23px;
  color: var(--accent);
  margin-bottom: 10px;
}
.profileCard__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(22px, 2vw, 28px); line-height: 1.04;
  letter-spacing: -0.035em;
}
.profileCard__desc {
  margin-top: 12px;
  font-size: 15px; line-height: 1.65;
  color: var(--muted);
  max-width: 34ch;
}
@media (max-width: 980px) {
  .audience__grid--profiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .audience__grid--profiles { grid-template-columns: 1fr; }
}

/* ============================================================
   L'Expresso — bande one-shot (ajouté juin 2026)
   ============================================================ */
.expressoBand{
  display:flex; align-items:center; justify-content:space-between;
  gap:clamp(28px,5vw,56px); flex-wrap:wrap;
  margin:28px 0 0; padding:26px clamp(28px,3vw,36px);
  background:#1C1410; color:#F5EFE6; border-radius:22px;
}
.expressoBand__text{
  display:flex; flex-direction:column; gap:8px;
  flex:1 1 340px; min-width:0; max-width:52ch;
}
.expressoBand__kicker{
  font-family:'Inter',sans-serif; font-size:12px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent,#C4622D); font-weight:600;
}
.expressoBand__title{
  font-family:'Funnel Display',sans-serif; font-weight:600;
  font-size:clamp(18px,2.2vw,23px); line-height:1.25;
  letter-spacing:-.01em; text-wrap:balance;
}
.expressoBand__title .serif{ font-family:'Instrument Serif',serif; font-style:italic; font-weight:400; }

/* Right group: prix sur une ligne + CTA, alignés, sans séparateur. */
.expressoBand__right{
  display:flex; flex-direction:row; align-items:center; gap:24px;
  flex:0 0 auto;
}
.expressoBand__price{
  display:flex; align-items:baseline; gap:7px; white-space:nowrap;
  font-family:'Inter',sans-serif; font-size:14px; font-weight:500;
  color:rgba(245,239,230,.6); line-height:1;
}
.expressoBand__price strong{
  font-family:'Funnel Display',sans-serif; font-size:28px; font-weight:700;
  letter-spacing:-.02em; line-height:1; color:#F5EFE6;
}
.expressoBand__right .btn{ flex:0 0 auto; }

@media (max-width:820px){
  .expressoBand{ gap:28px; padding:24px 28px; }
}

/* Mobile: on empile tout, prix sur sa ligne puis CTA pleine largeur. */
@media (max-width:680px){
  .expressoBand{ flex-direction:column; align-items:stretch; gap:20px; padding:24px; }
  .expressoBand__text{ flex:1 1 auto; max-width:none; }
  .expressoBand__right{
    flex-direction:column; align-items:stretch; gap:16px; width:100%;
  }
  .expressoBand__price{ justify-content:flex-start; }
  .expressoBand__right .btn{ width:100%; }
}
