/* Sweet Basket Club — simple luxury, reference-aligned */

:root {
  --wine: #5C1A1F;
  --wine-deep: #3a1014;
  --gold: #C9A24B;
  --blush: #EFD9D4;
  --cream: #FBF3EA;
  --ink: #2A1410;
  --paper: #f7f0e6;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

html.lenis, html.lenis body { height: auto; }
html.lenis body { min-height: 100dvh; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  mix-blend-mode: difference;
  color: #fff;
}

.nav-mark {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 8px 18px;
  border-radius: 30px;
  color: inherit;
  transition: opacity 0.25s;
}

.nav-link:hover { opacity: 0.75; }

.nav.is-light {
  mix-blend-mode: normal;
  background: rgba(251, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  color: var(--wine);
  border-bottom: 1px solid rgba(92, 26, 31, 0.06);
}

/* ---- Shared typography ---- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 20px;
}

.eyebrow--gold { color: var(--gold); }

.strip-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25;
  color: var(--ink);
}

.strip-title em { font-style: italic; color: var(--wine); }
.strip-title--light { color: var(--cream); }
.strip-title--light em { color: var(--gold); }

.strip-sub {
  color: #6b5550;
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.strip-body {
  color: #6b5550;
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 36ch;
}

/* ---- Strip sections (intent-style) ---- */
.strip {
  background: var(--cream);
  padding: 100px 6vw 80px;
  text-align: center;
}

.strip--narrow {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.strip--narrow .eyebrow,
.strip--narrow .strip-title { text-align: center; }

.strip--dark {
  background: var(--ink);
  padding-bottom: 40px;
}

.strip--letter {
  padding: 80px 6vw 100px;
}

/* ---- Order CTA on homepage ---- */
.order-cta {
  background: var(--blush);
  padding: 100px 6vw;
  text-align: center;
}

.order-cta-inner { max-width: 480px; margin: 0 auto; }

.submit-btn--link {
  display: inline-block;
  width: auto;
  padding: 17px 36px;
  margin-top: 28px;
  text-decoration: none;
}

/* ---- Order page ---- */
.page-order { background: var(--cream); }

.nav--solid,
.nav.is-light {
  mix-blend-mode: normal;
  background: rgba(251, 243, 234, 0.95);
  backdrop-filter: blur(10px);
  color: var(--wine);
  border-bottom: 1px solid rgba(92, 26, 31, 0.06);
}

.nav--solid.is-scrolled,
.nav.is-light.is-scrolled {
  box-shadow: 0 1px 0 rgba(92, 26, 31, 0.04);
}

.nav--solid .nav-link,
.nav.is-light .nav-link {
  border-color: var(--wine);
  color: var(--wine);
}

.nav-mark { color: inherit; text-decoration: none; }

.order-page {
  flex: 1;
  padding: 120px 6vw 48px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.order-page-head { text-align: center; margin-bottom: 48px; }

.order-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.order-summary {
  background: var(--paper);
  padding: 24px;
  border-radius: 2px;
}

.order-summary-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blush);
  margin-bottom: 16px;
  border-radius: 2px;
}

.order-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-summary-name {
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  font-style: italic;
  color: var(--wine);
}

.order-summary-includes {
  font-size: 14px;
  color: #6b5550;
  margin-top: 6px;
}

.order-summary-price {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  margin-top: 12px;
}

.order-form--page { max-width: none; }

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  margin: 8px 0 16px;
  border-top: 1px solid #d9c7ba;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-total strong {
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  text-transform: none;
  letter-spacing: 0;
}

.order-note--error { color: #9b3030; }

.order-success:not([hidden]) {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 6vw 32px;
  text-align: center;
  background: var(--cream);
}

.order-success-inner { max-width: 520px; width: 100%; }

.confirmation-icon {
  font-size: 2rem;
  color: var(--wine);
  margin: 0 0 12px;
  line-height: 1;
}

.confirmation-ref {
  margin: 16px 0 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.confirmation-ref strong {
  font-family: 'Fraunces', serif;
  color: var(--wine);
  letter-spacing: 0.08em;
}

.confirmation-tower {
  margin: 0 auto 24px;
  max-width: 200px;
}

.confirmation-tower img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.confirmation-summary {
  text-align: left;
  border: 1px solid var(--line);
  background: var(--cream-light, #FFFBF5);
  padding: 20px 22px;
  margin-bottom: 20px;
}

.confirmation-row {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 480px) {
  .confirmation-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .confirmation-row span {
    margin-bottom: 2px;
  }

  .tower-page {
    padding-top: 88px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .tower-checkout-panel {
    padding: 20px 16px 24px;
    border-radius: 16px;
  }
}

.confirmation-row:last-child { border-bottom: none; }

.confirmation-row span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.confirmation-row strong {
  font-weight: 500;
  color: var(--ink);
}

.confirmation-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.confirmation-note--muted { font-size: 13px; }

.confirmation-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.field-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--wine);
  border: none;
  padding: 0;
  background: transparent;
}

.field-checkbox span {
  flex: 1;
  min-width: 0;
}

.field-checkbox a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

/* ---- Footer ---- */
footer,
.site-footer {
  background: var(--wine-deep);
  color: rgba(251, 243, 234, 0.6);
  text-align: center;
  padding: 46px 6vw;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: auto;
  flex-shrink: 0;
}

footer .fmark,
.site-footer .fmark {
  margin-bottom: 8px;
  line-height: 0;
}

footer .fmark:not(:has(.sbc-logo-wrap)),
.site-footer .fmark:not(:has(.sbc-logo-wrap)) {
  font-family: 'Fraunces', serif;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: normal;
}

.site-footer-byline {
  margin: 0 0 16px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.site-footer-links a {
  color: rgba(251, 243, 234, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-links a:hover,
.site-footer-links a[aria-current="page"] {
  color: var(--gold);
}

/* ---- Legal pages ---- */
.page-legal {
  background: var(--cream);
}

.legal-page {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 120px 6vw 48px;
  width: 100%;
}

.legal-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--wine);
  margin: 8px 0 12px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
}

.legal-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--wine);
  margin: 32px 0 12px;
}

.legal-body ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.legal-body li { margin-bottom: 8px; }

.legal-body a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body p { margin: 0 0 16px; }

@media (min-width: 768px) {
  .order-page-layout { grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
  .order-summary { position: sticky; top: 100px; }
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 100px 6vw 72px;
}

.hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-letter-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
}

.hero-envelope-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.envelope-stage {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.envelope-stage:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  border-radius: 8px;
}

.envelope {
  width: min(100%, 280px);
  position: relative;
  perspective: 900px;
}

.envelope-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 210;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  filter: drop-shadow(0 14px 32px rgba(42, 20, 16, 0.14));
  transform-style: preserve-3d;
}

.envelope-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #efe3d4 0%, #dcc9b3 100%);
}

.envelope-letter-slot {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 14%;
  bottom: 24%;
  z-index: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #ebe0d0 0%, #e0d2be 100%);
}

.envelope-face {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.envelope-face--left {
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #ead9c6 0%, #d9c4ad 100%);
  clip-path: polygon(0 0, 100% 52%, 100% 100%, 0 100%);
}

.envelope-face--right {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(225deg, #ead9c6 0%, #d9c4ad 100%);
  clip-path: polygon(0 52%, 100% 0, 100% 100%, 0 100%);
}

.envelope-face--bottom {
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(180deg, #dcc9b0 0%, #c9b092 100%);
  clip-path: polygon(0 56%, 50% 34%, 100% 56%, 100% 100%, 0 100%);
}

.envelope-flap-holder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 54%;
  z-index: 4;
  transform-style: preserve-3d;
  transform-origin: top center;
  will-change: transform;
}

.envelope-flap {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f7efe4 0%, #ead9c6 55%, #e0d0bb 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.wax-seal-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -38%);
  z-index: 6;
  pointer-events: none;
}

.wax-seal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #e6cb84, var(--gold) 55%, #9d7a30 100%);
  box-shadow: 0 8px 24px rgba(42, 20, 16, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: #5c4514;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  animation: sealPulse 2.4s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes sealPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-tap-hint {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a8a83;
}

.hero-letter-body {
  width: 100%;
  max-width: 420px;
}

.hero-letter-body .letter-hand {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-letter-body .letter-hand--tower {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.15;
  margin: 1.25rem 0;
}

.hero-letter-body .letter-hand--sign {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--wine);
  margin-top: 0.5rem;
}

.hero-visual a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.hero-visual a:hover img {
  transform: scale(1.02);
}

.hero-visual {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blush);
  box-shadow: 0 12px 40px rgba(42, 20, 16, 0.08);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-scroll-prompt {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a8a83;
  animation: heroScrollBob 2.2s ease-in-out infinite;
}

.hero-scroll-arrow {
  display: block;
  margin-top: 8px;
  font-size: 1.125rem;
  color: var(--wine);
}

@keyframes heroScrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .wax-seal { animation: none; }
  .hero-scroll-prompt { animation: none; }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
  }

  .hero-letter-col {
    align-items: flex-start;
    min-height: 360px;
  }

  .hero-envelope-block {
    justify-content: flex-start;
  }
}

/* ---- Build button ---- */
.btn-outline {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--wine);
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--wine);
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--wine);
  color: var(--cream);
}

/* ---- Testimonials ---- */
.quotes {
  display: grid;
  gap: 32px;
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
}

.quote-hand {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  line-height: 1.4;
  color: var(--ink);
}

.quote cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: #9a8a83;
}

@media (min-width: 640px) {
  .quotes { grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
}

/* ---- FAQ ---- */
.faq-list { margin-top: 40px; }

.faq-item {
  border-bottom: 1px solid #d9c7ba;
}

.faq-item summary {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--wine);
  padding: 18px 28px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  transition: transform 0.25s;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #6b5550;
  padding-bottom: 18px;
}

/* ---- Order (reference style) ---- */
.order {
  background: var(--cream);
  padding: 110px 6vw 130px;
  display: flex;
  justify-content: center;
}

.order-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.order-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  margin-top: 14px;
  margin-bottom: 14px;
}

.order-sub {
  color: #6b5550;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 46px;
}

.order-form { text-align: left; }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 8px;
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #d9c7ba;
  background: transparent;
  padding: 10px 2px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
}

.field input:not([type="checkbox"]):not([type="radio"]):focus,
.field select:focus,
.field textarea:focus { border-color: var(--wine); }

.field textarea { resize: vertical; min-height: 60px; }

.submit-btn {
  width: 100%;
  margin-top: 16px;
  background: var(--wine);
  color: var(--cream);
  border: none;
  padding: 17px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.submit-btn:hover { background: #7a2a2f; }
.submit-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.submit-btn:active { transform: scale(0.985); }

.order-note {
  margin-top: 20px;
  font-size: 12px;
  color: #9a8a83;
  text-align: center;
}

/* ============================================================
   NEW SECTIONS — story-driven layout
   ============================================================ */

/* ---- Collections ---- */
.collections {
  background: var(--cream);
  padding-bottom: clamp(80px, 12vw, 140px);
}

.strip--collections {
  padding-bottom: 48px;
}

.featured-tower {
  padding: 0 6vw 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-tower-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: 100%;
  color: inherit;
  text-decoration: none;
  text-align: left;
}

.featured-tower-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--blush);
}

.featured-tower-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-tower-link:hover .featured-tower-image img {
  transform: scale(1.03);
}

.featured-tower-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
  margin-top: 8px;
}

.featured-tower-includes {
  font-size: 15px;
  color: #6b5550;
  margin-top: 8px;
}

.featured-tower-price {
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  margin-top: 12px;
}

.featured-tower-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}

@media (min-width: 768px) {
  .featured-tower-link { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 48px; }
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 6vw 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.chip {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(92, 26, 31, 0.2);
  border-radius: 30px;
  background: transparent;
  color: var(--ink-muted, #6b5550);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.chip.is-active,
.chip:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

.masonry-grid,
.pin-board {
  column-count: 2;
  column-gap: 16px;
  padding: 0 6vw;
  max-width: 1100px;
  margin: 0 auto;
}

.pin-board--collection {
  padding-bottom: 8px;
}

.pin-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 20, 16, 0.1);
}

.pin-image {
  overflow: hidden;
  background: var(--blush);
}

.pin-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.pin-card:hover .pin-image img {
  transform: scale(1.03);
}

.pin-meta {
  padding: 14px 16px 18px;
}

.pin-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--wine);
  line-height: 1.25;
}

.pin-desc {
  font-size: 12px;
  line-height: 1.45;
  color: #6b5550;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 8px;
}

.pin-price {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--ink);
}

.pin-cta {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .pin-board,
  .masonry-grid { column-count: 3; column-gap: 20px; }
}

@media (min-width: 1024px) {
  .pin-board,
  .masonry-grid { column-count: 4; }
}

/* ---- Occasions editorial ---- */
.occasions-section {
  background: var(--cream);
  padding-bottom: 40px;
}

.occasion-editorial {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.occasion-editorial img {
  width: 100%;
  height: clamp(320px, 55vh, 560px);
  object-fit: cover;
  display: block;
}

.occasion-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 5vw, 48px) 6vw;
  background: linear-gradient(to top, rgba(58, 16, 20, 0.65), transparent);
  color: var(--cream);
}

.occasion-caption h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.occasion-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .occasion-editorial--offset .occasion-caption {
    text-align: right;
    padding-left: 40%;
  }
}

/* ---- Polaroid testimonials ---- */
.testimonials-section {
  background: var(--cream);
  padding-bottom: clamp(80px, 12vw, 120px);
}

.polaroid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6vw;
}

.polaroid {
  background: #fff;
  padding: 28px 28px 36px;
  box-shadow: 0 2px 16px rgba(42, 20, 16, 0.06);
  border: none;
  max-width: 280px;
  margin: 0 auto;
  transition: transform 0.35s ease;
}

.polaroid--left { transform: rotate(-2.5deg); }
.polaroid--right { transform: rotate(2deg); }

.polaroid:hover { transform: rotate(0deg) scale(1.02); }

.polaroid-hand {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
}

.polaroid cite {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: #9a8a83;
}

@media (min-width: 640px) {
  .polaroid-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }
  .polaroid { margin: 0; }
  .polaroid:nth-child(2) { margin-top: 24px; }
}

/* ---- Tower product page ---- */
.tower-page {
  flex: 1;
  padding: 100px 6vw 48px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.tower-page-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.tower-checkout {
  min-width: 0;
}

.tower-checkout-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px 18px 28px;
  box-shadow: 0 4px 24px rgba(42, 20, 16, 0.06);
  overflow: hidden;
}

.tower-showcase {
  min-width: 0;
}

.tower-hero {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blush);
  box-shadow: 0 8px 32px rgba(42, 20, 16, 0.08);
}

.tower-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.tower-details {
  padding-top: 28px;
}

.tower-page-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--wine);
  line-height: 1.15;
}

.tower-page-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #6b5550;
  margin-top: 12px;
}

.tower-page-price {
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  margin-top: 16px;
}

.tower-block { margin-top: 28px; }

.tower-block-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 12px;
}

.tower-includes-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.7;
  color: #6b5550;
}

.tower-includes-list li::before {
  content: '· ';
  color: var(--gold);
}

.tower-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tower-tags li {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(92, 26, 31, 0.18);
  border-radius: 30px;
}

.tower-checkout-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--ink);
  margin-bottom: 24px;
}

.tower-order-form .field {
  margin-bottom: 16px;
}

.tower-order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  margin: 8px 0 4px;
  border-top: 1px solid #e8ddd4;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tower-order-total strong {
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--wine);
}

.tower-not-found {
  text-align: center;
  padding: 160px 6vw;
}

@media (min-width: 900px) {
  .tower-page-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }

  .tower-checkout-panel {
    position: sticky;
    top: 96px;
    padding: 32px 28px 36px;
  }
}
/* ---- Order page extras ---- */
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.order-summary-qty {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  margin: 16px 0 8px;
  color: #6b5550;
}

.order-summary-qty strong {
  font-family: 'Fraunces', serif;
  color: var(--ink);
}

.order-note--muted {
  font-size: 11px;
  margin-top: 12px;
  text-align: left;
}

.order-page { max-width: 1040px; }

@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
