/* ---------- Design tokens ---------- */
:root {
  --leeds-blue: #1D428A;
  --leeds-yellow: #FFCD00;
  --ink: #0e1320;
  --ink-soft: #3a4255;
  --muted: #6b7280;
  --line: #e7e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, .12);
  --maxw: 1200px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
}
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.08rem; font-weight: 700; font-family: 'Inter', sans-serif; letter-spacing: -0.005em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--leeds-blue); color: var(--leeds-yellow);
  font-family: 'Fraunces', serif; font-weight: 800; font-size: 20px;
}
.brand-mark.small { width: 24px; height: 24px; font-size: 15px; border-radius: 7px; margin-right: 8px; vertical-align: middle; }
.brand-name { font-size: 1.02rem; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 0.95rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 9px 14px; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem;
  transition: transform .15s ease, background .15s ease;
}
.nav-cta:hover { background: var(--leeds-blue); transform: translateY(-1px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--leeds-blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: #15357a; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 800;
  margin: 0 0 20px;
}
.accent {
  background: linear-gradient(180deg, transparent 62%, var(--leeds-yellow) 62%);
  padding: 0 .08em;
}
.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 28px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px; flex-wrap: wrap;
  color: var(--ink-soft); font-size: 0.92rem;
}
.trust strong { color: var(--ink); font-weight: 700; display: block; font-size: 1.3rem; font-family: 'Fraunces', serif; }

/* Hero art — staggered card collage */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  margin-left: auto;
  width: 100%;
}
.hero-card {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-1 { top: 2%; left: 0; width: 52%; aspect-ratio: 4/5; transform: rotate(-4deg); z-index: 3; background: #fff; }
.hero-card-2 { top: 4%; right: 2%; width: 42%; aspect-ratio: 1/1; transform: rotate(5deg); z-index: 2; background: #fff; }
.hero-card-3 { bottom: 0; left: 28%; width: 52%; aspect-ratio: 3/4; transform: rotate(-1.5deg); z-index: 1; background: #FFCD00; }

/* ---------- Category strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 18px 28px;
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
}

/* ---------- Collection ---------- */
.collection {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 28px;
}
.section-head { text-align: center; margin-bottom: 44px; }
.section-head p { color: var(--muted); margin: 10px 0 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-art {
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-art-dark { background: #0b0d12; }
.card-art-light { background: var(--bg-soft); }
.card-art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s ease;
}
.card:hover .card-art img { transform: scale(1.04); }
.card-body { padding: 18px 20px 22px; }
.card-body h3 { margin: 0 0 4px; }
.card-body p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.collection-foot { text-align: center; margin-top: 48px; }

/* ---------- About ---------- */
.about {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 88px 28px;
}
.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about h2 { margin-bottom: 18px; }
.about p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 14px; }
.about .meta {
  font-size: 0.88rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 18px;
}

/* ---------- Footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 36px 28px 28px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.foot-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.foot-links a:hover { color: var(--ink); }
.foot-links .social { display: inline-flex; align-items: center; gap: 6px; }
.foot-links .social svg { display: block; transition: transform .15s ease; }
.foot-links .social:hover svg { transform: translateY(-1px); }
.foot-small {
  max-width: var(--maxw); margin: 18px auto 0;
  font-size: 0.8rem; color: var(--muted); text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; padding-bottom: 32px; }
  .hero-art { max-width: 440px; margin: 0 auto; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 620px) {
  .nav { padding: 12px 18px; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 36px 20px 24px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .collection { padding: 56px 20px; }
  .about { padding: 56px 20px; }
  .grid { grid-template-columns: 1fr; }
  .trust { gap: 20px; }
  .strip { gap: 14px; font-size: 0.78rem; }
}
