/* =====================================================
   Children's Wicker — Brand Launch Proposal
   ===================================================== */

:root {
  --bone:        #f6f1e7;
  --cream:       #efe6d4;
  --paper:       #fbf7ee;
  --ink:         #1d1a14;
  --ink-soft:    #2a261d;
  --tan:         #b9926a;
  --tan-deep:    #8a623d;
  --sage:        #cfd5bf;
  --sage-deep:   #6f7a5a;
  --terracotta:  #b6553a;
  --gold:        #b89651;
  --rule:        rgba(29, 26, 20, 0.18);
  --rule-light:  rgba(246, 241, 231, 0.22);

  --serif:       "Fraunces", "Cormorant Garamond", "Georgia", serif;
  --sans:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.no-scroll { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity .2s ease;
}

a:hover { opacity: .65; }

::selection { background: var(--tan); color: var(--paper); }

em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--tan-deep);
}

/* ===== Topbar / Nav ============================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brandmark__monogram {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1;
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.brandmark__name {
  font-size: 17px;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brandmark__sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.topnav {
  display: flex;
  gap: 28px;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
}

.topnav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.topnav a:hover {
  border-bottom-color: var(--tan-deep);
  opacity: 1;
  color: var(--tan-deep);
}

/* ===== Hamburger button (mobile/tablet) ========================== */
.menubtn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin: -6px -8px -6px 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

.menubtn:focus-visible {
  outline: 2px solid var(--tan-deep);
  outline-offset: 2px;
}

.menubtn__bars {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.menubtn__bars span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s ease, top .3s ease, opacity .2s ease;
}

.menubtn__bars span:nth-child(1) { transform: translate(-50%, -7px); }
.menubtn__bars span:nth-child(2) { transform: translate(-50%, 0); }
.menubtn__bars span:nth-child(3) { transform: translate(-50%, 7px); }

.menubtn.is-open .menubtn__bars span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.menubtn.is-open .menubtn__bars span:nth-child(2) { opacity: 0; }
.menubtn.is-open .menubtn__bars span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 960px) {
  .topnav  { display: none; }
  .menubtn { display: inline-flex; align-items: center; justify-content: center; }
}

/* ===== Drawer ==================================================== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.drawer[hidden] { display: none; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 26, 20, 0.42);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__overlay { opacity: 1; pointer-events: auto; }

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: var(--bone);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: -20px 0 60px -20px rgba(29,26,20,0.25);
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--rule);
}

.drawer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer__brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.005em;
  color: var(--ink);
}

.drawer__brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.drawer__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  background: transparent;
  border-radius: 50%;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease;
}

.drawer__close:hover { background: var(--cream); }

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
}

.drawer__list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, color .2s ease;
}

.drawer__list li + li a { border-top: 1px solid var(--rule); }

.drawer__list a:hover {
  color: var(--tan-deep);
  background: rgba(184, 150, 81, 0.06);
  opacity: 1;
}

.drawer__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--tan-deep);
  font-variation-settings: "opsz" 144, "WONK" 1;
  min-width: 24px;
}

.drawer__foot {
  padding: 22px 24px 28px;
  border-top: 1px solid var(--rule);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer__foot-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-deep);
  font-weight: 600;
}

.drawer__foot-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.drawer__foot-link {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan-deep);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .drawer__panel { transition: none; }
  .drawer__overlay { transition: none; }
}

/* ===== COVER ====================================================== */
.cover {
  position: relative;
  min-height: calc(100vh - 71px);
  padding: 72px 32px 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 150, 81, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(207, 213, 191, 0.30), transparent 60%),
    var(--paper);
  overflow: hidden;
}

.cover__paper {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px clamp(28px, 6vw, 96px);
  background: var(--bone);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 56px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 80px -40px rgba(29, 26, 20, 0.25);
}

.cover__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  opacity: 0.55;
}

.cover__corner--tl { top: 18px; left: 18px;   border-right: 0; border-bottom: 0; }
.cover__corner--tr { top: 18px; right: 18px;  border-left: 0;  border-bottom: 0; }
.cover__corner--bl { bottom: 18px; left: 18px;border-right: 0; border-top: 0; }
.cover__corner--br { bottom: 18px; right: 18px;border-left: 0; border-top: 0; }

.cover__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan-deep);
}

.cover__rule {
  flex: 0 0 64px;
  height: 1px;
  background: var(--tan-deep);
  opacity: .6;
}

.cover__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8.6vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
}

.cover__line {
  display: block;
}

.cover__line--b {
  font-style: italic;
  text-indent: 2.5em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--tan-deep);
}

.cover__lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  max-width: 64ch;
  font-variation-settings: "opsz" 144;
  margin: 0;
}

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

.cover__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.cover__meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cover__label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-deep);
  font-weight: 500;
}

.cover__value {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.005em;
  border-bottom: 0;
}

.cover__value--link {
  color: var(--tan-deep);
  border-bottom: 1px solid currentColor;
}

@media (max-width: 720px) {
  .cover__meta { grid-template-columns: 1fr; gap: 20px; }
  .cover__line--b { text-indent: 1em; }
}

.cover__weave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: var(--tan);
  opacity: 0.35;
  pointer-events: none;
}

/* ===== Bands ======================================================= */
.band {
  position: relative;
  padding: clamp(72px, 9vw, 140px) 32px;
}

.band--cream { background: var(--cream); color: var(--ink); }
.band--bone  { background: var(--bone);  color: var(--ink); }
.band--paper { background: var(--paper); color: var(--ink); }
.band--ink   { background: var(--ink);   color: var(--bone); }
.band--sage  { background: var(--sage);  color: var(--ink-soft); }

.band--ink em { color: var(--gold); }
.band--sage em { color: var(--sage-deep); }

.band--compact { padding-top: 80px; padding-bottom: 80px; }

.band__inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* Subtle weave separator between bands */
.band + .band::before {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: none; /* keep clean by default */
}

/* ===== Type primitives ============================================ */
.kicker {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tan-deep);
  margin-bottom: 14px;
}

.kicker--light { color: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: "opsz" 144;
}

.display--light { color: var(--bone); }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  font-variation-settings: "opsz" 144;
  max-width: 60ch;
  margin: 0 0 32px;
}

/* ===== Section Headers ============================================ */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}

.band--ink .section-head {
  border-bottom-color: var(--rule-light);
}

.section-head__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--tan-deep);
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.band--ink .section-head__num { color: var(--gold); }
.band--sage .section-head__num { color: var(--sage-deep); }

/* ===== Two-Col (Overview) ======================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.two-col__aside {
  position: sticky;
  top: 96px;
}

.two-col__body { font-size: 16px; }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col__aside { position: static; }
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pillars li {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}

.pillars li:last-child { border-bottom: 1px solid var(--rule); }

.pillars li h3,
.pillars li p { grid-column: 2; }

.pillars__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--tan-deep);
  font-size: 22px;
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.pillars h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}

.pillars p { margin: 0; color: var(--ink-soft); }

/* ===== Card grid (Website section) =============================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card-grid > .card--feature { grid-column: 1 / -1; }

@media (max-width: 880px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--bone);
  color: var(--ink);
  padding: 36px 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.15;
}

.card h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-deep);
  margin: 24px 0 10px;
  font-weight: 600;
}

.card__lede {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 144;
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card ul li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-top: 1px solid var(--rule);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.card ul li:first-child { border-top: 0; padding-top: 4px; }

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--tan-deep);
}

.card ul li:first-child::before { top: 14px; }

.card--feature {
  background: linear-gradient(135deg, var(--bone) 0%, var(--cream) 100%);
  padding: 48px clamp(28px, 4vw, 56px);
}

.card__tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
  background: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .mini-grid { grid-template-columns: 1fr; }
}

/* ===== Split (Marketing) ========================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
}

.split--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

@media (max-width: 880px) {
  .split, .split--3 { grid-template-columns: 1fr; gap: 40px; }
}

.split h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullets li {
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--rule);
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.bullets li:last-child { border-bottom: 1px solid var(--rule); }

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 1px;
  background: var(--tan-deep);
}

.bullets--light li {
  color: var(--bone);
  border-top-color: var(--rule-light);
}
.bullets--light li:last-child { border-bottom-color: var(--rule-light); }
.bullets--light li::before { background: var(--gold); }

/* ===== Trio (Social numbers) ===================================== */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
  border-color: rgba(29,26,20,0.25);
  background: var(--paper);
  margin-bottom: 16px;
}

@media (max-width: 720px) {
  .trio { grid-template-columns: 1fr; }
}

.trio__item {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(29,26,20,0.18);
  text-align: left;
}

.trio__item:last-child { border-right: 0; }

@media (max-width: 720px) {
  .trio__item { border-right: 0; border-bottom: 1px solid rgba(29,26,20,0.18); }
  .trio__item:last-child { border-bottom: 0; }
}

.trio__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.trio__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
}

/* ===== Email campaigns ========================================== */
.campaigns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

@media (max-width: 880px) { .campaigns { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .campaigns { grid-template-columns: 1fr; } }

.campaigns li {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: var(--paper);
  transition: background .25s ease;
}

.campaigns li:hover { background: var(--bone); }

.campaigns__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--tan-deep);
  font-size: 18px;
  font-variation-settings: "opsz" 144, "WONK" 1;
  display: block;
  margin-bottom: 10px;
}

.campaigns h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

.campaigns p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.postscript {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  max-width: 70ch;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 144;
}

/* ===== Callout (Cross promotion) ================================ */
.callout {
  background: rgba(184, 150, 81, 0.08);
  border: 1px solid rgba(184, 150, 81, 0.35);
  padding: 40px clamp(24px, 3vw, 48px);
  max-width: 760px;
}

.callout h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  margin: 0 0 16px;
  color: var(--bone);
  letter-spacing: -0.01em;
}

/* ===== Invoice ================================================== */
.invoice {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(28px, 3vw, 48px);
}

.invoice__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
}

.invoice__table thead th {
  text-align: left;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tan-deep);
  padding: 0 0 18px;
  border-bottom: 1px solid var(--rule);
}

.invoice__table th[scope="row"] {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.005em;
  text-align: left;
  padding: 22px 16px 22px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.invoice__table td {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--ink-soft);
}

.invoice__table td.num {
  text-align: right;
  font-feature-settings: "tnum" 1;
  padding-left: 16px;
}

.invoice__table thead .num { text-align: right; }

.amt {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
  white-space: nowrap;
}

.amt--bonus {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tan-deep);
  font-weight: 500;
  font-size: 20px;
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.invoice__bonus th[scope="row"],
.invoice__bonus td {
  background: rgba(184, 150, 81, 0.06);
}

.invoice__table tfoot th {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  text-align: left;
  padding: 28px 0 6px;
  letter-spacing: -0.01em;
}

.invoice__table tfoot td {
  border-bottom: 0;
  padding: 28px 0 6px;
}

.amt--total {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.invoice__note {
  margin: 24px 0 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
}

@media (max-width: 720px) {
  .invoice__table thead { display: none; }
  .invoice__table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
  }
  .invoice__table th[scope="row"],
  .invoice__table td { border-bottom: 0; padding: 4px 0; }
  .invoice__table th[scope="row"] { grid-column: 1 / -1; }
  .invoice__table td.num:first-of-type { grid-column: 1; font-size: 13px; font-style: italic; }
  .invoice__table td.num:last-child { grid-column: 2; }
  .invoice__table tfoot tr { padding-top: 24px; }
}

/* ===== Timeline ================================================== */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; }
}

.timeline li {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--rule);
  position: relative;
}

.timeline li:last-child { border-right: 0; }

@media (max-width: 760px) {
  .timeline li { border-right: 0; border-bottom: 1px solid var(--rule); }
  .timeline li:last-child { border-bottom: 0; }
}

.timeline__week {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-deep);
  font-weight: 600;
  margin-bottom: 14px;
}

.timeline__overlap {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-left: 6px;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.timeline h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.timeline p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== Closing =================================================== */
.closing {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 32px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 150, 81, 0.10), transparent 60%),
    var(--bone);
  text-align: center;
}

.closing__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.closing__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--tan-deep);
  font-variation-settings: "opsz" 144, "WONK" 1;
  line-height: 1;
}

.closing__line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0;
  font-variation-settings: "opsz" 144;
  color: var(--ink-soft);
}

.closing__line em {
  font-weight: 400;
}

.closing__line--final {
  color: var(--ink);
  margin-top: 8px;
}

.signature {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 420px;
}

.signature__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "WONK" 1;
}

.signature__sub {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-deep);
  font-weight: 500;
}

/* ===== Footer ==================================================== */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 28px 32px;
}

.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__sep { opacity: .5; }

.footer a { color: var(--gold); }
.footer a:hover { color: var(--bone); opacity: 1; }

/* ===== Reduced motion =========================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ===== Mobile / tablet polish =================================== */
@media (max-width: 720px) {
  .topbar__inner { padding: 12px 18px; }
  .brandmark__monogram { width: 38px; height: 38px; font-size: 19px; }
  .brandmark__name { font-size: 15px; }
  .brandmark__sub { display: none; }

  .cover { padding: 40px 18px 24px; }
  .cover__paper { padding: 56px 22px 48px; gap: 36px; }
  .cover__corner { width: 18px; height: 18px; }
  .cover__corner--tl, .cover__corner--tr { top: 12px; }
  .cover__corner--bl, .cover__corner--br { bottom: 12px; }
  .cover__corner--tl, .cover__corner--bl { left: 12px; }
  .cover__corner--tr, .cover__corner--br { right: 12px; }
  .cover__eyebrow { gap: 12px; font-size: 10.5px; }
  .cover__rule { flex-basis: 32px; }

  .band { padding: 64px 18px; }
  .band--compact { padding: 56px 18px; }
  .footer { padding: 24px 18px; }
  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 28px;
    margin-bottom: 36px;
  }
  .section-head__num { font-size: 64px; line-height: 0.9; }

  .card { padding: 28px 22px; }
  .card--feature { padding: 32px 22px; }
  .card h3 { font-size: 22px; }

  .invoice { padding: 24px 18px; }
  .amt { font-size: 22px; }
  .amt--total { font-size: 36px; }
  .invoice__table tfoot th { font-size: 18px; }

  .timeline li { padding: 28px 22px; }
  .closing { padding: 80px 22px; }
  .signature { max-width: 100%; }
}

@media (max-width: 380px) {
  .topnav { display: none; }
  .cover__paper { padding: 44px 18px 36px; }
  .cover__title { font-size: 44px; }
  .cover__line--b { text-indent: 0; }
}

/* ===== Print ===================================================== */
@media print {
  .topbar, .footer, .cover__weave { display: none; }
  body { background: white; color: black; }
  .band { padding: 32px 0; page-break-inside: avoid; }
  .cover { min-height: auto; padding: 0; }
  .cover__paper { box-shadow: none; border: 1px solid #ccc; padding: 32px; }
}
