@font-face {
  font-family: "Loretta";
  src: url("/fonts/loretta-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("/fonts/schibsted-grotesk-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --border: #e5ebf3;
  --border-strong: #cdddf7;
  --ink: #0e1726;
  --slate: #364253;
  --muted: #64748b;
  --accent: #0047aa;
  --accent-deep: #063fb8;
  --accent-tint: #eef4ff;
  --grad: linear-gradient(90deg, #2ec1ec 0%, #1a87dc 45%, #0b61c7 76%, #063fb8 100%);
  --shadow: 0 1px 2px rgba(14, 23, 38, .04), 0 6px 18px rgba(14, 23, 38, .04);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Schibsted Grotesk", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before { content: ""; position: fixed; inset: 0 0 auto; height: 3px; background: var(--grad); z-index: 5; }
a { color: var(--accent); }

/* Full-width page, just inset from the edges. */
.page { display: flex; flex-direction: column; width: 100%; max-width: 1280px; min-height: 100svh; margin: 0 auto; padding: 22px clamp(20px, 5vw, 64px) 64px; }
.topline { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 40px; }
.brand { font-family: "Loretta", Georgia, serif; font-size: 24px; color: var(--accent); text-decoration: none; }
.stamp { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.hero { margin-bottom: 26px; }
.eyebrow { margin: 0 0 7px; color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; font-family: "Loretta", Georgia, serif; font-size: clamp(28px, 3.4vw, 42px); line-height: 1; font-weight: 500; }
.subline { max-width: 640px; margin: 12px 0 0; color: var(--slate); font-size: 16px; line-height: 1.5; }

.product-list { display: grid; gap: 12px; }

/* A compact, full-width row — not a tall panel. */
.product-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  width: 100%;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 28px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.product-main { flex: 1 1 auto; min-width: 0; }
.product-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.status {
  padding: 4px 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--accent-tint);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  white-space: nowrap;
}
.product-name {
  margin: 0;
  font-family: "Loretta", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.1;
}
.product-desc {
  margin: 7px 0 0;
  max-width: 72ch;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.55;
}
.product-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--border);
  align-self: stretch;
  justify-content: center;
}
.price {
  font-family: "Loretta", Georgia, serif;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.price .per {
  margin-left: 2px;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.foot-note { color: var(--muted); font-size: 12.5px; letter-spacing: .03em; white-space: nowrap; }

.bespoke { margin: auto 2px 0; padding-top: 22px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.bespoke a { font-weight: 700; text-decoration: none; }

@media (max-width: 620px) {
  .topline { margin-bottom: 30px; }
  .product-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .product-side {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding-left: 0;
    padding-top: 14px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
}
