:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #e8e4df;
  --fg-muted: #8a8580;
  --fg-dim: #5a5652;
  --accent: #c9a96e;
  --accent-light: #dfc08a;
  --england: #c9a96e;
  --scotland: #6e8fa5;
  --wales: #7a9e6e;
  --nireland: #9e7a8a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 30%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 80% 60%, rgba(110,143,165,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: #0a0a0a;
  background: var(--accent);
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  margin-bottom: 48px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

/* ===== NATIONS GRID ===== */
.nations {
  padding: 100px 24px 120px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nations-header {
  text-align: center;
  margin-bottom: 80px;
}

.nations-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.nations-header p {
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 17px;
}

.nations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.nation-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s ease;
}

.nation-card:hover {
  transform: translateY(-4px);
}

.nation-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nation-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.nation-card:nth-child(1) .nation-gradient {
  background: linear-gradient(135deg, var(--england) 0%, transparent 80%);
}
.nation-card:nth-child(2) .nation-gradient {
  background: linear-gradient(135deg, var(--scotland) 0%, transparent 80%);
}
.nation-card:nth-child(3) .nation-gradient {
  background: linear-gradient(135deg, var(--wales) 0%, transparent 80%);
}
.nation-card:nth-child(4) .nation-gradient {
  background: linear-gradient(135deg, var(--nireland) 0%, transparent 80%);
}

.nation-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.nation-info {
  position: relative;
  z-index: 1;
  padding: 32px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 60%, transparent 100%);
}

.nation-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.nation-card:nth-child(1) .nation-label { color: var(--england); }
.nation-card:nth-child(2) .nation-label { color: var(--scotland); }
.nation-card:nth-child(3) .nation-label { color: var(--wales); }
.nation-card:nth-child(4) .nation-label { color: var(--nireland); }

.nation-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.nation-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== STORY ===== */
.story {
  padding: 120px 24px;
  position: relative;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--fg-dim));
}

.story-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 32px;
}

.story-body {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-author {
  color: var(--fg-dim);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 32px;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 24px 120px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.products-header p {
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-item {
  text-align: center;
}

.product-icon {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 40px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s ease;
}

.product-item:hover .product-icon {
  border-color: rgba(201,169,110,0.2);
}

.product-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-desc {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 1000px 600px at 50% 50%, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 24px;
}

.footer-nations {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-nation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.footer-nation-dot:nth-child(1) { background: var(--england); }
.footer-nation-dot:nth-child(2) { background: var(--scotland); }
.footer-nation-dot:nth-child(3) { background: var(--wales); }
.footer-nation-dot:nth-child(4) { background: var(--nireland); }

.footer-copy {
  font-size: 12px;
  color: var(--fg-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nation-card {
    aspect-ratio: 3/4;
  }

  .products-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero {
    padding: 60px 20px;
    min-height: 90vh;
  }

  .story {
    padding: 80px 20px;
  }

  .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .nation-name {
    font-size: 22px;
  }
}