/* ==========================================================================
   Numbers & Visuals — site.css
   One stylesheet for the whole site. Edit colours and fonts in :root below;
   everything else picks them up automatically.
   ========================================================================== */

:root {
  /* Brand colours */
  --ink:          #0E2340;  /* headings, dark sections, footer */
  --ink-2:        #41556E;  /* body copy */
  --muted:        #5A6B80;  /* captions, metadata */
  --ground:       #F2F5F9;  /* section + tile backgrounds */
  --line:         #E4EAF1;  /* borders, dividers */
  --accent:       #E0522F;  /* large decorative marks only */
  --accent-deep:  #B03D1C;  /* buttons, links, small accent text */
  --accent-dark:  #8A2F14;  /* link hover */
  --accent-pale:  #FFF4F0;  /* pale accent panels */
  --accent-edge:  #F3D3C8;  /* pale accent borders */
  --green:        #1F7A6C;  /* positive figures, download badges */
  --green-pale:   #E4F3F0;
  --white:        #FFFFFF;

  /* Type */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:    'IBM Plex Sans', 'Segoe UI', sans-serif;

  /* Spacing + shape */
  --gutter: 64px;
  --maxw:   1312px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   18px;

  --shadow: 0 18px 44px rgba(14, 35, 64, 0.13);
}

/* --------------------------------------------------------------- Reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

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

:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* -------------------------------------------------------------- Layout -- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus {
  left: 0;
  color: var(--white);
  text-decoration: none;
}

.section { padding: 72px 0; }
.section--ground { background: var(--ground); }
.section--ink { background: var(--ink); color: var(--white); }
.section--tight { padding: 48px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}

.section-head h2 { font-size: 36px; }

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
}

/* ---------------------------------------------------- Announcement bar -- */

.announce {
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px var(--gutter);
}
.announce__sep { opacity: 0.5; margin: 0 14px; }

/* -------------------------------------------------------------- Header -- */

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

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; color: var(--ink); }

.brand__mark {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
}
.brand__tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 28px; flex-grow: 1; }
.nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { text-decoration: none; border-bottom-color: var(--line); }
.nav a[aria-current="page"] { border-bottom-color: var(--accent-deep); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center; justify-content: center;
}

/* -------------------------------------------------------------- Buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--accent-deep); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); color: var(--white); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: #17335A; color: var(--white); }

.btn--outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ground); color: var(--ink); }

.btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.link-arrow { font-size: 15px; font-weight: 600; }

/* ---------------------------------------------------------------- Hero -- */

.hero { display: grid; grid-template-columns: 1.08fr 1fr; }

.hero__copy {
  padding: 88px var(--gutter) 88px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.hero__copy h1 { font-size: clamp(32px, 3.6vw, 52px); }

.hero__micro {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.hero__micro i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #C3CCD8;
  display: inline-block;
}

.hero__art {
  background: var(--ground);
  position: relative;
  min-height: 560px;
  padding: 56px;
}

.mock-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  max-width: 440px;
}

.mock-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.mock-card__title { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.pill-green {
  font-size: 11px; font-weight: 600;
  color: var(--green);
  background: var(--green-pale);
  padding: 5px 10px;
  border-radius: 999px;
}

.stat-row { display: flex; gap: 12px; margin-bottom: 22px; }
.stat {
  flex: 1 1 0;
  background: var(--ground);
  border-radius: 12px;
  padding: 12px 14px;
}
.stat span { display: block; font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.stat b { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.stat b.is-green { color: var(--green); }

.bars { display: flex; align-items: flex-end; gap: 12px; height: 104px; }
.bars i { flex: 1 1 0; background: var(--ink); border-radius: 6px 6px 0 0; display: block; }
.bars i.is-accent { background: var(--accent); }
.bars i.is-faint  { background: #D7DEE7; }
.bars i.is-green  { background: var(--green); }

.mock-tee {
  position: absolute;
  right: 56px;
  bottom: 40px;
  width: 232px;
  background: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 44px rgba(14, 35, 64, 0.22);
  padding: 22px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.mock-tee b { font-family: var(--font-display); font-size: 15px; color: var(--white); }
.mock-tee span { font-size: 12px; color: #A9B8CA; }

/* ------------------------------------------------------ Two-path cards -- */

.paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }

.path {
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 268px;
}
.path:hover { text-decoration: none; }
.path h2 { font-size: 30px; }
.path p { font-size: 16px; line-height: 1.6; max-width: 46ch; }
.path .link-arrow { margin-top: auto; }

.path--ink { background: var(--ink); color: var(--white); }
.path--ink h2, .path--ink .link-arrow { color: var(--white); }
.path--ink p { color: #B9C6D6; }

.path--ground { background: var(--ground); border: 1px solid var(--line); }
.path--ground h2 { color: var(--ink); }
.path--ground p { color: var(--ink-2); }
.path--ground .link-arrow { color: var(--accent-deep); }

.path__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.path--ink .path__icon { background: rgba(255,255,255,0.12); }
.path--ground .path__icon { background: #FFE3DB; }

/* ------------------------------------------------------- Product cards -- */

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background: var(--ground);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.card__media svg, .card__media img { width: 100%; height: 100%; object-fit: cover; }

.card__badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 5px 10px;
  border-radius: 999px;
}

.card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-top: 16px;
}
.card__blurb { font-size: 14px; line-height: 1.55; color: var(--muted); margin-top: 6px; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tag {
  font-size: 11.5px;
  color: var(--ink-2);
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

.card__price {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-deep);
  margin-top: 12px;
}

.card .btn { margin-top: 14px; }

.card__note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* ------------------------------------------------------------- Filters -- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter {
  min-height: 44px;
  padding: 0 18px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-2);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  font-weight: 600;
}

.empty {
  grid-column: 1 / -1;
  padding: 56px 24px;
  text-align: center;
  background: var(--ground);
  border-radius: var(--r-md);
  color: var(--muted);
}

/* --------------------------------------------------------- Trust strip -- */

.trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px; }
.trust__item { display: flex; gap: 16px; align-items: flex-start; }
.trust__item svg { flex-shrink: 0; margin-top: 2px; }
.trust__item b {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 5px;
}
.trust__item span { font-size: 14px; color: #B9C6D6; }

/* -------------------------------------------------------- Etsy callout -- */

.callout {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.callout h2 { font-size: 30px; margin-bottom: 12px; }
.callout p { font-size: 16px; color: var(--ink-2); max-width: 56ch; }

/* ----------------------------------------------------------- Page head -- */

.pagehead { background: var(--ground); padding: 48px 0 56px; }
.pagehead h1 { font-size: clamp(32px, 4vw, 48px); margin: 12px 0 14px; }

.crumbs { display: flex; gap: 9px; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs b { color: var(--ink); font-weight: 500; }

/* ------------------------------------------------------- Prose + cards -- */

.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 20px; }
.prose p { font-size: 16.5px; line-height: 1.75; color: var(--ink-2); }
.prose p.is-lead { font-size: 18px; color: var(--ink); font-weight: 500; }

.policy-layout { display: grid; grid-template-columns: 248px 1fr; gap: 64px; align-items: start; }

.sidenav { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 4px; }
.sidenav span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 10px;
}
.sidenav a {
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 15px;
  color: var(--ink-2);
}
.sidenav a:hover { background: var(--ground); text-decoration: none; }

.policy-body { display: flex; flex-direction: column; gap: 44px; max-width: 76ch; }
.policy-body h2 { font-size: 30px; }
.policy-body h3 { font-size: 19px; font-weight: 600; }
.policy-body h4 { font-size: 15px; font-weight: 600; font-family: var(--font-body); }
.policy-body p { font-size: 16px; line-height: 1.7; color: var(--ink-2); overflow-wrap: anywhere; }

.panel {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel__head { display: flex; align-items: center; gap: 11px; }

.bullets { display: flex; flex-direction: column; gap: 12px; }
.bullets li { display: flex; gap: 10px; }
.bullets li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-deep);
  margin-top: 9px;
  flex-shrink: 0;
}
.bullets b { color: var(--ink); }

.notice {
  border-left: 4px solid var(--accent-deep);
  background: var(--accent-pale);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
}
.notice p { color: #6B3018; font-size: 16px; line-height: 1.75; }

.cards-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

/* -------------------------------------------------------------- Footer -- */

.footer { background: var(--ink); color: var(--white); padding: 64px 0 0; }
.footer a { color: #E3E9F1; font-size: 14px; }
.footer a:hover { color: var(--white); }

.footer__top { display: grid; grid-template-columns: 360px 1fr; gap: 64px; }
.footer__blurb { font-size: 14px; line-height: 1.7; color: #B9C6D6; }

.footer__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__col b {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  color: #7E93AB; text-transform: uppercase;
}

.disclaimer {
  margin-top: 40px;
  padding: 22px 26px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12.5px;
  line-height: 1.7;
  color: #A9B8CA;
}
.disclaimer b { color: #E3E9F1; }

.footer__bottom {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7E93AB;
}
.footer__bottom nav { display: flex; gap: 22px; }
.footer__bottom nav a { font-size: 13px; }

/* ----------------------------------------------------------------- 404 -- */

.notfound {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 80px 0;
}
.notfound h1 { font-size: 48px; }

/* --------------------------------------------------------- Responsive -- */

@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { padding: 64px 0 48px; }
  .hero__art { min-height: 480px; margin: 0 calc(var(--gutter) * -1); padding: 40px; }
  .mock-tee { right: 40px; }
  .policy-layout { grid-template-columns: 1fr; gap: 32px; }
  .sidenav { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidenav span { width: 100%; margin-bottom: 0; }
  .sidenav a { background: var(--ground); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 84px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    box-shadow: 0 14px 28px rgba(14,35,64,0.10);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { border-bottom-color: var(--accent-deep); }
  .nav-toggle { display: flex; }
  .header__inner { gap: 16px; justify-content: space-between; }
  .header__cta { display: none; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .paths { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; gap: 28px; }
  /* Keep only the first message so the bar stays on one line */
  .announce__sep,
  .announce__item ~ .announce__item { display: none; }
  .announce { font-size: 11px; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 28px; }
  .grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-2 { grid-template-columns: 1fr; }
  .callout { padding: 32px 24px; }
  .path { padding: 28px; min-height: 0; }
  .hero__art { min-height: 0; padding: 28px 20px 200px; }
  .mock-tee { right: 20px; bottom: 20px; width: 180px; }
  .btn-row .btn { width: 100%; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .notfound h1 { font-size: 34px; }
}
