/* =====================================================================
   Teaspoon Honey — 2026 Festive Valley Collection (ADDITIVE)
   Namespaced `.fvc*` (the /gifting/ catalogue) / `.fva*` (assurance).
   Reuses the theme tokens from theme.css:
   --honey --gold --brown --cream --noir --ink-soft --honey-soft
   --serif --sans --script. No new colours, fonts or scripts.

   Motion piggybacks on the theme's existing reveal engine (lux-v2.js
   observes `.luxv2 [data-luxv2-reveal]`), which is why the section
   wrappers carry `.luxv2`.
   ===================================================================== */

.fvc, .fva { width: 100%; max-width: 1200px; margin-inline: auto;
  padding: clamp(58px, 9vh, 110px) clamp(20px, 5vw, 56px); box-sizing: border-box; }
.fvc *, .fvc *::before, .fvc *::after,
.fva *, .fva *::before, .fva *::after { box-sizing: border-box; }

/* ---- Shared atoms ---------------------------------------------------- */
.fvc__eyebrow { display: block; font-family: var(--sans); font-size: 0.75rem; letter-spacing: .32em;
  text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.fvc__title, .fva__title { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em;
  line-height: 1.06; margin: 0; color: var(--brown);
  font-size: clamp(1.9rem, 4.6vw, 3.2rem); }
.fvc__title em, .fva__title em { font-style: italic; color: var(--gold); }
.fvc__sub { font-family: var(--sans); font-size: clamp(.98rem, 1.4vw, 1.1rem); line-height: 1.75;
  color: var(--ink-soft); max-width: 60ch; margin: 18px auto 0; }
.fvc__head { text-align: center; margin-bottom: clamp(34px, 5.5vh, 62px); }

/* ---- The four valley boxes ------------------------------------------ */
.fvc__grid { list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 40px); }
.fvc__card { display: flex; flex-direction: column; background: #fff;
  border: 1px solid rgba(67,55,45,.10); border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(67,55,45,.10);
  transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s;
  transition-delay: calc(var(--luxv2-i, 0) * .07s); }
.fvc__card:hover { transform: translateY(-4px); box-shadow: 0 28px 62px rgba(67,55,45,.17); }

.fvc__media { display: block; overflow: hidden; background: var(--cream); }
.fvc__media img { display: block; width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover;
  transition: transform 1s cubic-bezier(.16,.84,.44,1); }
.fvc__card:hover .fvc__media img { transform: scale(1.04); }

.fvc__body { display: flex; flex-direction: column; flex: 1 1 auto;
  padding: clamp(20px, 2.4vw, 30px); }
.fvc__name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15; margin: 0; color: var(--brown); }
.fvc__name a { color: inherit; text-decoration: none; }
.fvc__name a:hover { color: var(--gold); }
.fvc__subname { font-family: var(--script); font-size: 1.25rem; color: var(--gold); margin: 2px 0 0; }

.fvc__meta { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; margin: 14px 0 0;
  padding-bottom: 14px; border-bottom: 1px solid rgba(67,55,45,.10); }
.fvc__price { font-family: var(--serif); font-size: 1.2rem; color: var(--brown); }
.fvc__price del { opacity: .5; font-size: .85em; margin-right: 4px; }
.fvc__price ins { text-decoration: none; }
.fvc__unit, .fvc__items { font-family: var(--sans); font-size: 0.75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); }

.fvc__lead { font-family: var(--sans); font-size: .92rem; line-height: 1.65; color: var(--ink-soft);
  margin: 14px 0 0; }

/* Contents disclosed on demand: six to ten bullet points per box would bury
   the price and the buy button under a wall of list items. */
.fvc__what { margin: 14px 0 0; }
.fvc__what summary { font-family: var(--sans); font-size: 0.75rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 700; color: var(--gold); cursor: pointer;
  list-style: none; display: inline-flex; align-items: center; gap: 8px; }
.fvc__what summary::-webkit-details-marker { display: none; }
.fvc__what summary::after { content: "+"; font-size: 1rem; line-height: 1; }
.fvc__what[open] summary::after { content: "\2212"; }
.fvc__what summary:hover { color: var(--brown); }
.fvc__what ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 7px; }
.fvc__what li { position: relative; padding-left: 15px; font-family: var(--sans);
  font-size: .87rem; line-height: 1.5; color: var(--ink-soft); }
.fvc__what li::before { content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--honey); }

.fvc__quote { font-family: var(--serif); font-style: italic; font-size: .95rem; line-height: 1.55;
  color: var(--brown); margin: 16px 0 0; opacity: .85; }

.fvc__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 20px; }
.fvc__btn { display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; padding: .9em 1.6em; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .3s, box-shadow .3s; }
.fvc__btn--gold { background: var(--honey); color: var(--brown); }
.fvc__btn--gold:hover { background: var(--gold); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234,154,54,.42); }
.fvc__btn--ghost { background: transparent; color: var(--brown); border-color: rgba(67,55,45,.26); }
.fvc__btn--ghost:hover { border-color: var(--brown); transform: translateY(-2px); }

/* ---- The two corporate boxes (enquiry only) ------------------------- */
.fvc__corp { margin-top: clamp(48px, 7vh, 88px); padding-top: clamp(40px, 6vh, 70px);
  border-top: 1px solid rgba(67,55,45,.14); }
.fvc__corphead { text-align: center; margin-bottom: clamp(28px, 4.5vh, 48px); }
.fvc__corptitle { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1; letter-spacing: -.018em; margin: 0; color: var(--brown); }
.fvc__corpsub { font-family: var(--sans); font-size: .96rem; line-height: 1.7; color: var(--ink-soft);
  max-width: 56ch; margin: 12px auto 0; }
.fvc__corpgrid { list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 34px); }
.fvc__corpcard { display: grid; grid-template-columns: 34% 1fr; gap: clamp(16px, 2vw, 24px);
  align-items: start; padding: clamp(18px, 2vw, 24px); background: rgba(255,255,255,.62);
  border: 1px solid rgba(67,55,45,.10); border-radius: 18px;
  transition-delay: calc(var(--luxv2-i, 0) * .08s); }
.fvc__corpmedia { border-radius: 12px; overflow: hidden; }
.fvc__corpmedia img { display: block; width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; }
.fvc__corpname { font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.2; margin: 0; color: var(--brown); }
.fvc__corplist { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 6px; }
.fvc__corplist li { position: relative; padding-left: 14px; font-family: var(--sans);
  font-size: .84rem; line-height: 1.5; color: var(--ink-soft); }
.fvc__corplist li::before { content: ""; position: absolute; left: 0; top: .55em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--honey); }

/* =====================================================================
   Assurance — occasions, impact, personalisation, delivery
   ===================================================================== */
.fva__head { text-align: center; margin-bottom: clamp(30px, 4.6vh, 52px); }
.fva__text { font-family: var(--sans); font-size: clamp(.95rem, 1.3vw, 1.05rem); line-height: 1.75;
  color: var(--ink-soft); margin: 14px 0 0; max-width: 52ch; }

.fva__occgrid { list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 32px); }
.fva__occgrid li { padding-top: 16px; border-top: 1px solid rgba(67,55,45,.18);
  transition-delay: calc(var(--luxv2-i, 0) * .07s); }
.fva__occl { display: block; font-family: var(--serif); font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--brown); }
.fva__occs { display: block; font-family: var(--sans); font-size: .82rem; line-height: 1.5;
  color: var(--ink-soft); margin-top: 5px; }

/* Impact — the one dark band inside the light act, so it lands. */
.fva__impact { margin-top: clamp(50px, 7.5vh, 96px); display: grid;
  grid-template-columns: 46% 1fr; gap: clamp(24px, 4vw, 56px); align-items: center;
  background: var(--noir); color: var(--cream); border-radius: 22px; overflow: hidden;
  padding: clamp(22px, 2.6vw, 34px); box-shadow: 0 30px 70px rgba(13,10,6,.28); }
.fva__impactmedia { margin: 0; border-radius: 16px; overflow: hidden; }
.fva__impactmedia img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.fva__impact .fva__title { color: #fff; }
.fva__impact .fva__title em { color: var(--honey); }
.fva__impact .fva__text { color: rgba(249,242,226,.72); }
.fva__impact .fvc__eyebrow { color: var(--honey); }

/* Personalise + delivery */
.fva__make { margin-top: clamp(50px, 7.5vh, 96px); display: grid;
  grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.fva__bounty { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.fva__bounty li { font-family: var(--sans); font-size: .8rem; color: var(--brown);
  padding: .5em 1em; border: 1px solid rgba(67,55,45,.2); border-radius: 100px;
  transition-delay: calc(var(--luxv2-i, 0) * .05s); }
.fva__deliver { padding: clamp(20px, 2.4vw, 30px); background: rgba(255,255,255,.62);
  border: 1px solid rgba(67,55,45,.10); border-radius: 18px; }
.fva__delivertitle { font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  margin: 0; color: var(--brown); }
.fva__contact { display: flex; flex-direction: column; gap: 6px; margin: 16px 0 0; }
.fva__contact a { font-family: var(--sans); font-size: .88rem; color: var(--brown); text-decoration: none;
  border-bottom: 1px solid rgba(67,55,45,.25); align-self: flex-start; transition: color .25s, border-color .25s; }
.fva__contact a:hover { color: var(--gold); border-color: var(--gold); }

/* Closing panel fine print (contact line). */
.story-fine { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap;
  margin: clamp(20px, 3vh, 30px) 0 0; font-family: var(--sans); font-size: .82rem;
  color: rgba(249,242,226,.6); }
.story-fine a { color: rgba(249,242,226,.82); text-decoration: none;
  border-bottom: 1px solid rgba(249,242,226,.28); transition: color .25s, border-color .25s; }
.story-fine a:hover { color: var(--honey); border-color: var(--honey); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .fva__impact, .fva__make { grid-template-columns: 1fr; }
  .fva__impactmedia { order: -1; }
  .fva__occgrid { grid-template-columns: repeat(2, 1fr); }
  .fvc__corpgrid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .fvc__grid { grid-template-columns: 1fr; }
  .fvc__corpcard { grid-template-columns: 1fr; }
  .fvc__corpmedia img { aspect-ratio: 16/9; }
}
@media (max-width: 520px) {
  .fva__occgrid { grid-template-columns: 1fr; }
  .fvc__cta .fvc__btn { flex: 1 1 100%; }
}

/* Respect reduced-motion. */
@media (prefers-reduced-motion: reduce) {
  .fvc__card, .fvc__card:hover, .fvc__media img, .fvc__btn:hover { transform: none !important; }
  .fvc__media img { transition: none !important; }
}

/* ---- Type system: sans headings, script emphasis (see theme.css) ----- */
.fvc__title, .fva__title{ font-weight:700; letter-spacing:-.022em; }
.fvc__name, .fvc__corptitle, .fvc__corpname, .fva__delivertitle{
  font-weight:700; letter-spacing:-.015em; }
.fvc__price{ font-weight:600; }
.fvc__quote{ font-style:normal; }
.fvc__title em, .fva__title em{
  font-family:var(--script); font-style:normal; font-weight:400; font-size:1.12em; }
