/* =========================================================
   Crafts by Leslie — site styles
   Palette taken from the LB logo: royal blue + navy,
   warmed with a soft gold that echoes the glass sparkle.
   ========================================================= */

:root {
  --navy:        #0d2a5c;
  --navy-deep:   #071b3d;
  --blue:        #1a56c4;
  --blue-bright: #2f6fe0;
  --blue-soft:   #dbe8fb;
  --sky:         #f0f5fd;

  --gold:        #c08a2e;
  --gold-light:  #f2e0b8;
  --gold-glow:   #ffd977;
  /* darker gold reserved for TEXT and solid buttons so contrast passes WCAG AA */
  --gold-text:   #8f6413;
  --gold-text-d: #75500d;

  --cream:       #fcfaf6;
  --paper:       #ffffff;
  --ink:         #17203a;
  --muted:       #5f6b80;
  --line:        #e4e9f2;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script:  "Great Vibes", "Brush Script MT", cursive;
  --font-body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(13, 42, 92, .08), 0 1px 2px rgba(13, 42, 92, .05);
  --shadow-md: 0 6px 20px rgba(13, 42, 92, .10), 0 2px 6px rgba(13, 42, 92, .06);
  --shadow-lg: 0 18px 44px rgba(13, 42, 92, .16), 0 4px 12px rgba(13, 42, 92, .08);

  --radius:    14px;
  --radius-lg: 22px;
  --wrap:      1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p  { margin: 0 0 1.1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 780px); margin-inline: auto; }

/* ---------- skip link / a11y ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 250, 246, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .6rem 0;
}
.brand { display: flex; align-items: center; gap: 1rem; }
.brand img { width: 108px; height: auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--navy); letter-spacing: .01em;
}
.brand-tag {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--gold-text); font-weight: 700;
}
/* step the brand down on smaller screens so the header stays usable */
@media (max-width: 1100px) {
  .brand img { width: 88px; }
  .brand-name { font-size: 2rem; }
}
@media (max-width: 700px) {
  .brand { gap: .7rem; }
  .brand img { width: 66px; }
  .brand-name { font-size: 1.6rem; }
  .brand-tag { font-size: .75rem; letter-spacing: .1em; }
}
@media (max-width: 400px) {
  .brand img { width: 54px; }
  .brand-name { font-size: 1.35rem; }
  .brand-tag { display: none; }
}

.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  color: var(--ink); font-size: .95rem; font-weight: 600;
}
.nav-links a:hover { background: var(--blue-soft); color: var(--navy); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; margin-top: 3px;
  background: var(--gold); border-radius: 2px;
}
.nav-links .btn { margin-left: .5rem; }
.nav-links .btn:hover { background: var(--navy); color: #fff; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: .5rem .7rem; cursor: pointer; color: var(--navy);
}
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: .5rem 1.25rem 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links a.active::after { display: none; }
  .nav-links .btn { margin: .9rem 0 0; text-align: center; border-bottom: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: .85rem 1.6rem;
  border: 2px solid transparent; border-radius: 999px;
  background: var(--blue); color: #fff !important;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  cursor: pointer; text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 4px 14px rgba(26, 86, 196, .25);
}
.btn:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(13, 42, 92, .3); }
.btn:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--navy) !important;
  border-color: var(--navy); box-shadow: none;
}
.btn-ghost:hover { background: var(--navy); color: #fff !important; }
.btn-gold {
  background: var(--gold-text); box-shadow: 0 4px 14px rgba(143, 100, 19, .3);
}
.btn-gold:hover { background: var(--gold-text-d); }
.btn-sm { padding: .55rem 1.1rem; font-size: .88rem; }

/* ---------- announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--navy-deep), var(--blue), var(--navy-deep));
  color: #fff; text-align: center; font-weight: 600;
  font-size: .95rem; padding: .6rem 1.25rem;
}
.announce .spark { color: var(--gold-glow); }
.announce a {
  color: var(--gold-glow); text-decoration: underline; text-underline-offset: 3px;
  display: inline-block; padding: .25rem .1rem; min-height: 32px;
}
.announce a:hover { color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(47, 111, 224, .14), transparent 60%),
    radial-gradient(760px 420px at 8% 105%, rgba(192, 138, 46, .13), transparent 60%),
    var(--cream);
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue-soft); color: var(--navy);
  border-radius: 999px; padding: .4rem 1rem;
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .13em;
  margin-bottom: 1.1rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero h1 .script {
  display: block; font-family: var(--font-script);
  color: var(--blue); font-size: 1.15em; font-weight: 400;
  line-height: 1.1; padding: .06em 0 .12em;
}
.lede { font-size: 1.1rem; color: var(--muted); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.hero-art { position: relative; }
.hero-art img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.hero-badge {
  position: absolute; left: -14px; bottom: 26px;
  background: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .85rem 1.15rem;
  display: flex; align-items: center; gap: .7rem; width: max-content; max-width: 300px;
}
.hero-badge strong { display: block; color: var(--navy); font-size: .95rem; }
.hero-badge span { font-size: .8rem; color: var(--muted); }
.hero-badge .icon { font-size: 1.5rem; line-height: 1; }
@media (max-width: 560px) { .hero-badge { left: 0; bottom: -10px; } }

/* sparkles */
.sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkles i {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-glow); opacity: 0;
  box-shadow: 0 0 10px 2px rgba(255, 217, 119, .8);
  animation: twinkle 4.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.4); }
  50%      { opacity: .95; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .sparkles i { animation: none; opacity: .5; }
  html { scroll-behavior: auto; }
}

/* ---------- generic sections ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--sky); }
.section-navy { background: var(--navy-deep); color: #dbe4f5; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-navy .section-head p { color: #b6c6e3; }

.kicker {
  display: block; font-size: .76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold-text); margin-bottom: .6rem;
}

.page-head {
  background:
    radial-gradient(900px 400px at 75% -30%, rgba(47, 111, 224, .13), transparent 60%),
    var(--sky);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-head p { color: var(--muted); max-width: 62ch; margin-inline: auto; }

/* ---------- message card (Leslie's welcome) ---------- */
.message-card {
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 3rem);
  position: relative; overflow: hidden;
}
.message-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--blue), var(--gold));
}
.message-card .season {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy); margin-bottom: .8rem; font-weight: 700;
}
.message-card .season em { font-style: normal; color: var(--gold-text); }
.message-card p { font-size: 1.08rem; color: #2b3550; margin-bottom: 0; }

/* ---------- card grids ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-pad { padding: 1.4rem 1.5rem 1.6rem; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

/* ---------- category tiles ---------- */
.cat-tile {
  position: relative; display: block; text-align: left;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.cat-thumb {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 42%, #fff 0%, var(--blue-soft) 62%, #c9dcf8 100%);
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-thumb .placeholder {
  font-size: 4.2rem; line-height: 1; opacity: .82;
  filter: drop-shadow(0 6px 14px rgba(13, 42, 92, .18));
}
.cat-body { padding: 1.1rem 1.25rem 1.3rem; }
.cat-body h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: .25rem; line-height: 1.1;
}
.cat-count { font-size: .9rem; color: var(--muted); font-weight: 600; }
.cat-browse {
  display: block; margin-top: .6rem; font-size: .9rem;
  font-weight: 800; color: var(--blue); letter-spacing: .01em;
}
.cat-tile:hover .cat-browse { color: var(--navy); }
.cat-browse .arrow { transition: transform .18s ease; display: inline-block; }
.cat-tile:hover .cat-browse .arrow { transform: translateX(4px); }
.cat-badge {
  position: absolute; top: .7rem; right: .7rem;
  background: var(--gold-text); color: #fff;
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .65rem; border-radius: 999px;
}
.cat-badge.soon { background: var(--navy); }

/* ---------- product cards ---------- */
.product {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; text-align: left;
  cursor: pointer; padding: 0; width: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--sky); }
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.product:hover .product-img img { transform: scale(1.05); }
.product-body { padding: .95rem 1.1rem 1.15rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.product-body p { font-size: .9rem; color: var(--muted); margin: 0 0 .7rem; }
.tag {
  display: inline-block; font-size: .75rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 999px; margin-top: auto; align-self: flex-start;
}
.tag-finished { background: var(--blue-soft); color: var(--navy); }
.tag-kit { background: var(--gold-light); color: #7a5512; }

/* ---------- empty category notice ---------- */
.notice {
  background: var(--paper); border: 2px dashed var(--blue-soft);
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center; max-width: 680px; margin: 0 auto;
}
.notice .big { font-size: 2.4rem; margin-bottom: .6rem; }
.notice p { color: var(--muted); font-size: 1.05rem; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  position: relative; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.6rem 1.4rem 4.4rem; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 1.3rem; top: 1.35rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem; font-family: var(--font-body);
}
.step h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.step p { margin-bottom: 0; color: var(--muted); font-size: .97rem; }

/* ---------- checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.checklist li {
  position: relative; padding-left: 2rem; color: #2b3550;
}
.checklist li::before {
  content: "✦"; position: absolute; left: 0; top: -1px;
  color: var(--gold); font-size: 1.1rem;
}
.checklist strong { color: var(--navy); }

/* ---------- callout ---------- */
.callout {
  background: var(--blue-soft); border-left: 5px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem; margin: 1.8rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--navy); }
.callout.warn { background: #fdf3e0; border-left-color: var(--gold); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
details.faq-item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
}
details.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 700; color: var(--navy); font-size: 1.03rem; position: relative;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--blue);
  font-weight: 400; line-height: 1;
}
details.faq-item[open] summary::after { content: "–"; }
details.faq-item summary:hover { background: var(--sky); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--muted); }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- gallery ---------- */
.gallery-grid {
  columns: 3 260px; column-gap: 1.2rem;
}
.gallery-grid button {
  display: block; width: 100%; padding: 0; margin: 0 0 1.2rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--paper); cursor: pointer;
  box-shadow: var(--shadow-sm); break-inside: avoid;
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery-grid button:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7, 27, 61, .82); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox-panel {
  background: var(--paper); border-radius: var(--radius-lg);
  max-width: 900px; width: 100%; max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); box-shadow: var(--shadow-lg);
  position: relative;
}
@media (max-width: 760px) { .lightbox-panel { grid-template-columns: 1fr; } }
.lightbox-panel img { width: 100%; height: 100%; max-height: 62vh; object-fit: contain; background: var(--sky); }
.lightbox-info { padding: 1.8rem 1.8rem 2rem; }
.lightbox-info h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.lightbox-close {
  position: absolute; top: .6rem; right: .7rem; z-index: 2;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: none; background: rgba(255, 255, 255, .92); color: var(--navy);
  font-size: 1.5rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm);
}
.lightbox-close:hover { background: var(--navy); color: #fff; }

/* ---------- forms ---------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-weight: 700; color: var(--navy);
  font-size: .92rem; margin-bottom: .4rem;
}
.field .req { color: #b3261e; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; font: inherit; font-size: 1rem;
  color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(47, 111, 224, .15);
}
.field textarea { min-height: 150px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); margin: .35rem 0 0; }
.field.error input, .field.error textarea { border-color: #b3261e; }
.err-msg { color: #b3261e; font-size: .84rem; margin: .35rem 0 0; display: none; }
.field.error .err-msg { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status { border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; display: none; font-weight: 600; }
.form-status.show { display: block; }
.form-status.ok  { background: #e7f4ea; color: #17603a; border: 1px solid #b6ddc3; }
.form-status.bad { background: #fdeceb; color: #8c1d18; border: 1px solid #f0bcb8; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 2.2rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-side { display: grid; gap: 1.2rem; }
.info-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
}
.info-card h2 { font-size: 1.15rem; margin-bottom: .5rem; }
.info-card p { margin-bottom: 0; color: var(--muted); font-size: .95rem; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-deep); color: #b6c6e3;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 {
  color: #fff; font-family: var(--font-body); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: .9rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: #b6c6e3; font-size: .95rem; display: inline-block; padding: .35rem 0; min-height: 32px; }
.site-footer a:hover { color: var(--gold-glow); }
.footer-brand { font-family: var(--font-script); font-size: 2rem; color: #fff; line-height: 1.1; margin-bottom: .5rem; }
.footer-note { font-size: .93rem; max-width: 38ch; }
.footer-area {
  font-size: .93rem; color: #fff; font-weight: 700;
  margin: .9rem 0 0; max-width: 38ch;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 2rem; padding-top: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
  font-size: .85rem; color: #8ea3c7;
}

/* ---------- misc ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.stat-row { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 2rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); line-height: 1; }
.stat span { font-size: .85rem; color: var(--muted); font-weight: 600; }
.crumb { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.crumb a { font-weight: 600; display: inline-block; padding: .4rem .1rem; min-height: 32px; }

/* ---------- kit contents list ---------- */
.kit-heading {
  font-size: .8rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--gold-text); margin: 0 0 .7rem;
}
.kit-list { margin-bottom: 1.3rem; }
.kit-list li { font-size: .95rem; padding-left: 1.7rem; }
.kit-list li::before { font-size: 1rem; }

/* ---------- About page portrait ----------
   No panel and no border: the cut-out sits straight on the page.
   The glow behind her fades to fully transparent, so there is no edge. */
.portrait {
  position: relative; display: grid; place-items: center;
  background: none; box-shadow: none; border-radius: 0; overflow: visible;
  padding: 1rem 0 0;
}
.portrait::before {
  content: ""; position: absolute; z-index: 0;
  left: 50%; top: 52%; transform: translate(-50%, -50%);
  width: 100%; height: 88%;   /* not wider than the column, or it nudges the page 2px sideways */
  background: radial-gradient(closest-side,
              rgba(219, 232, 251, .85) 0%,
              rgba(219, 232, 251, .45) 55%,
              rgba(219, 232, 251, 0) 100%);
  pointer-events: none;
}
.portrait img {
  position: relative; z-index: 1;
  max-height: 620px; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(13, 42, 92, .22));
}
@media (max-width: 900px) {
  .portrait img { max-height: 430px; }
}
