:root {
  --bg: #FAFAFA;
  --bg-alt: #FFFFFF;
  --fg: #111111;
  --fg-muted: #555555;
  --accent-red: #E63946;
  --accent-blue: #4D9DE0;
  --accent-navy: #1D3557;
  --border: #E0E0E0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-red);
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.nav-cta:hover { background: #c5303c; }

/* HERO */
.hero {
  position: relative;
  background: var(--fg);
  color: #FFFFFF;
  padding: 80px 48px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { padding-bottom: 80px; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-england { color: var(--accent-red); }
.hero-and { color: rgba(255,255,255,0.4); font-size: 0.5em; font-weight: 600; align-self: flex-start; }
.hero-scotland { color: var(--accent-blue); }
.hero-world { color: #FFFFFF; font-size: 0.6em; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-red);
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.15s;
}
.hero-cta:hover { background: #c5303c; transform: translateY(-1px); }

.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
  display: block;
}

.hero-accent-bar {
  display: flex;
  height: 4px;
}
.accent-england { background: var(--accent-red); flex: 1; }
.accent-scotland { background: var(--accent-blue); flex: 1; }

/* BUY SECTION */
.buy { padding: 80px 48px; background: var(--bg-alt); }
.buy-inner { max-width: 900px; margin: 0 auto; }
.buy-headline {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
  text-align: center;
}
.buy-sub {
  color: var(--fg-muted);
  font-size: 16px;
  text-align: center;
  margin-bottom: 48px;
}
.buy-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.buy-product-img {
  background: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.buy-product-img img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.buy-form { padding: 36px 36px 36px 0; }
.buy-step { margin-bottom: 28px; }
.buy-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 12px;
}
.buy-options { display: flex; gap: 12px; }
.buy-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--bg-alt);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.15s, background 0.15s;
}
.buy-option:hover { border-color: var(--fg-muted); }
.buy-option.active {
  border-color: var(--accent-red);
  background: rgba(230, 57, 70, 0.04);
}

/* Nation color dots */
.option-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
.england-dot {
  background: linear-gradient(135deg, #fff 40%, var(--accent-red) 40%);
  border: 1px solid var(--border);
}
.scotland-dot {
  background: linear-gradient(135deg, var(--accent-blue) 40%, var(--accent-navy) 40%);
}

/* Size display in buttons */
.option-size {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.option-note {
  font-size: 13px;
  color: var(--fg-muted);
}

.size-help {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* Price breakdown */
.buy-total {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
}
.total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  color: var(--fg-muted);
}
.total-final {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  font-family: var(--font-display);
}

/* Buy button */
.buy-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-red);
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.15s;
}
.buy-btn:hover { background: #c5303c; transform: translateY(-1px); }
.buy-btn:active { transform: translateY(0); }

.buy-secure {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* WHY */
.why { padding: 80px 48px; background: var(--bg); }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-headline {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.why-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing { padding: 96px 48px; background: var(--bg-alt); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-dates { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.cd-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-red);
  background: rgba(230,57,70,0.1);
  padding: 4px 12px;
  border-radius: 2px;
}
.cd-dates { font-size: 13px; color: var(--fg-muted); }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}
.closing-sub { font-size: 17px; color: var(--fg-muted); max-width: 540px; line-height: 1.6; margin-bottom: 32px; }
.closing-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-red);
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}
.closing-cta:hover { background: #c5303c; }

/* FOOTER */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.footer-brand p { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.footer-meta { font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 12px 20px; }
  .nav-cta { padding: 8px 18px; font-size: 13px; }

  .hero { padding: 48px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding-bottom: 0; text-align: center; }
  .hero-headline { font-size: 48px; align-items: center; }
  .hero-and { align-self: center; }
  .hero-sub { margin: 0 auto 28px; text-align: center; }
  .hero-cta { width: 100%; text-align: center; display: block; }
  .hero-image { margin: 0 -24px; }
  .hero-image img { border-radius: 0; width: 100%; }

  .buy { padding: 56px 20px; }
  .buy-headline { font-size: 32px; }
  .buy-card { grid-template-columns: 1fr; gap: 0; }
  .buy-product-img { padding: 24px; }
  .buy-form { padding: 28px; }
  .buy-options { flex-direction: column; gap: 10px; }

  .why { padding: 56px 24px; }
  .why-headline { font-size: 28px; margin-bottom: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .closing { padding: 56px 24px; }
  .closing-cta { width: 100%; text-align: center; display: block; }

  .footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 375px) {
  .hero-headline { font-size: 38px; }
  .why-grid { grid-template-columns: 1fr; }
}