/* ─── Design Tokens ─────────────────────────────── */
:root {
  --cream:      #F4EFE6;
  --cream-dark: #E8E1D5;
  --charcoal:   #111111;
  --charcoal-2: #222222;
  --sage:       #7A9478;
  --sage-dk:    #5C7A5A;
  --rust:       #B5673E;
  --rust-lt:    #D4896A;
  --sand:       #D9CEBC;
  --border:     #D3CCBF;
  --white:      #FFFFFF;

  --font: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;

  --max-w: 1160px;
  --r: 6px;
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* subtle grain overlay */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Sticky header wrapper ──────────────────────── */
:root { --header-h: 95px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
html { scroll-padding-top: var(--header-h); }

/* ─── Announcement Bar ───────────────────────────── */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem 1rem;
  line-height: 1.4;
}
.announcement-bar strong {
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  letter-spacing: 0.06em;
}

/* ─── Nav ────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav-logo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a { opacity: 0.55; transition: opacity 0.15s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  opacity: 1 !important;
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  font-weight: 700;
}

/* ─── Ticker ─────────────────────────────────────── */
.ticker {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-inner span { margin: 0 2.5rem; opacity: 0.65; }
.ticker-inner span.dot { opacity: 0.25; margin: 0 1rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 4rem;
  gap: 1.1rem;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
}
.hero-headline {
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero-sub {
  font-size: 0.95rem;
  max-width: 360px;
  color: #666;
  line-height: 1.7;
}
.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.25rem;
}
.hero-perks span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  opacity: 0.75;
}
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(122,148,120,0.1) 0%, transparent 65%);
}
/* soft bottom fade so the panel doesn't hard-cut into the ticker */
.hero-graphic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.18));
  pointer-events: none;
}
.hero-quote-card {
  color: var(--cream);
  max-width: 360px;
  position: relative;
  z-index: 1;
}
.quote-open {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
  display: block;
  color: var(--sage);
  margin-bottom: 0.85rem;
  opacity: 0.35;
}
.hero-quote-card p {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.quote-attr {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.9rem;
  opacity: 0.25;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.12s, box-shadow 0.16s;
  border-radius: 2px;
  font-family: var(--font);
  width: fit-content;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover { background: var(--charcoal-2); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  width: 100%;
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,230,0.4);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

/* ─── Waitlist ───────────────────────────────────── */
.waitlist {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3.75rem 2.5rem;
}
.waitlist-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.waitlist .section-label { color: var(--sage); margin-bottom: 0.5rem; }
.waitlist h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.875rem;
}
.waitlist-text > p {
  color: rgba(244,239,230,0.6);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 1rem;
}
.waitlist-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.waitlist-perks li {
  font-size: 0.85rem;
  color: rgba(244,239,230,0.65);
  padding-left: 1.5rem;
  position: relative;
}
.waitlist-perks li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* Form */
.waitlist-form-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.4);
  margin-bottom: 0.5rem;
}
.form-row { display: flex; gap: 0.75rem; }
.form-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  font-family: var(--font);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(244,239,230,0.25); }
.form-input:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.09);
}
.form-btn {
  margin-top: 0;
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}
.form-btn:hover { background: var(--sand); border-color: var(--sand); }
.form-note { font-size: 0.68rem; color: rgba(244,239,230,0.3); line-height: 1.5; }
.form-success {
  padding: 2rem;
  border: 1px solid rgba(122,148,120,0.35);
  border-radius: var(--r);
  background: rgba(122,148,120,0.08);
}
.success-headline { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.success-sub { font-size: 0.88rem; color: rgba(244,239,230,0.55); line-height: 1.65; margin-bottom: 0.75rem; }
.success-sub-sm { font-size: 0.8rem; color: rgba(244,239,230,0.4); margin-top: 0.75rem; }

/* Discount code reveal */
.discount-code-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.25);
  border: 1px dashed rgba(122,148,120,0.6);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  margin: 0.75rem 0;
}
.discount-code {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--cream);
  flex: 1;
}
.discount-copy-btn {
  background: rgba(122,148,120,0.25);
  color: var(--cream);
  border: 1px solid rgba(122,148,120,0.5);
  border-radius: 4px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.discount-copy-btn:hover { background: rgba(122,148,120,0.45); border-color: rgba(122,148,120,0.8); }
.discount-copy-btn.copied { background: rgba(122,148,120,0.55); border-color: var(--sage); }
.discount-note { font-size: 0.8rem; color: rgba(244,239,230,0.45); }
.social-proof { display: flex; align-items: center; gap: 0.75rem; }
.proof-avatars { display: flex; }
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sage-dk);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--charcoal);
  margin-left: -7px;
}
.avatar:first-child { margin-left: 0; }
.social-proof p { font-size: 0.75rem; color: rgba(244,239,230,0.4); line-height: 1.4; }

/* ─── Section Header ─────────────────────────────── */
.section-header {
  text-align: center;
  padding: 5rem 2rem 3rem;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 0.6rem;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ─── Products ───────────────────────────────────── */
.products { padding-bottom: 6rem; }
.products--page { padding-top: 3rem; }

.product-line {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 2rem 0;
}
.product-line-intro { margin-bottom: 2rem; }
.line-tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dk);
  display: block;
  margin-bottom: 0.4rem;
}
.product-line-intro h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.product-line-intro p {
  max-width: 480px;
  color: #666;
  line-height: 1.75;
  font-size: 0.95rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* 2-column variant — for mugs pair, cap solo row */
.product-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66%;
}
/* 3-across stickers row — slightly narrower cards to suit sheet aspect ratio */
.product-grid--stickers {
  grid-template-columns: repeat(3, 1fr);
}
.product-grid--stickers .product-image {
  aspect-ratio: 1 / 1;
}

/* ─── Product Card ───────────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.34,1.2,0.64,1);
}
.product-card:hover { transform: translateY(-5px); }
.product-card:hover .product-image { box-shadow: 0 16px 40px rgba(0,0,0,0.18); }

.product-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  transition: box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── Vol 01 – Chat & Cut: clean cream */
.img-vol1 {
  background-color: #F2EDE3;
}
.img-vol1 .placeholder-text { color: var(--charcoal); }

/* ── Vol 02 – Shitbow: rust/terracotta */
.img-vol2 {
  background-color: var(--rust);
  background-image: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 60%);
}

/* ── Vol 03 – Classics: deep sage */
.img-vol3 {
  background-color: var(--sage);
  background-image: radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.12) 0%, transparent 60%);
}

.coming-badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: rgba(244,239,230,0.92);
  backdrop-filter: blur(4px);
  color: var(--charcoal);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 99px;
  border: 1px solid rgba(0,0,0,0.08);
}
.img-vol1 .coming-badge {
  background: rgba(17,17,17,0.82);
  color: var(--cream);
  border-color: transparent;
}

.placeholder-text {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.03em;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.placeholder-label {
  position: absolute;
  bottom: 0.875rem;
  right: 0.875rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.3);
}
.img-vol1 .placeholder-label { color: rgba(0,0,0,0.25); }

.product-info { flex: 1; display: flex; flex-direction: column; padding-top: 0.25rem; }
.product-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem 0;
  color: var(--charcoal);
}
.product-price {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.2rem 0 0.35rem;
  color: var(--charcoal-2);
}
.product-hook {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 0.4rem;
  font-style: italic;
}
.product-detail {
  font-size: 0.74rem;
  color: #999;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 0.75rem;
}
.product-grid-single {
  grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
}

/* ─── Hero Drop List ─────────────────────────────── */
.hero-drop-list {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(244,239,230,0.1);
  padding-top: 1rem;
}
.drop-list-label {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(122,148,120,0.55);
  margin-bottom: 0.55rem;
}
.hero-drop-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-drop-list ul li {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(244,239,230,0.5);
  padding-left: 0.85rem;
  position: relative;
}
.hero-drop-list ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(244,239,230,0.15);
}

/* ─── How It Works ───────────────────────────────── */
.how-it-works {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2.5rem;
}
.how-inner { max-width: var(--max-w); margin: 0 auto; }
.how-inner .section-header { text-align: left; padding: 0 0 3rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.step { display: flex; flex-direction: column; gap: 0.6rem; }
.step-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--sage-dk);
  text-transform: uppercase;
}
.step h4 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.step p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.75;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq {
  padding: 6rem 2.5rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: var(--max-w); margin: 0 auto; }
.faq-header { text-align: left; padding: 0 0 3rem; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
}
.faq-item { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item h4 {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.75;
}

/* ─── Line Divider ───────────────────────────────── */
.line-divider {
  max-width: var(--max-w);
  margin: 3.5rem auto 0;
  border: none;
  border-top: 1px solid var(--border);
}

/* ─── About ──────────────────────────────────────── */
.about {
  background: var(--charcoal);
  color: var(--cream);
  padding: 7rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(122,148,120,0.12) 0%, transparent 65%);
}
.about-inner { max-width: 560px; margin: 0 auto; position: relative; }
.about .section-label { color: var(--sage); }
.about h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0.6rem 0 1.1rem;
}
.about p {
  color: rgba(244,239,230,0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* ─── Contact ────────────────────────────────────── */
.contact {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.contact-text .section-label { margin-bottom: 0.75rem; }
.contact-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.contact-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}
.contact-form-wrap { display: flex; flex-direction: column; gap: 1rem; }
.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-input {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--charcoal);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-input::placeholder { color: #aaa; }
.contact-input:focus { border-color: var(--charcoal); }
.contact-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.contact-success {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--cream);
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.45;
}
.footer-links a { transition: opacity 0.15s; }
.footer-links a:hover { opacity: 1; }
.footer-note {
  font-size: 0.68rem;
  color: #aaa;
  line-height: 1.5;
  text-align: right;
  max-width: 300px;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-inner { padding: 4rem 2rem; }
  .hero-graphic { min-height: 320px; padding: 3rem 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-fields { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { flex-direction: column; }
  .form-btn { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .product-grid--stickers { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-note { text-align: center; max-width: 100%; }
}
@media (max-width: 600px) {
  .nav-links { gap: 1.25rem; font-size: 0.65rem; }
  .nav-cta { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid--2col { grid-template-columns: 1fr; max-width: 100%; }
  .product-grid--stickers { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-perks { gap: 0.4rem 1rem; }
}

/* ─── Grievance Concierge ────────────────────────── */
.concierge-trigger {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: 1.25rem;
  z-index: 500;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: 0.55rem 0.95rem;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  opacity: 0.82;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.concierge-trigger:hover {
  background: var(--charcoal-2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  opacity: 1;
}
.concierge-trigger:active { transform: scale(0.97); }

.concierge-widget {
  position: fixed;
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  right: 1.5rem;
  z-index: 500;
  width: 340px;
  max-height: 540px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.concierge-widget.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.concierge-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--cream);
}
.concierge-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.concierge-sub {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 0.15rem;
}
.concierge-x {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: #bbb;
  padding: 0.2rem 0.35rem;
  border-radius: 2px;
  font-family: var(--font);
  transition: color 0.12s, background 0.12s;
  flex-shrink: 0;
}
.concierge-x:hover { color: var(--charcoal); background: var(--cream-dark); }

.concierge-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  scroll-behavior: smooth;
  min-height: 60px;
}
.concierge-msgs::-webkit-scrollbar { width: 4px; }
.concierge-msgs::-webkit-scrollbar-track { background: transparent; }
.concierge-msgs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.concierge-msg {
  padding: 0.55rem 0.85rem;
  border-radius: 3px;
  font-size: 0.83rem;
  line-height: 1.55;
  max-width: 88%;
}
.concierge-msg--bot {
  background: var(--cream);
  color: var(--charcoal);
  align-self: flex-start;
  border: 1px solid var(--border);
}
.concierge-msg--user {
  background: var(--charcoal);
  color: var(--cream);
  align-self: flex-end;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.concierge-opts {
  padding: 0.65rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  max-height: 230px;
  overflow-y: auto;
}
.concierge-opts::-webkit-scrollbar { width: 4px; }
.concierge-opts::-webkit-scrollbar-track { background: transparent; }
.concierge-opts::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.concierge-opt {
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.5rem 0.85rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  line-height: 1.35;
}
.concierge-opt:hover {
  background: var(--cream);
  border-color: var(--charcoal);
}
.concierge-opt--primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.concierge-opt--primary:hover {
  background: var(--charcoal-2);
  border-color: var(--charcoal-2);
}
.concierge-opt--ghost {
  color: #888;
  border-color: transparent;
  font-size: 0.68rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.concierge-opt--ghost:hover {
  color: var(--charcoal);
  background: none;
  border-color: transparent;
}

@media (max-width: 480px) {
  .float-cart {
    /* On mobile the concierge trigger is taller (~3rem) and sits at bottom: 1rem */
    bottom: calc(1rem + 3rem + 0.75rem);
  }
  .concierge-trigger {
    right: 1rem;
    left: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    text-align: center;
    font-size: 0.68rem;
  }
  .concierge-widget {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    max-height: 70vh;
  }
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS (custom — replaces Buy Button iframes)
   ═══════════════════════════════════════════════════ */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  mix-blend-mode: multiply;
}
.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Quick-look overlay — sits over the image, appears on hover */
.quick-look-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F4EFE6;
  pointer-events: none;
}
.product-card:hover .quick-look-overlay {
  opacity: 1;
}
.product-card-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-2, #444);
  margin: 0.15rem 0 0;
  letter-spacing: -0.01em;
}
body.modal-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   PRODUCT PREVIEW MODAL
   ═══════════════════════════════════════════════════ */
.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.preview-modal[hidden] { display: none; }

.preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.preview-inner {
  position: relative;
  background: #F7F3EC;
  border-radius: 4px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}

.preview-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(17,17,17,0.07);
  border: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: background 0.15s;
}
.preview-close:hover { background: rgba(17,17,17,0.14); }

/* ── Gallery (left side) ────────────────────────── */
.preview-gallery {
  display: flex;
  flex-direction: column;
  background: #F2EDE3;
  overflow: hidden;
}
.preview-main-img-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.preview-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  box-sizing: border-box;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.13));
}
.preview-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  overflow-x: auto;
  background: #EAE5DB;
  scrollbar-width: none;
}
.preview-thumbs::-webkit-scrollbar { display: none; }
.preview-thumb {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #F2EDE3;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s;
}
.preview-thumb.active { border-color: #111; }
.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}

/* ── Details (right side) ───────────────────────── */
.preview-details {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 0;
}
.preview-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7F947D;
  margin: 0 0 0.4rem;
}
.preview-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: #111;
  line-height: 1.1;
}
.preview-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1.5rem;
}
.preview-options { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.preview-option-group { display: flex; flex-direction: column; gap: 0.5rem; }
.preview-option-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin: 0;
}
.preview-swatches { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.preview-swatch {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid #ccc;
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  color: #333;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font-family: inherit;
  letter-spacing: 0.02em;
}
.preview-swatch:hover:not(:disabled):not(.sold-out) { border-color: #111; }
.preview-swatch.active { border-color: #111; background: #111; color: #F4EFE6; }
.preview-swatch.sold-out {
  opacity: 0.38;
  cursor: not-allowed;
  position: relative;
  color: #aaa;
  border-color: #ddd;
}
/* diagonal strikethrough line */
.preview-swatch.sold-out::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 0.5px),
    #ccc calc(50% - 0.5px),
    #ccc calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  border-radius: 2px;
  pointer-events: none;
}
.preview-swatch:disabled { opacity: 0.4; cursor: not-allowed; }

.preview-actions { display: flex; gap: 0.75rem; align-items: center; margin-top: auto; padding-top: 1.5rem; }
.preview-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #ccc;
  border-radius: 2px;
  overflow: hidden;
}
.qty-btn {
  width: 2.2rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #111;
  font-family: inherit;
  transition: background 0.15s;
}
.qty-btn:hover { background: rgba(0,0,0,0.06); }
.qty-num {
  width: 2.2rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #111;
  border-left: 1.5px solid #ccc;
  border-right: 1.5px solid #ccc;
  line-height: 2.5rem;
  display: block;
}
.preview-add-btn {
  flex: 1;
  height: 2.5rem;
  background: #111;
  color: #F4EFE6;
  border: none;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.18s;
}
.preview-add-btn:hover:not(:disabled) { background: #2a2a2a; }
.preview-add-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Added-to-bag confirmation ──────────────────── */
.added-to-bag {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: #f6f2eb;
  border: 1px solid #e2ddd4;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  margin-top: 0.1rem;
}
.added-to-bag-check {
  font-size: 0.85rem;
  color: #4a7c59;
  font-weight: 700;
}
.added-to-bag-msg {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111;
}
.added-to-bag-actions {
  display: flex;
  gap: 0.5rem;
}
.added-keep-shopping {
  flex: 1;
  height: 2.2rem;
  background: none;
  border: 1.5px solid #ccc;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.added-keep-shopping:hover { border-color: #111; color: #111; }
.added-checkout-btn {
  flex: 1;
  height: 2.2rem;
  background: #111;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #F4EFE6;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.added-checkout-btn:hover { background: #2a2a2a; }

.preview-note {
  font-size: 0.7rem;
  color: #999;
  margin: 0.85rem 0 0;
  letter-spacing: 0.02em;
}

/* ── Product detail accordion ───────────────────── */
.preview-accordions {
  margin-top: 1.1rem;
  border-top: 1px solid #e8e3da;
}
.preview-accordion {
  border-bottom: 1px solid #e8e3da;
}
.preview-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0.65rem 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #111;
  text-align: left;
  gap: 0.5rem;
}
.preview-accordion-trigger:hover { color: #555; }
.preview-accordion-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.preview-accordion.is-open .preview-accordion-arrow {
  transform: rotate(180deg);
}
.preview-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.preview-accordion.is-open .preview-accordion-body {
  max-height: 400px;
}
.preview-accordion-inner {
  padding: 0 0 0.85rem;
  font-size: 0.73rem;
  color: #555;
  line-height: 1.65;
}
.preview-accordion-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.preview-accordion-inner ul li {
  padding: 0.1rem 0;
}
.preview-accordion-inner ul li::before {
  content: '—';
  margin-right: 0.45em;
  color: #bbb;
}
.preview-product-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  width: fit-content;
}
.preview-product-link:hover { color: #555; border-color: #555; }

/* ── Mobile modal ───────────────────────────────── */
@media (max-width: 680px) {
  .preview-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: 95vh;
    border-radius: 8px 8px 0 0;
    align-self: flex-end;
    margin-top: auto;
  }
  .preview-modal { align-items: flex-end; padding: 0; }
  .preview-gallery { max-height: 42vh; }
  .preview-details { padding: 1.5rem 1.25rem 2rem; }
  .preview-title { font-size: 1.3rem; }
}

/* ── Floating Cart ──────────────────────────────── */
.float-cart {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + 2.6rem + 0.75rem); /* above concierge trigger: its bottom + its height + gap */
  z-index: 400;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.18s, background 0.18s;
}
.float-cart:hover { background: #2a2a2a; transform: scale(1.06); }
.float-cart-icon {
  width: 1.35rem;
  height: 1.35rem;
}
.float-cart-count {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  background: #c0392b;
  color: #fff;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.35rem;
  text-align: center;
  box-sizing: border-box;
  border: 2px solid #fff;
}
@keyframes cart-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.22); }
  100% { transform: scale(1); }
}
.float-cart--bump { animation: cart-bump 0.4s cubic-bezier(0.34,1.56,0.64,1); }
/* button reset */
.float-cart { border: none; cursor: pointer; }

/* ── Cart Drawer ─────────────────────────────────── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  justify-content: flex-end;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}
.cart-drawer-panel {
  position: relative;
  width: min(420px, 100vw);
  height: 100%;
  background: #F7F3EC;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e0d6;
}
.cart-drawer-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #555;
  padding: 0.2rem 0.4rem;
  transition: color 0.15s;
}
.cart-drawer-close:hover { color: #111; }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-drawer-loading {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  padding: 2rem 0;
}
.cart-drawer-empty {
  font-size: 0.82rem;
  color: #999;
  text-align: center;
  padding: 3rem 0;
  letter-spacing: 0.02em;
}
/* Cart line item */
.cart-line {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid #e5e0d6;
}
.cart-line:last-child { border-bottom: none; }
.cart-line-img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 3px;
  background: #F2EDE3;
  mix-blend-mode: multiply;
}
.cart-line-info { display: flex; flex-direction: column; gap: 0.2rem; }
.cart-line-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.cart-line-variant {
  font-size: 0.7rem;
  color: #888;
  letter-spacing: 0.02em;
}
.cart-line-qty {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.1rem;
}
.cart-line-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}
.cart-line-remove {
  display: block;
  margin-top: 0.35rem;
  background: none;
  border: none;
  font-size: 0.67rem;
  color: #bbb;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.15s;
}
.cart-line-remove:hover { color: #c0392b; }
.cart-drawer-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e5e0d6;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
}
.cart-drawer-shipping-note {
  font-size: 0.68rem;
  color: #999;
  margin: 0;
  letter-spacing: 0.02em;
}
.cart-drawer-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  background: #111;
  color: #F4EFE6;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.15s;
}
.cart-drawer-checkout-btn:hover { background: #2a2a2a; }

/* ── Floating CTA ───────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 400;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s;
}
.float-cta--dismissed {
  opacity: 0;
  transform: translateY(8px);
}
.float-cta-btn {
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem 0.7rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
}
.float-cta-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.7rem 1rem 0.7rem 0.4rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.float-cta-close:hover { opacity: 1; }

/* ── Entry Popup ────────────────────────────────── */
.entry-popup {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.entry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}
.entry-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.entry-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.entry-close:hover { background: rgba(0,0,0,0.6); }

/* Left image panel */
.entry-img {
  background: var(--charcoal);
  overflow: hidden;
}
.entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.entry-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: var(--charcoal);
  min-height: 300px;
}
.entry-img-quote {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.entry-img-attr {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.4);
  margin-top: 1rem;
}

/* Right content panel */
.entry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.5rem 2rem;
  gap: 0.85rem;
}
.entry-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
}
.entry-headline {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.entry-sub {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}
.entry-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.entry-email {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.15s;
}
.entry-email:focus { border-color: var(--charcoal); }
.entry-submit {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.entry-submit:hover { background: var(--charcoal-2); }
.entry-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.entry-note {
  font-size: 0.7rem;
  color: #999;
  letter-spacing: 0.02em;
}

/* Success state */
.entry-success { display: flex; flex-direction: column; gap: 0.6rem; }
.entry-success-headline {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.6;
}
.entry-code-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: var(--r);
}
.entry-code {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  flex: 1;
}
.entry-copy-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s;
}
.entry-copy-btn:hover { background: rgba(255,255,255,0.25); }
.entry-success-note {
  font-size: 0.75rem;
  color: #777;
}

/* Mobile */
@media (max-width: 680px) {
  .entry-inner {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
  .entry-img { display: none; }
  .entry-content { padding: 2rem 1.5rem 1.5rem; }
  .float-cta {
    /* Push above the full-width concierge trigger (~2.6rem tall at bottom: 1rem) */
    bottom: calc(1rem + 2.6rem + 0.75rem);
    left: 1rem;
  }
}
