/*
 * PUB Webshop (en construction) — stylesheet
 * Scoped to .pub-webshop — mirrors the about/legal/contact design language.
 */

.pub-webshop {
  /* Brand */
  --pub-navy:      #252749;
  --pub-navy-deep: #1a1c3a;
  --pub-magenta:   #a8195c;
  --pub-gold:      #e8b042;
  --pub-blue:      #4a73e3;

  /* Neutrals */
  --pub-ink:        #0f1020;
  --pub-ink-soft:   #2a2c3f;
  --pub-body:       #4a4c5e;
  --pub-muted:      #7a7c8e;
  --pub-rule:       #e6e4dd;
  --pub-rule-strong:#cfcdc4;
  --pub-paper:      #f8f6f0;
  --pub-paper-deep: #f1eee5;
  --pub-surface:    #ffffff;

  /* Type */
  --pub-display: "Fraunces", "IBM Plex Serif", Georgia, serif;
  --pub-sans:    "Inter", "IBM Plex Sans", system-ui, sans-serif;
  --pub-mono:    ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --pub-maxw:    1240px;
  --pub-gutter:  56px;
  --pub-prose-w: 720px;

  background: var(--pub-paper);
  color: var(--pub-ink);
  font-family: var(--pub-sans);
  -webkit-font-smoothing: antialiased;
}

.pub-webshop,
.pub-webshop *,
.pub-webshop *::before,
.pub-webshop *::after { box-sizing: border-box; }
.pub-webshop a { color: inherit; }
.pub-webshop ::selection { background: var(--pub-navy); color: #fff; }

/* ─── Section wrapper ─────────────────────────────────────── */
.pub-webshop > section,
.pub-webshop > nav {
  max-width: var(--pub-maxw);
  margin: 0 auto;
  padding-left: var(--pub-gutter);
  padding-right: var(--pub-gutter);
}
.pub-webshop-cta-band { max-width: none; }

/* ─── Breadcrumb ──────────────────────────────────────────── */
.pub-webshop-breadcrumb {
  padding-top: 28px;
  padding-bottom: 0;
  font-family: var(--pub-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pub-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pub-webshop-breadcrumb a {
  color: var(--pub-muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--pub-muted);
  padding-bottom: 1px;
}
.pub-webshop-breadcrumb a:hover { color: var(--pub-ink); border-color: var(--pub-ink); }
.pub-webshop-breadcrumb .is-current { color: var(--pub-ink); }

/* ─── Hero ────────────────────────────────────────────────── */
.pub-webshop-hero {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}
.pub-webshop-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}
.pub-webshop-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pub-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pub-magenta);
  background: var(--pub-paper-deep);
  border: 1px solid var(--pub-rule-strong);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.pub-webshop-hero__title {
  font-family: var(--pub-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  font-weight: 500;
  color: var(--pub-ink);
  text-wrap: balance;
}
.pub-webshop-hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--pub-body);
  margin: 0;
}

/* ─── Final CTA band (two paths) ─────────────────────────────
 * Same visual language as the About / Services / Contact bands.
 */
.pub-webshop-cta-band {
  background: var(--pub-navy);
  color: #fff;
  padding: 88px var(--pub-gutter);
  position: relative;
  overflow: hidden;
}
.pub-webshop-cta-band::before,
.pub-webshop-cta-band::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.pub-webshop-cta-band::before { left: -80px; top: -60px; width: 280px; height: 280px; background: var(--pub-magenta); opacity: .4; }
.pub-webshop-cta-band::after  { right: -40px; bottom: -100px; width: 320px; height: 320px; background: var(--pub-gold); opacity: .25; }
.pub-webshop-cta-band__inner { max-width: 960px; margin: 0 auto; position: relative; text-align: center; }
.pub-webshop-cta-band h2 { font-family: var(--pub-display); font-size: clamp(32px, 4vw, 48px); margin: 0 0 16px; font-weight: 500; letter-spacing: -1px; line-height: 1.1; color: #fff; }
.pub-webshop-cta-band__lead { font-size: 16px; line-height: 1.55; max-width: 560px; margin: 0 auto 48px; opacity: .85; }
.pub-webshop-cta-band__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; text-align: left; }

.pub-webshop .pub-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--pub-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 20px;
}
.pub-webshop .pub-eyebrow--dark { color: rgba(255, 255, 255, .65); }

.pub-webshop-cta-card {
  display: block; padding: 32px 30px;
  border-radius: 8px; text-decoration: none;
  position: relative; overflow: hidden; color: #fff;
}
.pub-webshop-cta-card--primary {
  background: var(--pub-blue);
  box-shadow: 0 14px 40px -12px rgba(74, 115, 227, .5);
}
.pub-webshop-cta-card--primary::before {
  content: ""; position: absolute; right: -20px; top: -20px;
  width: 120px; height: 120px; border-radius: 50%; background: rgba(255, 255, 255, .12);
}
.pub-webshop-cta-card--ghost {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .25);
}
.pub-webshop-cta-card__title {
  font-family: var(--pub-display); font-size: 26px; font-weight: 500;
  letter-spacing: -0.6px; line-height: 1.1; margin: 0 0 10px; position: relative;
}
.pub-webshop-cta-card p {
  font-size: 14px; line-height: 1.5; opacity: .9;
  margin: 0 0 22px; position: relative;
}
.pub-webshop-cta-card__arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; position: relative;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .pub-webshop { --pub-gutter: 20px; }

  .pub-webshop-hero { padding-top: 56px; padding-bottom: 56px; }
  .pub-webshop-hero__title { letter-spacing: -0.8px; }

  .pub-webshop-cta-band { padding: 64px var(--pub-gutter); }
  .pub-webshop-cta-band__cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .pub-webshop * { transition: none !important; animation: none !important; }
}
