/* ==========================================================================
   Kindly & Co — Gift cards
   v2 — Jewel & foil. Pattern-rich, dark-led, award-grade.
   Built directly from the Kindly & Co brand profile.
   ========================================================================== */

:root {
  /* Core brand */
  --coral: #F24B6A;
  --coral-600: #E0345A;
  --teal: #00778E;
  --teal-700: #015C6E;
  --teal-900: #013D49;
  --burgundy: #732231;
  --burgundy-700: #5A1826;
  --green-teal: #2F6B57;
  --green-teal-700: #24523F;
  --cream: #F2EBDC;

  /* Navy — from kindlyco.se */
  --navy: #132639;
  --navy-700: #0D1A26;
  --slate: #52667A;

  /* Surfaces & ink */
  --paper: #FBF7ED;
  --card: #FFFFFF;
  --ink: #2B1A1E;
  --ink-2: #1C1013;
  --ink-soft: #7A6A6D;
  --line: #EAE1CF;

  /* Tints */
  --coral-50: #FDECEF; --coral-100: #FBD3DB; --coral-200: #F8A9B9; --coral-300: #F47E96;
  --teal-50: #E5F1F3; --teal-100: #BFDDE3; --teal-200: #7FB8C3; --teal-300: #3F93A4;
  --burg-50: #F4E7EA; --burg-100: #E1BFC7; --burg-200: #BE7A89; --burg-300: #9C4659;

  /* Champagne foil */
  --foil: linear-gradient(105deg, #B89A5E, #E8D5A0 22%, #FBF3DA 42%, #D9C08A 60%, #9C7E44 85%, #C7AC6E);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow: 0 2px 4px rgba(43,26,30,.06), 0 22px 44px -22px rgba(43,26,30,.4);
  --shadow-sm: 0 1px 2px rgba(43,26,30,.05), 0 8px 22px -16px rgba(43,26,30,.2);

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inclusive Sans', system-ui, sans-serif;
}

/* -------------------- Reset & base -------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex; flex-direction: column; min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
main { flex: 1 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; text-wrap: balance; }
p { text-wrap: pretty; }

/* -------------------- Type scale -------------------- */
.display { font-size: clamp(46px, 9vw, 116px); line-height: 0.95; letter-spacing: -0.04em; }
h1, .h1 { font-size: clamp(34px, 5.5vw, 60px); }
h2, .h2 { font-size: clamp(28px, 4.2vw, 46px); }
h3, .h3 { font-size: clamp(21px, 2.6vw, 27px); letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; opacity: .6; }
.foil-text {
  background: var(--foil); background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: jc-foilshift 7s ease-in-out infinite;
}

/* -------------------- Layout -------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 152px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: 20px; opacity: .8; }
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* -------------------- Surface themes -------------------- */
.s-ink { background: var(--navy); color: var(--cream); }
.s-navy-deep { background: var(--navy-700); color: var(--cream); }
.s-teal { background: var(--teal-900); color: var(--cream); }
.s-teal-mid { background: var(--teal); color: var(--cream); }
.s-burg { background: var(--navy-700); color: var(--cream); }
.s-coral { background: var(--coral-600); color: #fff; }
.s-paper { background: var(--paper); color: var(--ink); }
.s-cream { background: var(--cream); color: var(--ink); }
.s-white { background: #fff; color: var(--ink); }
.s-paper .eyebrow, .s-cream .eyebrow, .s-white .eyebrow { color: var(--teal); }
.s-paper .lead, .s-cream .lead, .s-white .lead { color: var(--ink-soft); opacity: 1; }
.s-paper h1, .s-paper h2, .s-paper h3,
.s-cream h1, .s-cream h2, .s-cream h3,
.s-white h1, .s-white h2, .s-white h3 { color: var(--ink); }

/* -------------------- Patterns -------------------- */
.pattern { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pattern > * { position: relative; z-index: 1; }
.pat-stripes {
  background-image: repeating-linear-gradient(-24deg,
    rgba(242,235,220,.05) 0 22px, transparent 22px 60px);
}
.pat-stripes--coral {
  background-image: repeating-linear-gradient(-24deg,
    rgba(242,75,106,.16) 0 24px, transparent 24px 66px);
}
.pat-dots {
  background-image: radial-gradient(rgba(242,235,220,.13) 1.6px, transparent 1.7px);
  background-size: 26px 26px;
}
.pat-dots--ink {
  background-image: radial-gradient(rgba(43,26,30,.10) 1.6px, transparent 1.7px);
  background-size: 26px 26px;
}
.pat-grid-fade { -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%); mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%); }
section > .container { position: relative; z-index: 1; }

/* rounded "confetti" shapes (logo-derived), placed via JS-free decorative blobs */
.blob { position: absolute; border-radius: 999px; z-index: 0; pointer-events: none; filter: blur(.3px); opacity: .9; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 17px 30px; border-radius: 999px;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(242,75,106,.4); }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-600); transform: translateY(-3px); box-shadow: 0 12px 26px -10px rgba(242,75,106,.7); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px -12px rgba(0,0,0,.5); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-700); transform: translateY(-3px); box-shadow: 0 12px 26px -10px rgba(0,119,142,.6); }
.btn--ghost { box-shadow: inset 0 0 0 1.5px currentColor; }
.btn--ghost:hover { background: currentColor; transform: translateY(-3px); }
.btn--ghost:hover span { color: var(--ink); }
.btn--sm { padding: 12px 22px; font-size: 14px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; color: inherit;
  transition: gap .2s ease, opacity .2s ease;
}
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover { opacity: .85; }
.link-arrow:hover::after { transform: translateX(5px); }

/* -------------------- Badge -------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(242,235,220,.12); color: var(--cream);
  border: 1px solid rgba(242,235,220,.2);
}
.badge--foil { background: var(--foil); background-size: 200% 100%; color: #3B2E14; border: none; }

/* -------------------- Glass nav / header -------------------- */
.site-header { position: sticky; top: 0; z-index: 100; }
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 14px; margin-bottom: 14px;
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  background: rgba(28,16,19,.62);
  border: 1px solid rgba(242,235,220,.12);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}
.site-header__logo img { height: 26px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--cream); padding: 9px 15px; border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}
.nav__link:hover { background: rgba(242,235,220,.1); }
.nav__link[aria-current="page"] { background: var(--coral); color: #fff; }
.site-header__actions { display: flex; align-items: center; gap: 8px; }
.site-header__cta { white-space: nowrap; }
.icon-btn { width: 38px; height: 38px; border-radius: 999px; display: inline-grid; place-items: center; color: var(--cream); transition: background-color .2s ease; }
.icon-btn:hover { background: rgba(242,235,220,.12); }
.icon-btn svg { width: 19px; height: 19px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 999px; color: var(--cream); }
.nav-toggle:hover { background: rgba(242,235,220,.12); }
.nav-toggle svg { width: 24px; height: 24px; }

/* -------------------- Hero -------------------- */
.hero { position: relative; overflow: hidden; background: var(--teal-900); color: var(--cream); }
.hero__inner { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 9vw, 120px); }
.hero__content { max-width: 620px; }
.hero .eyebrow { color: var(--coral-100); }
.hero__title { margin-block: 22px 24px; }
.hero__title em { font-style: normal; display: block; }
.hero__lead { font-size: clamp(18px, 2.1vw, 22px); color: rgba(242,235,220,.82); max-width: 30ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__meta { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero__meta b { font-family: var(--font-display); font-weight: 800; font-size: 30px; display: block; }
.hero__meta span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(242,235,220,.6); }
.hero__visual { position: relative; }
.hero__fan { position: relative; width: 100%; max-width: 560px; margin-inline: auto; aspect-ratio: 1 / 0.92; }
.hero__fan .jc-slot { container-type: inline-size; position: absolute; width: 62%; }
.hero__fan .jc-card { box-shadow: 0 16px 38px -16px rgba(0,0,0,.7); }
.hero__halo { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 999px; background: radial-gradient(circle, rgba(242,75,106,.5), transparent 65%); top: 0; left: 50%; transform: translateX(-50%); z-index: 0; filter: blur(12px); }

/* page hero */
.page-hero { position: relative; overflow: hidden; background: var(--teal-900); color: var(--cream); }
.page-hero__inner { padding-block: clamp(64px, 9vw, 128px) clamp(48px, 7vw, 92px); max-width: 880px; }
.page-hero .eyebrow { color: var(--coral-100); }
.page-hero h1 { margin-top: 20px; }
.page-hero .lead { margin-top: 22px; color: rgba(242,235,220,.82); max-width: 60ch; }

/* -------------------- Marquee -------------------- */
.marquee { overflow: hidden; padding-block: 22px; border-block: 1px solid rgba(242,235,220,.14); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 18px; font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); letter-spacing: -0.02em; white-space: nowrap; opacity: .9; }
.marquee__item::after { content: "✦"; color: var(--coral); font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------- Feature cards -------------------- */
.feature-card {
  position: relative; overflow: hidden;
  background: rgba(242,235,220,.05);
  border: 1px solid rgba(242,235,220,.14);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column; gap: 16px;
}
.s-paper .feature-card, .s-cream .feature-card { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.feature-card__num { font-family: var(--font-display); font-weight: 800; font-size: 17px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 999px; background: var(--coral); color: #fff; }
.feature-card h3 { letter-spacing: -0.02em; }
.feature-card p { opacity: .78; line-height: 1.55; }
.s-paper .feature-card p { opacity: 1; color: var(--ink-soft); }

/* -------------------- Split -------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; line-height: 1.45; }
.check-list li::before { content: "✓"; flex: none; width: 26px; height: 26px; border-radius: 999px; background: var(--coral); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }

/* -------------------- Occasions -------------------- */
.occasions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.occasion {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px; color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .25s ease;
  background: var(--navy);
}
.occasion img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.occasion::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(19,38,57,.78), rgba(19,38,57,.15) 55%, transparent 80%); }
.occasion span { position: relative; z-index: 2; font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: .02em; overflow-wrap: anywhere; hyphens: auto; text-shadow: 0 1px 8px rgba(19,38,57,.5); }
.occasion:hover { transform: translateY(-6px); }
.occasion:hover img { transform: scale(1.06); }

/* -------------------- Brand grid (no boxes, larger logos) -------------------- */
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(20px, 3vw, 40px); align-items: center; }
.brand-grid img { width: 100%; aspect-ratio: 3/2; object-fit: contain; }

/* -------------------- Steps -------------------- */
.steps { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 24px; align-items: start; padding: clamp(24px, 3vw, 34px); border-radius: var(--radius-lg); background: rgba(242,235,220,.05); border: 1px solid rgba(242,235,220,.14); }
.step__num { width: 70px; height: 70px; border-radius: 999px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 26px; background: var(--foil); background-size: 200% 100%; color: #3B2E14; }
.step h3 { margin-bottom: 10px; }
.step p { opacity: .8; line-height: 1.6; }
.step a { color: var(--coral-100); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------- USP -------------------- */
.usp { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 44px); }
.usp__item { display: flex; flex-direction: column; gap: 12px; }
.usp__mark { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--coral); color: #fff; }
.usp__mark svg { width: 26px; height: 26px; }
.usp__item p { opacity: .8; line-height: 1.55; }

/* -------------------- CTA band -------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 88px); text-align: center; background: var(--coral); color: #fff; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin: 18px auto 32px; opacity: .92; }

/* -------------------- Form -------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 8px; }
.form label { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.form input, .form textarea { font-family: var(--font-body); font-size: 16px; color: var(--cream); background: rgba(242,235,220,.06); border: 1px solid rgba(242,235,220,.2); border-radius: var(--radius-sm); padding: 15px 17px; width: 100%; transition: border-color .2s ease, box-shadow .2s ease; }
.form input::placeholder, .form textarea::placeholder { color: rgba(242,235,220,.5); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(242,75,106,.25); }
.form textarea { min-height: 150px; resize: vertical; }

/* -------------------- Prose -------------------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 44px; margin-bottom: 14px; font-size: clamp(22px,3vw,28px); }
.prose h3 { margin-top: 28px; margin-bottom: 10px; }
.prose p, .prose li { opacity: .82; line-height: 1.75; margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose a { color: var(--coral-100); text-decoration: underline; }

/* -------------------- FAQ -------------------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(242,235,220,.16); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--font-display); font-weight: 700; font-size: clamp(17px,2.2vw,20px); color: var(--cream); letter-spacing: -0.01em; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(242,75,106,.4); border-radius: 8px; }
.faq__icon { flex: none; width: 34px; height: 34px; border-radius: 999px; background: rgba(242,235,220,.1); color: var(--coral); display: grid; place-items: center; font-size: 22px; transition: transform .25s ease, background-color .25s ease, color .25s ease; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq__a { padding: 0 4px 26px; opacity: .8; line-height: 1.65; max-width: 72ch; }
.faq__a a { color: var(--coral-100); text-decoration: underline; }

/* -------------------- Footer -------------------- */
.site-footer { position: relative; overflow: hidden; background: var(--navy-700); color: var(--cream); margin-top: auto; }
.site-footer__top { padding-block: clamp(56px, 7vw, 96px); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 52px); }
.site-footer__brand img { height: 28px; margin-bottom: 20px; }
.site-footer__tag { font-family: var(--font-display); font-weight: 700; font-size: 19px; max-width: 260px; line-height: 1.3; }
.site-footer h4 { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; opacity: .65; }
.site-footer ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer__top a { opacity: .8; font-size: 15px; transition: opacity .2s ease, color .2s ease; }
.site-footer__top a:hover { opacity: 1; color: var(--coral); }
.site-footer__bottom { border-top: 1px solid rgba(242,235,220,.14); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; opacity: .6; }

/* -------------------- Scroll reveal -------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ==========================================================================
   GIFT CARDS — exact from Kindly & Co profile (Jewel & foil)
   ========================================================================== */
.jc-grid { display: flex; flex-wrap: wrap; gap: 32px 26px; }
.jc-slot { container-type: inline-size; flex: 1 1 330px; min-width: 270px; max-width: 372px; }
.jcr-grid { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 26px; }
.jcr-slot { container-type: inline-size; flex: 1 1 360px; min-width: 280px; max-width: 430px; }

.jc-foilbar {
  height: 128px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  background: linear-gradient(105deg, #9C7E44, #E8D5A0 24%, #FBF3DA 46%, #D9C08A 64%, #9C7E44);
}

.jc-card {
  position: relative; width: 100%; aspect-ratio: 480 / 303; border-radius: 4.2cqw; overflow: hidden;
  font-family: var(--font-body); color: #F2EBDC;
  box-shadow: 0 2px 4px rgba(43,26,30,.06), 0 22px 44px -22px rgba(43,26,30,.4);
}
.jc-inner { position: absolute; inset: 0; padding: 5.4cqw 6.25cqw; display: flex; flex-direction: column; justify-content: space-between; z-index: 3; }
.jc-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 3cqw; }
.jc-bottom { align-items: flex-end; }
.jc-logo { width: 18cqw; height: auto; }
.jc-mid { display: flex; flex-direction: column; gap: 1.6cqw; }
.jc-name { font-family: var(--font-display); font-weight: 800; font-size: 10.8cqw; line-height: 1.1; letter-spacing: -0.03em; margin: 0; }
.jc-desc { font-size: 3.02cqw; line-height: 1.45; margin: 0; max-width: 76cqw; color: rgba(242,235,220,.82); }
.jc-meta { font-size: 2.19cqw; font-weight: 600; letter-spacing: 0.14em; color: rgba(242,235,220,.62); }
.jc-chip {
  font-size: 2.08cqw; font-weight: 700; letter-spacing: 0.16em; padding: 1.45cqw 2.7cqw; border-radius: 999px; color: #3B2E14;
  background: linear-gradient(110deg, #A8884F, #D9C08A 28%, #F4E7C3 50%, #D9C08A 72%, #A8884F);
  background-size: 220% 100%; box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 1px 3px rgba(0,0,0,.25);
  white-space: nowrap; align-self: flex-start;
}
.jc-foil {
  background: linear-gradient(105deg, #B89A5E, #E8D5A0 22%, #FBF3DA 42%, #D9C08A 60%, #9C7E44 85%, #C7AC6E);
  background-size: 240% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: 0.18em 0.2em 0.24em 0.1em; margin: -0.18em -0.2em -0.24em -0.1em;
}
.jc-frame { position: absolute; inset: 2.3cqw; border-radius: 2.5cqw; border: 1px solid rgba(232,213,160,.5); z-index: 2; pointer-events: none; }
.jc-sheen { position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(130% 110% at 18% -12%, rgba(255,255,255,.16), transparent 52%), radial-gradient(90% 80% at 105% 115%, rgba(0,0,0,.22), transparent 55%); }
.jc-shimmer { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,248,225,.22) 47%, rgba(255,252,240,.38) 50%, rgba(255,248,225,.22) 53%, transparent 62%);
  background-size: 320% 100%; background-position: 110% 0; }
@media (prefers-reduced-motion: no-preference) {
  .jc-shimmer { animation: jc-sweep 5.5s cubic-bezier(.4,0,.2,1) infinite; }
  .jc-foil, .jc-chip { animation: jc-foilshift 7s ease-in-out infinite; }
}
@keyframes jc-sweep { 0%, 55% { background-position: 110% 0; } 85%, 100% { background-position: -110% 0; } }
@keyframes jc-foilshift { 0%, 100% { background-position: 0 0; } 50% { background-position: 100% 0; } }

.jc-cap { margin-top: 14px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; opacity: .6; font-family: var(--font-display); font-weight: 600; }

/* Info block under each tier card (price + assortment link) */
.jc-info { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.jc-info .jc-price { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.jc-info .jc-fine { font-size: 13.5px; opacity: .72; }
.jc-info .link-arrow { margin-top: 8px; color: var(--coral-100); font-size: 15px; }

/* Recipient card — openable */
.jcr-stage { width: 100%; aspect-ratio: 440 / 300; perspective: 1700px; }
.jcr-stack { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; cursor: pointer; border-radius: 4.5cqw; filter: drop-shadow(0 22px 40px rgba(31,26,20,.3)); outline: none; }
.jcr-stack:focus-visible { box-shadow: 0 0 0 3px rgba(0,119,142,.4); border-radius: 5cqw; }
.jcr-inside {
  position: absolute; inset: 0; z-index: 0; transform: translateZ(-2px); border-radius: 4.5cqw; overflow: hidden;
  background: linear-gradient(158deg, #FBF5E6, #F0E5CD); padding: 5.4cqw 6.4cqw; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: inset 0 2px 16px rgba(43,26,30,.12), inset 0 0 0 1px rgba(43,26,30,.05);
}
.jcr-door {
  position: absolute; top: 0; width: 50%; height: 100%; z-index: 2; transform-style: preserve-3d;
  transition: transform 1.05s linear(0, 0.25 9%, 0.62 18.7%, 0.99 28.9%, 1.19 38.6%, 1.13 48.4%, 0.96 62.5%, 1.03 78%, 1); will-change: transform;
}
.jcr-door-l { left: 0; transform-origin: left center; }
.jcr-door-r { right: 0; transform-origin: right center; }
.jcr-stack.is-open .jcr-door-l { transform: rotateY(-118deg); }
.jcr-stack.is-open .jcr-door-r { transform: rotateY(118deg); }
@media (prefers-reduced-motion: reduce) { .jcr-door { transition: transform .3s ease; } }
.jcr-face { position: absolute; inset: 0; overflow: hidden; backface-visibility: hidden; background: linear-gradient(135deg, #00778E, #015C6E); }
.jcr-door-l .jcr-face { border-radius: 4.5cqw 0 0 4.5cqw; }
.jcr-door-r .jcr-face { border-radius: 0 4.5cqw 4.5cqw 0; }
.jcr-back { transform: rotateY(180deg); background: linear-gradient(135deg, #015C6E, #013D49 120%); }
.jcr-pattern { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.jcr-pattern.pat-stripe { background-image: repeating-linear-gradient(45deg, rgba(242,235,220,.11) 0 6px, transparent 6px 17px); }
.jcr-pattern.pat-waves { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='18'%3E%3Cpath d='M0 9 Q15 0 30 9 T60 9' fill='none' stroke='%23F2EBDC' stroke-opacity='0.2' stroke-width='1.4'/%3E%3C/svg%3E"); background-size: 60px 18px; }
.jcr-frame { position: absolute; z-index: 2; pointer-events: none; border: 1px solid rgba(232,213,160,.45); }
.jcr-frame-l { top: 2.5cqw; left: 2.5cqw; bottom: 2.5cqw; right: 0; border-right: none; border-radius: 2.3cqw 0 0 2.3cqw; }
.jcr-frame-r { top: 2.5cqw; right: 2.5cqw; bottom: 2.5cqw; left: 0; border-left: none; border-radius: 0 2.3cqw 2.3cqw 0; }
.jcr-shimmer { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,248,225,.18) 47%, rgba(255,252,240,.3) 50%, rgba(255,248,225,.18) 53%, transparent 62%);
  background-size: 320% 100%; background-position: 110% 0; }
@media (prefers-reduced-motion: no-preference) { .jcr-shimmer { animation: jc-sweep 6s cubic-bezier(.4,0,.2,1) infinite; } .jcr-shimmer-2 { animation-delay: 1.2s; } }
.jcr-ribbon { position: absolute; inset: 0; z-index: 6; pointer-events: none; background: url("../assets/ribbon.png") center / 100% 100% no-repeat; filter: drop-shadow(0 5px 9px rgba(31,26,20,.22)); transition: opacity .45s ease, transform .6s cubic-bezier(.4,0,.2,1); }
.jcr-stack.is-open .jcr-ribbon { opacity: 0; transform: scale(1.06) translateY(-10px); }
.jcr-dc { position: absolute; inset: 0; padding: 5.4cqw 5.9cqw; display: flex; z-index: 3; }
.jcr-dc-l { align-items: flex-end; justify-content: flex-start; }
.jcr-dc-r { align-items: flex-end; justify-content: flex-end; }
.jcr-dc img { width: 18.6cqw; height: auto; }
.jcr-hint { font-size: 2.27cqw; font-weight: 700; letter-spacing: 0.18em; color: rgba(242,235,220,.85); display: inline-flex; align-items: center; gap: 1.4cqw; white-space: nowrap; }
.jcr-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 3cqw; }
.jcr-bottom { align-items: flex-end; }
.jcr-logo-ink { width: 17.7cqw; height: auto; }
.jcr-note-mid { display: flex; flex-direction: column; gap: 1.4cqw; }
.jcr-note-title { font-family: var(--font-display); font-weight: 800; font-size: 7.7cqw; line-height: 1.1; letter-spacing: -0.03em; margin: 0; color: #015C6E; }
.jcr-greeting { font-size: 3.18cqw; font-style: italic; line-height: 1.5; margin: 0; max-width: 76cqw; color: #6A5A4C; }
.jcr-sender { font-size: 2.16cqw; font-weight: 600; letter-spacing: 0.15em; color: #A8967C; margin: 0.9cqw 0 0; }
.jcr-code { font-family: var(--font-display); font-weight: 700; font-size: 3.86cqw; letter-spacing: 0.07em; color: var(--ink); }
.jcr-valid { display: block; margin-top: 0.9cqw; font-size: 2.04cqw; font-weight: 600; letter-spacing: 0.12em; color: #A8967C; }
.jcr-chip-ink { font-size: 2.27cqw; font-weight: 700; letter-spacing: 0.16em; padding: 1.36cqw 2.7cqw; border-radius: 999px; color: #015C6E; border: 1.5px solid rgba(0,119,142,.34); background: rgba(255,255,255,.5); white-space: nowrap; align-self: flex-start; }
.jcr-qr { display: grid; grid-template-columns: repeat(9, 1fr); gap: 1px; background: #fff; border-radius: 1.4cqw; padding: 0.9cqw; width: 12.6cqw; height: 12.6cqw; flex: none; box-sizing: border-box; }
.jcr-qr span { border-radius: 1px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1023px) {
  .nav, .site-header__cta { display: none; }
  .nav-toggle { display: inline-grid; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-top: 16px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .occasions { grid-template-columns: repeat(3, 1fr); }
  .usp { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 72px; left: var(--gutter); right: var(--gutter);
    background: rgba(28,16,19,.96); border: 1px solid rgba(242,235,220,.14);
    border-radius: 22px; padding: 14px; backdrop-filter: blur(16px);
  }
  .nav.is-open .nav__link { font-size: 16px; padding: 13px 16px; }
}
@media (max-width: 680px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .occasions { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__visual .jc-card { transform: none; }
}
@media (max-width: 400px) {
  .grid-4, .brand-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
