:root {
  --fp-stone:    #8C8278;
  --fp-deep:     #1A1814;
  --fp-warm:     #F2EDE4;
  --fp-bronze:   #B8935A;
  --fp-charcoal: #2C2925;
  --fp-mid:      #4A453F;
  --fp-light:    #D4CCBF;
}

* { box-sizing: border-box; }

body { background: var(--fp-warm); color: var(--fp-charcoal); }

/* ── HERO ─────────────────────────────────────── */
.fp-hero {
  background: var(--fp-deep);
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}
.fp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(184,147,90,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.fp-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fp-badge {
  display: inline-block;
  background: rgba(184,147,90,0.15);
  border: 1px solid rgba(184,147,90,0.4);
  color: var(--fp-bronze);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.fp-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.fp-hero h1 em {
  font-style: italic;
  color: var(--fp-bronze);
}
.fp-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fp-light);
  line-height: 1.7;
  margin-bottom: 36px;
}
.fp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fp-bronze);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.fp-hero-cta:hover { background: #a07d48; }

/* ── NOTEBOOK SVG MOCKUP ──────────────────────── */
.fp-notebook-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fp-notebook-stack {
  position: relative;
  width: 280px;
  height: 360px;
}
.fp-nb-shadow {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 40px;
  background: rgba(0,0,0,0.4);
  filter: blur(18px);
  border-radius: 50%;
}
.fp-nb-back {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 256px;
  height: 340px;
  background: #2C2925;
  border-radius: 4px 6px 6px 4px;
}
.fp-nb-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 340px;
  background: linear-gradient(160deg, #2C2925 0%, #1A1814 100%);
  border-radius: 4px 6px 6px 4px;
  border: 1px solid rgba(184,147,90,0.3);
  overflow: hidden;
}
.fp-nb-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, #111 0%, #2a2621 60%, #1a1814 100%);
  border-right: 1px solid rgba(184,147,90,0.2);
}
.fp-nb-spine-line {
  position: absolute;
  left: 6px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: rgba(184,147,90,0.3);
}
.fp-nb-content {
  position: absolute;
  left: 28px;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 20px;
}
.fp-nb-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fp-nb-tagline {
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--fp-bronze);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.fp-nb-divider {
  width: 40px;
  height: 1px;
  background: rgba(184,147,90,0.5);
  margin-bottom: 28px;
}
.fp-nb-icon {
  opacity: 0.25;
}
.fp-nb-ribbon {
  position: absolute;
  top: 0;
  right: 16px;
  width: 6px;
  height: 60px;
  background: linear-gradient(180deg, var(--fp-bronze), #8a6a3a);
  border-radius: 0 0 3px 3px;
}
.fp-nb-elastic {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  top: 0;
  bottom: 0;
  right: 6px;
  width: 1.5px;
  background: rgba(184,147,90,0.4);
}
.fp-pages-edge {
  position: absolute;
  top: 3px;
  right: -6px;
  bottom: 3px;
  width: 8px;
  background: repeating-linear-gradient(
    to bottom,
    #c8c0b4 0px,
    #c8c0b4 1px,
    #ddd8d0 1px,
    #ddd8d0 3px
  );
  border-radius: 0 2px 2px 0;
}

/* ── STAT BAR ─────────────────────────────────── */
.fp-stats {
  background: var(--fp-charcoal);
  padding: 28px 0;
}
.fp-stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.fp-stat {
  text-align: center;
}
.fp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--fp-bronze);
  line-height: 1;
  margin-bottom: 4px;
}
.fp-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fp-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SHARED SECTION STYLES ───────────────────── */
.fp-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 52px 32px;
}
.fp-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fp-bronze);
  margin-bottom: 12px;
}
.fp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--fp-deep);
  margin-bottom: 16px;
  line-height: 1.2;
}
.fp-section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--fp-mid);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ── PRODUCT LINEUP ───────────────────────────── */
.fp-products { background: #fff; }
.fp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.fp-product-card {
  background: var(--fp-warm);
  border: 1px solid var(--fp-light);
  border-radius: 8px;
  overflow: hidden;
}
.fp-product-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fp-pv-classic { background: linear-gradient(145deg, #1A1814, #2C2925); }
.fp-pv-grid    { background: linear-gradient(145deg, #1E2635, #2a3548); }
.fp-pv-folio   { background: linear-gradient(145deg, #1C1F1A, #2a2e27); }

.fp-mini-nb {
  position: relative;
  border-radius: 3px 5px 5px 3px;
  border: 1px solid rgba(184,147,90,0.3);
  overflow: hidden;
}
.fp-mini-nb-a5  { width: 120px; height: 160px; }
.fp-mini-nb-a4  { width: 110px; height: 155px; }
.fp-mini-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: rgba(0,0,0,0.4);
  border-right: 1px solid rgba(184,147,90,0.2);
}
.fp-mini-face {
  position: absolute;
  left: 12px; right: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
}
.fp-mini-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fp-mini-rule {
  width: 24px; height: 1px;
  background: rgba(184,147,90,0.5);
}
.fp-mini-sub {
  font-size: 0.52rem;
  color: var(--fp-bronze);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fp-mini-lines {
  width: 60px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.fp-mini-line {
  height: 0.5px;
  background: rgba(255,255,255,0.12);
}
.fp-mini-dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 8px;
  width: 60px;
}
.fp-mini-dot {
  width: 2px; height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
}
/* ── BOX MOCKUP ───────────────────────────────── */
.fp-pv-print { background: linear-gradient(145deg, #2E3A2F, #3D4A3E); }
.fp-box-wrap {
  position: relative;
  width: 160px;
  height: 140px;
}
.fp-box-shadow {
  position: absolute;
  bottom: -12px;
  left: 10px;
  right: 10px;
  height: 22px;
  background: rgba(0,0,0,0.35);
  filter: blur(12px);
  border-radius: 50%;
}
/* Lid — sits above, slightly open */
.fp-box-lid {
  position: absolute;
  top: 0; left: 0;
  width: 148px;
  z-index: 3;
}
.fp-box-lid-top {
  width: 148px;
  height: 22px;
  background: linear-gradient(180deg, #2a2520, #1e1c18);
  border: 1px solid rgba(184,147,90,0.35);
  border-radius: 2px 2px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-box-lid-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.55rem;
  color: var(--fp-bronze);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.fp-box-lid-side {
  width: 148px;
  height: 8px;
  background: linear-gradient(180deg, #3a352e, #2a2520);
  border-left: 1px solid rgba(184,147,90,0.2);
  border-right: 1px solid rgba(184,147,90,0.2);
}
/* Sheets peeking out under lid */
.fp-box-sheets {
  position: absolute;
  top: 22px;
  left: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 2;
}
.fp-sheet {
  height: 2px;
  background: linear-gradient(90deg, #e8e2d8, #f0ebe1);
  border-radius: 0;
}
/* Box body */
.fp-box-body {
  position: absolute;
  top: 30px;
  left: 0;
  width: 148px;
  height: 100px;
}
.fp-box-face {
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  height: 100px;
  background: linear-gradient(170deg, #1e1c18, #2a2520);
  border: 1px solid rgba(184,147,90,0.3);
  border-radius: 0 0 0 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 12px;
}
.fp-box-side {
  position: absolute;
  top: 0; left: 120px;
  width: 28px;
  height: 100px;
  background: linear-gradient(90deg, #141210, #1e1c18);
  border-top: 1px solid rgba(184,147,90,0.15);
  border-right: 1px solid rgba(184,147,90,0.2);
  border-bottom: 1px solid rgba(184,147,90,0.2);
  transform: skewY(-6deg);
  transform-origin: top left;
}
.fp-box-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.fp-box-rule { width: 32px; height: 1px; background: rgba(184,147,90,0.5); }
.fp-box-product {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--fp-bronze);
}
.fp-box-spec {
  font-size: 0.44rem;
  color: rgba(212,204,191,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── REAM MOCKUP ──────────────────────────────── */
.fp-pv-print { background: linear-gradient(145deg, #2E3A2F, #3D4A3E); }
.fp-ream-wrap {
  position: relative;
  width: 130px;
  height: 100px;
}
.fp-ream-shadow {
  position: absolute;
  bottom: -10px;
  left: 10px;
  right: 10px;
  height: 20px;
  background: rgba(0,0,0,0.35);
  filter: blur(10px);
  border-radius: 50%;
}
.fp-ream-body {
  position: absolute;
  top: 0; left: 0;
  width: 130px;
  height: 90px;
  background: linear-gradient(170deg, #f5f0e8, #e8e2d8);
  border-radius: 2px 3px 3px 2px;
  border: 1px solid rgba(184,147,90,0.25);
}
.fp-ream-spine {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 14px;
  background: linear-gradient(180deg, #d4ccbf, #c8c0b4);
  border-top: 1px solid rgba(140,130,120,0.4);
  border-radius: 0 0 3px 2px;
}
.fp-ream-label {
  position: absolute;
  top: 14px; left: 12px; right: 12px;
  bottom: 18px;
  border: 1px solid rgba(184,147,90,0.35);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(242,237,228,0.6);
}
.fp-ream-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.62rem;
  color: #1A1814;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.fp-ream-rule { width: 28px; height: 1px; background: rgba(184,147,90,0.5); }
.fp-ream-spec {
  font-size: 0.48rem;
  color: #B8935A;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fp-ream-edge {
  position: absolute;
  right: -5px; top: 3px; bottom: 3px;
  width: 6px;
  background: repeating-linear-gradient(
    to bottom,
    #c8c0b4 0px, #c8c0b4 1px,
    #ddd8d0 1px, #ddd8d0 3px
  );
  border-radius: 0 2px 2px 0;
}

.fp-pages-edge-mini {
  position: absolute;
  top: 2px; right: -5px; bottom: 2px;
  width: 6px;
  background: repeating-linear-gradient(
    to bottom,
    #c8c0b4 0px, #c8c0b4 1px,
    #ddd8d0 1px, #ddd8d0 3px
  );
  border-radius: 0 2px 2px 0;
}

.fp-product-info {
  padding: 24px;
}
.fp-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fp-deep);
  margin-bottom: 4px;
}
.fp-product-format {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fp-stone);
  margin-bottom: 16px;
}
.fp-product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-product-specs li {
  font-size: 0.85rem;
  color: var(--fp-mid);
  padding-left: 16px;
  position: relative;
}
.fp-product-specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fp-bronze);
  font-size: 0.7rem;
}
.fp-product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fp-deep);
}
.fp-product-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--fp-stone);
  margin-left: 4px;
}

/* ── WRITING EXPERIENCE SECTION ──────────────── */
.fp-section-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fp-bronze);
  margin-bottom: 20px;
  margin-top: -8px;
}


.fp-writing { background: #fff; }
.fp-writing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.fp-writing-card {
  background: var(--fp-warm);
  border: 1px solid var(--fp-light);
  border-radius: 10px;
  overflow: hidden;
}
.fp-writing-demo {
  padding: 28px 28px 16px;
  display: flex;
  justify-content: center;
}
.fp-demo-page {
  position: relative;
  width: 100%;
  max-width: 280px;
  background: #F7F4EE;
  border-radius: 3px;
  border: 1px solid rgba(180,170,155,0.5);
  box-shadow: 2px 4px 16px rgba(0,0,0,0.1);
  overflow: visible;
}
.fp-demo-page-caution { background: #f5f0f7; }
.fp-ink-strokes { display: block; width: 100%; }
.fp-pen {
  position: absolute;
  bottom: -18px;
  right: -14px;
  transform: rotate(-32deg);
  transform-origin: bottom right;
}
.fp-pen-body {
  width: 10px;
  height: 72px;
  border-radius: 5px 5px 1px 1px;
}
.fp-pen-tip {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin: 0 auto;
}
/* Ballpoint — classic blue barrel */
.fp-pen-ballpoint .fp-pen-body { background: linear-gradient(160deg, #2255a4, #1a3a6b); }
.fp-pen-ballpoint .fp-pen-tip  { border-top: 12px solid #1a3a6b; }
/* Gel — sleek black barrel */
.fp-pen-gel .fp-pen-body { background: linear-gradient(160deg, #333, #111); }
.fp-pen-gel .fp-pen-tip  { border-top: 12px solid #111; }
/* Rollerball — dark navy -->  */
.fp-pen-rollerball .fp-pen-body { background: linear-gradient(160deg, #3a4a7a, #1e2d5a); }
.fp-pen-rollerball .fp-pen-tip  { border-top: 12px solid #1e2d5a; }
/* Fountain — dark green/gold classic -->  */
.fp-pen-fountain .fp-pen-body { background: linear-gradient(160deg, #2d5a3a, #1a3a28); }
.fp-pen-fountain .fp-pen-tip  { border-top: 12px solid #1a3a28; }

.fp-writing-info {
  padding: 0 24px 24px;
}
.fp-writing-pen-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fp-deep);
  margin-bottom: 6px;
}
.fp-writing-verdict {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.fp-verdict-yes     { background: rgba(46,125,50,0.1); color: #2e7d32; }
.fp-verdict-caution { background: rgba(230,81,0,0.1);  color: #e65100; }
.fp-writing-desc {
  font-size: 0.87rem;
  color: var(--fp-mid);
  line-height: 1.65;
}

@media (max-width: 800px) {
  .fp-writing-grid { grid-template-columns: 1fr; }
}

/* ── RESISTANCE SECTION ───────────────────────── */
.fp-resistance {
  background: var(--fp-deep);
}
.fp-resistance .fp-section-label { color: var(--fp-bronze); }
.fp-resistance .fp-section-title { color: #fff; }
.fp-resist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fp-resist-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fp-resist-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-resist-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.fp-resist-rating {
  display: flex;
  gap: 6px;
  align-items: center;
}
.fp-resist-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,147,90,0.5);
}
.fp-dot-active  { background: var(--fp-bronze); border-color: var(--fp-bronze); }
.fp-dot-partial { background: rgba(184,147,90,0.35); border-color: var(--fp-bronze); }
.fp-resist-body {
  font-size: 0.88rem;
  color: var(--fp-light);
  line-height: 1.7;
  flex: 1;
}
.fp-resist-spec {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fp-bronze);
  border-top: 1px solid rgba(184,147,90,0.2);
  padding-top: 12px;
  margin-top: 4px;
}

@media (max-width: 800px) {
  .fp-resist-grid { grid-template-columns: 1fr; }
}

/* ── MATERIAL SCIENCE SECTION ─────────────────── */
.fp-material { background: var(--fp-warm); }
.fp-material-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.fp-material-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fp-mat-card {
  background: #fff;
  border: 1px solid var(--fp-light);
  border-left: 3px solid var(--fp-bronze);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
}
.fp-mat-card-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fp-bronze);
  margin-bottom: 6px;
}
.fp-mat-card-body {
  font-size: 0.9rem;
  color: var(--fp-mid);
  line-height: 1.6;
}
.fp-mat-card-body strong { color: var(--fp-charcoal); }

/* Cross-section diagram */
.fp-diagram-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fp-diagram-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-stone);
  margin-bottom: 8px;
}
.fp-layer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fp-layer-bar {
  border-radius: 3px;
  flex-shrink: 0;
}
.fp-layer-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fp-deep);
}
.fp-layer-desc {
  font-size: 0.78rem;
  color: var(--fp-stone);
}
.fp-layer-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fp-bronze);
  margin-left: auto;
  flex-shrink: 0;
}

/* ── END OF LIFE SECTION ──────────────────────── */
.fp-takeback {
  background: var(--fp-deep);
  border-radius: 10px;
  padding: 36px;
  margin-bottom: 32px;
}
.fp-takeback-formats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(184,147,90,0.2);
}
.fp-tb-format { display: flex; flex-direction: column; gap: 4px; }
.fp-tb-format-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fp-bronze);
}
.fp-tb-format-desc { font-size: 0.85rem; color: var(--fp-light); }
.fp-tb-format-divider { color: rgba(184,147,90,0.3); font-size: 1.5rem; }
.fp-takeback-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.fp-tb-step {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-tb-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--fp-bronze);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-tb-text {
  font-size: 0.85rem;
  color: var(--fp-light);
  line-height: 1.5;
}
.fp-tb-arrow {
  color: rgba(184,147,90,0.5);
  font-size: 1.2rem;
  padding-top: 6px;
  flex-shrink: 0;
}
.fp-takeback-note {
  font-size: 0.88rem;
  color: var(--fp-light);
  line-height: 1.7;
  border-top: 1px solid rgba(184,147,90,0.2);
  padding-top: 20px;
}
.fp-takeback-note strong { color: #fff; }

@media (max-width: 700px) {
  .fp-takeback-steps { flex-direction: column; }
  .fp-tb-arrow { transform: rotate(90deg); align-self: center; }
}


.fp-eol { background: var(--fp-warm); }
.fp-eol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fp-eol-card {
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid transparent;
}
.fp-eol-no        { background: rgba(198,40,40,0.05);  border-color: rgba(198,40,40,0.15); }
.fp-eol-yes       { background: #fff;                   border-color: var(--fp-light); }
.fp-eol-highlight { background: rgba(184,147,90,0.07); border-color: rgba(184,147,90,0.25); }
.fp-eol-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
}
.fp-eol-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fp-deep);
}
.fp-eol-body {
  font-size: 0.85rem;
  color: var(--fp-mid);
  line-height: 1.65;
}
.fp-eol-body strong { color: var(--fp-charcoal); }

@media (max-width: 800px) {
  .fp-eol-grid { grid-template-columns: 1fr; }
}

/* ── RECYCLING INSERT ─────────────────────────── */
.fp-insert-section { background: var(--fp-warm); }
.fp-insert-wrap {
  display: flex;
  justify-content: center;
}
.fp-insert-card {
  max-width: 680px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--fp-light);
  border-radius: 4px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}
.fp-insert-header {
  background: var(--fp-deep);
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fp-insert-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.fp-insert-rule { width: 40px; height: 1px; background: rgba(184,147,90,0.6); }
.fp-insert-sub {
  font-size: 0.65rem;
  color: var(--fp-bronze);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.fp-insert-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fp-insert-block {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fp-light);
}
.fp-insert-block:last-child { border-bottom: none; padding-bottom: 0; }
.fp-insert-block-highlight {
  background: rgba(184,147,90,0.06);
  border: 1px solid rgba(184,147,90,0.2);
  border-radius: 4px;
  padding: 20px;
  margin: 0 -4px;
}
.fp-insert-block-head {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fp-charcoal);
  margin-bottom: 10px;
}
.fp-insert-no   { color: #c62828; }
.fp-insert-yes  { color: #2e7d32; }
.fp-insert-warn { color: #b45309; }
.fp-insert-block-warn {
  background: rgba(180,83,9,0.05);
  border: 1px solid rgba(180,83,9,0.2);
  border-radius: 4px;
  padding: 20px;
  margin: 0 -4px;
}
.fp-insert-block-text {
  font-size: 0.9rem;
  color: var(--fp-mid);
  line-height: 1.75;
}
.fp-insert-footer {
  background: var(--fp-warm);
  border-top: 1px solid var(--fp-light);
  padding: 14px 36px;
  font-size: 0.68rem;
  color: var(--fp-stone);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── COMPARISON TABLE ─────────────────────────── */
.fp-compare { background: #fff; }
.fp-table-wrap { overflow-x: auto; }
.fp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fp-table th {
  background: var(--fp-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.fp-table th.fp-col-fp {
  background: var(--fp-bronze);
  color: #fff;
}
.fp-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--fp-light);
  color: var(--fp-mid);
}
.fp-table tr:last-child td { border-bottom: none; }
.fp-table td:first-child {
  font-weight: 500;
  color: var(--fp-charcoal);
}
.fp-table td.fp-col-fp {
  background: rgba(184,147,90,0.06);
  font-weight: 600;
  color: var(--fp-charcoal);
}
.fp-tick { color: #2e7d32; font-weight: 700; }
.fp-cross { color: #c62828; }
.fp-partial { color: #e65100; }

/* ── PARLIAMENT SECTION ───────────────────────── */
.fp-parliament {
  background: var(--fp-charcoal);
}
.fp-parliament .fp-section-title { color: #fff; }
.fp-parliament .fp-section-body { color: var(--fp-light); }
.fp-parliament .fp-section-label { color: var(--fp-bronze); }
.fp-parl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.fp-parl-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,147,90,0.2);
  border-radius: 8px;
  padding: 28px;
}
.fp-parl-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}
.fp-parl-card-body {
  font-size: 0.88rem;
  color: var(--fp-light);
  line-height: 1.7;
}
.fp-parl-highlight { color: #fff; }
.fp-parl-quote {
  border-left: 3px solid var(--fp-bronze);
  padding: 16px 24px;
  margin: 32px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fp-light);
}

/* ── TESTIMONIALS ─────────────────────────────── */
.fp-testimonials {
  background: var(--fp-deep);
}
.fp-testimonials .fp-section-label { color: var(--fp-bronze); }
.fp-testi-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 760px;
}
.fp-testi {
  margin: 0;
  padding: 0;
  border-left: 3px solid rgba(184,147,90,0.4);
  padding-left: 36px;
}
.fp-testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 20px;
}
.fp-testi-attr {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fp-bronze);
}

/* ── FOREVER INK TEASER ───────────────────────── */
.fp-ink-teaser { background: var(--fp-charcoal); }
.fp-ink-teaser .fp-section-label { color: var(--fp-bronze); }
.fp-ink-teaser .fp-section-title { color: #fff; }
.fp-ink-teaser .fp-section-body { color: var(--fp-light); }
.fp-ink-cards {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.fp-ink-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px 24px;
  flex: 1;
  min-width: 160px;
}
.fp-ink-card-highlight {
  border-color: rgba(184,147,90,0.5);
  background: rgba(184,147,90,0.08);
}
.fp-ink-card-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.fp-ink-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.fp-ink-plus {
  font-size: 1.5rem;
  color: var(--fp-bronze);
  font-weight: 300;
  flex-shrink: 0;
}
.fp-ink-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fp-bronze);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,147,90,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.fp-ink-link:hover { border-color: var(--fp-bronze); }

/* ── FURTHER READING ──────────────────────────── */
.fp-further { background: #fff; }
.fp-further-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fp-further-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--fp-warm);
  border: 1px solid var(--fp-light);
  border-radius: 8px;
  padding: 24px 28px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.fp-further-card:hover {
  border-color: var(--fp-bronze);
  background: #fff;
}
.fp-further-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fp-deep);
}
.fp-further-desc {
  font-size: 0.85rem;
  color: var(--fp-mid);
  line-height: 1.6;
  flex: 1;
}
.fp-further-arrow {
  font-size: 1.1rem;
  color: var(--fp-bronze);
  margin-top: 4px;
}

/* ── FOOTER ───────────────────────────────────── */
.fp-footer {
  background: var(--fp-deep);
  padding: 36px 32px;
  text-align: center;
}
.fp-footer-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.fp-footer-text a { color: rgba(184,147,90,0.6); text-decoration: none; }

@media (max-width: 800px) {
  .fp-hero-inner,
  .fp-product-grid,
  .fp-further-grid { grid-template-columns: 1fr; }
  .fp-notebook-wrap { display: none; }
  .fp-ink-cards { flex-direction: column; }
  .fp-ink-plus { align-self: center; }
}
@media (min-width: 801px) and (max-width: 1000px) {
  .fp-product-grid { grid-template-columns: repeat(2, 1fr); }
}
