/* ---------- reset ---------- */
:root { color-scheme: light; }
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- tokens (overridden per theme) ---------- */
:root {
  --bg-left: #F7C8D8;
  --bg-right: #F4D44A;
  --surface: #FFF8F2;
  --ink: #111111;
  --muted: #555555;
  --accent: #F4D44A;
  --card: #FFFFFF;
  --border: #111111;
  --shadow: 6px 6px 0 #111111;
  --shadow-sm: 3px 3px 0 #111111;
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 40px);
}

/* ---------- base ---------- */
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Archivo Black', 'Space Grotesk', Inter, sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand .dot { color: var(--accent); }
.brand-squares {
  display: inline-flex;
  gap: 3px;
}
.brand-squares i {
  width: 14px;
  height: 14px;
  background: var(--ink);
  display: block;
}
.brand-word { line-height: 1; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover { opacity: 0.6; }
.nav-cta {
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.nav-cta:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--border); }
.nav-cta:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--border); }
.nav-cta.alt { background: var(--bg-left); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 8px;
}
.hero-left {
  background: var(--bg-left);
  padding: clamp(28px, 5vw, 60px);
}
.eyebrow {
  display: inline-block;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 38ch;
  margin: 0 0 28px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--border); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--border); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-secondary { background: var(--card); color: var(--ink); }

.hero-right {
  background: var(--bg-right);
  padding: clamp(28px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.case-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(340px, 100%);
  overflow: hidden;
}
.case-art {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(135deg, var(--bg-left), var(--bg-right));
  position: relative;
}
.case-art::after {
  content: "";
  position: absolute;
  inset: 20% 25%;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  opacity: 0.9;
}
.case-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 2px solid var(--border);
}
.case-meta strong { display: block; font-size: 15px; }
.case-meta span { font-size: 12px; color: var(--muted); }
.case-chip {
  background: var(--bg-left);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

/* ---------- pressable pink CTA (hero right panel) ---------- */
.boost-btn {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg-left);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(34px, 4.5vw, 52px) clamp(28px, 4vw, 44px);
  box-shadow: 8px 8px 0 var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(340px, 100%);
  min-height: 180px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
}
.boost-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 11px 11px 0 var(--border);
}
.boost-btn:active {
  transform: translate(5px, 5px);
  box-shadow: 2px 2px 0 var(--border);
}

/* ---------- offerings ---------- */
.offerings { padding: 48px 0 100px; }
.section-head {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}
.section-head h2 {
  grid-column: 1 / 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(34px, 4.2vw, 54px);
  margin: 0;
  padding-top: calc(2px + clamp(22px, 3vw, 32px));
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-wrap: balance;
}
.section-head-body {
  grid-column: 2 / -1;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3vw, 32px) clamp(24px, 3vw, 34px);
}
.section-head-body p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  max-width: 72ch;
}
.section-head-body p:first-child {
  font-weight: 700;
  font-size: 16px;
}
.section-head-body p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head h2,
  .section-head-body { grid-column: 1 / -1; }
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--border); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 6px;
}
.card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  padding-top: 8px;
}
.card-link:hover { color: var(--muted); }

.card-num {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.card-kicker {
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink) !important;
  margin: 6px 0 2px !important;
}
.card-topics {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.card-topics li { margin-bottom: 6px; }
.card-topics li::marker { color: var(--ink); }

/* ---------- contact ---------- */
.contact {
  padding-bottom: 100px;
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-left {
  background: var(--bg-left);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 2px solid var(--border);
}
.contact-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1;
  text-wrap: balance;
}
.contact-left p {
  margin: 0;
  color: var(--ink);
  max-width: 38ch;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.contact-email:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--border); }
.contact-right {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-right);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field textarea:focus {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--border);
}
.contact-right .btn { align-self: flex-start; margin-top: 4px; }

@media (max-width: 720px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 2px solid var(--border); }
}

/* ---------- footer ---------- */
.footer {
  border-top: 2px solid var(--border);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer .socials { display: flex; gap: 18px; }
.footer a:hover { color: var(--ink); }

/* ---------- picker page ---------- */
.picker-hero {
  text-align: center;
  padding: 80px 0 40px;
}
.picker-hero .eyebrow { margin-bottom: 18px; }
.picker-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.picker-hero p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}
.picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0 100px;
}
.picker-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.picker-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--border); }
.picker-preview {
  aspect-ratio: 16 / 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--border);
}
.picker-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.picker-body h3 {
  font-family: 'Archivo Black', sans-serif;
  margin: 0;
  font-size: 18px;
}
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border);
}
.picker-card .btn { margin-top: 6px; align-self: flex-start; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .picker-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left, .hero-right { padding: clamp(22px, 6vw, 36px); }
  .hero h1 { font-size: clamp(34px, 10vw, 52px); }
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0 8px;
  }
  .nav-links {
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .nav-cta {
    padding: 6px 14px;
    font-size: 14px;
  }
  .brand { font-size: 20px; }
  .brand-squares i { width: 12px; height: 12px; }
  .offerings { padding-top: 32px; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
  .eyebrow { font-size: 11px; }
}
