/* ================================================================
   DECK OF THREADS — Main Stylesheet
   Inspired by Rifle Paper Co. meets Bookstagram
================================================================ */

/* ----------------------------------------------------------------
   Custom Properties
---------------------------------------------------------------- */
:root {
  --cream:        #FBF8F3;
  --warm-white:   #FDFAF6;
  --section-alt:  #F5F1EA;
  --gold:         #B8933F;
  --gold-light:   #D4AE6B;
  --gold-hover:   #9A7A30;
  --gold-divider: #C8B38A;
  --charcoal:     #2F2F2F;
  --charcoal-mid: #5C5652;
  --charcoal-lt:  #8A8480;
  --border:       #E5DCCE;

  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w:        1160px;
  --nav-h:        72px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ----------------------------------------------------------------
   Typography helpers
---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light  { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: 0.005em;
}
.section-heading.center { text-align: center; }
.section-heading.light  { color: #FDF8F0; }

.section-sub {
  font-size: 1.04rem;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 64px;
  max-width: 520px;
}
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub.wide { max-width: 640px; }

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 44px;
  border-radius: 2px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease), letter-spacing 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: #FDF8F0;
  border: 1.5px solid var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  letter-spacing: 0.13em;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(47, 47, 47, 0.16);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #FDF8F0;
  letter-spacing: 0.13em;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(47, 47, 47, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid transparent;
  padding: 20px 4px;
  letter-spacing: 0.08em;
}
.btn-ghost:hover {
  color: var(--gold);
  letter-spacing: 0.11em;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   Section wrapper
---------------------------------------------------------------- */
.section { padding: 152px 32px; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo .tm {
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: top;
  margin-left: -2px;
  position: relative;
  top: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-shop-btn {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--charcoal) !important;
  color: #FDF8F0 !important;
  padding: 13px 26px;
  border-radius: 2px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease),
              letter-spacing 0.4s var(--ease) !important;
}
.nav-shop-btn:hover {
  background: var(--gold-hover) !important;
  color: #FDF8F0 !important;
  letter-spacing: 0.13em;
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.25s;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 8px 0;
}
.nav-mobile-menu a {
  padding: 14px 24px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-menu.open { display: flex; }

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  background: var(--cream);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 72px;
  background: var(--cream);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal-mid);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 20px;
}

.hero-detail {
  font-size: 0.94rem;
  color: var(--charcoal-mid);
  line-height: 1.75;
  max-width: 420px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* ----------------------------------------------------------------
   PROMO BANNER
---------------------------------------------------------------- */
.promo-banner {
  background: var(--charcoal);
  color: var(--gold-light);
  overflow: hidden;
  padding: 13px 0;
}

.promo-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.promo-dot {
  color: var(--gold);
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   SECTION DIVIDER
---------------------------------------------------------------- */
.section-divider {
  width: 240px;
  height: 1px;
  margin: 0 auto;
  background: var(--gold-divider);
  opacity: 0.7;
}

/* ----------------------------------------------------------------
   SEEN AT
---------------------------------------------------------------- */
.seen-at-strip {
  background: var(--cream);
  padding: 96px 32px;
}

.seen-at-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 2.1fr;
  gap: 100px;
  align-items: center;
}

.seen-at-text { text-align: center; }

.seen-at-photo {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 28px 56px rgba(47, 47, 47, 0.14);
}

.seen-at-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 14px;
}

.seen-at-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--charcoal);
}

/* ----------------------------------------------------------------
   HOW IT WORKS
---------------------------------------------------------------- */
.how-it-works { background: var(--cream); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 80px;
}

.step {
  position: relative;
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.92rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   REVIEWS
---------------------------------------------------------------- */
.reviews-section { background: var(--section-alt); border-top: 1px solid var(--border); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.review-card {
  background: var(--warm-white);
  padding: 44px 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(47, 47, 47, 0.08);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--charcoal);
  line-height: 1.6;
  flex: 1;
}

.review-source {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--charcoal-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   PERFECT FOR
---------------------------------------------------------------- */
.perfect-for-section { background: var(--cream); border-top: 1px solid var(--border); }

.perfect-for-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 112px;
  align-items: center;
}

.perfect-for-text .section-heading { margin-bottom: 36px; }

.perfect-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 52px;
}

.perfect-list li {
  font-size: 1rem;
  color: var(--charcoal-mid);
  display: flex;
  align-items: center;
  gap: 14px;
}

.perfect-dash {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--gold);
}

.perfect-for-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 32px 64px rgba(47, 47, 47, 0.1);
}
.perfect-for-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------------------
   SHOP BY DECK (horizontal scroll)
---------------------------------------------------------------- */
.shop-decks-section { background: var(--cream); overflow: hidden; padding-top: 112px; }

.pairing-intro { margin-bottom: 80px; }
.pairing-intro .section-heading { margin-bottom: 24px; }

.shop-subhead { text-align: center; padding-top: 56px; border-top: 1px solid var(--border); }
.shop-subhead-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.shop-subhead .section-sub { margin-bottom: 0; }

.deck-scroll-outer {
  position: relative;
  max-width: 1240px;
  margin: 64px auto 0;
}

.deck-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 8px 0 24px;
}

.deck-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--warm-white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.deck-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(47, 47, 47, 0.13);
  border-color: var(--gold-divider);
}

.deck-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deck-card-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--section-alt);
}
.deck-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.deck-card:hover .deck-card-img-wrap img {
  transform: scale(1.07);
}

.deck-card-body {
  padding: 30px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.deck-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

.deck-card-body p {
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  line-height: 1.55;
  flex: 1;
}

.deck-link-arrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: letter-spacing 0.2s;
}
.deck-card:hover .deck-link-arrow { letter-spacing: 0.14em; }

.scroll-hint {
  display: none;
}

/* ----------------------------------------------------------------
   MONTHLY PAIRING
---------------------------------------------------------------- */
.monthly-pairing-section { background: var(--section-alt); border-top: 1px solid var(--border); }

.pairing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 112px;
  align-items: center;
}

.pairing-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 32px 64px rgba(47, 47, 47, 0.1);
}
.pairing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pairing-details {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pairing-month {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.pairing-book {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}

.pairing-author {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
}

.pairing-deck-note {
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  margin-top: 8px;
}
.pairing-deck-note strong { color: var(--charcoal); }

/* ----------------------------------------------------------------
   FOLLOW ALONG
---------------------------------------------------------------- */
.follow-section {
  background: var(--charcoal);
  border-top: 1px solid rgba(200, 179, 138, 0.3);
}

.follow-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 32px;
  width: 100%;
}

.follow-header {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(253, 248, 240, 0.1);
}

.follow-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.follow-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 36px;
}
.follow-list li {
  font-size: 0.95rem;
  color: rgba(253, 248, 240, 0.85);
  padding-left: 16px;
  position: relative;
}
.follow-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.follow-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FDF8F0;
  border: 1px solid rgba(253, 248, 240, 0.35);
  padding: 16px 26px;
  border-radius: 2px;
  width: fit-content;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease),
              transform 0.4s var(--ease), letter-spacing 0.4s var(--ease);
}
.social-btn:hover {
  background: rgba(253, 248, 240, 0.1);
  border-color: rgba(253, 248, 240, 0.6);
  letter-spacing: 0.11em;
  transform: translateY(-2px);
}

.newsletter-label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #FDF8F0;
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 0.92rem;
  color: rgba(253, 248, 240, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 20px;
  border: 1px solid rgba(253, 248, 240, 0.35);
  background: rgba(253, 248, 240, 0.08);
  color: #FDF8F0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(253, 248, 240, 0.45); }
.newsletter-form input:focus { border-color: var(--gold-light); }

.newsletter-success {
  display: none;
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-top: 12px;
  font-style: italic;
}
.newsletter-success.visible { display: block; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--charcoal);
  padding: 80px 32px 48px;
  border-top: 1px solid rgba(253, 248, 240, 0.07);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(253, 248, 240, 0.08);
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #FDF8F0;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 0.82rem;
  color: rgba(253, 248, 240, 0.4);
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-link-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-group a {
  font-size: 0.85rem;
  color: rgba(253, 248, 240, 0.5);
  transition: color 0.2s;
}
.footer-link-group a:hover { color: #FDF8F0; }

.footer-bottom {
  text-align: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(253, 248, 240, 0.25);
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------------
   RESPONSIVE — Tablet (≤ 1024px)
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section { padding: 100px 28px; }

  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .deck-scroll   { grid-template-columns: repeat(3, 1fr); }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-wrap {
    height: 52vw;
    min-height: 300px;
    max-height: 520px;
  }
  .hero-content {
    padding: 56px 40px;
    align-items: center;
    text-align: center;
  }
  .hero-sub    { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-detail { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  .seen-at-strip { padding: 72px 24px; }
  .seen-at-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }

  .perfect-for-inner { grid-template-columns: 1fr; gap: 40px; }
  .perfect-for-image { max-width: 480px; }

  .pairing-inner { grid-template-columns: 1fr; gap: 40px; }
  .pairing-image { max-width: 560px; }

  .follow-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — Mobile (≤ 680px)
---------------------------------------------------------------- */
@media (max-width: 680px) {
  .section { padding: 72px 20px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-container { padding: 0 20px; }

  .btn { padding: 18px 30px; white-space: normal; text-align: center; }
  .btn-ghost { padding: 18px 4px; }

  .hero-content { padding: 40px 20px; }
  .hero-content h1 { font-size: 1.8rem; }

  .steps-grid   { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .section-heading { font-size: 1.7rem; }

  .seen-at-strip { padding: 56px 20px; }

  .shop-decks-section { padding-top: 64px; }
  .pairing-intro { margin-bottom: 48px; }

  .deck-scroll { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .deck-card   {}

  .follow-content { padding: 64px 20px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; }
  .newsletter-form .btn { width: 100%; text-align: center; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
