@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: #14181B;
  --surface: #1E2422;
  --surface-2: #242B28;
  --felt: #2F6B4F;
  --felt-light: #3E8763;
  --gold: #C9A227;
  --gold-light: #DDBE4E;
  --text: #EDEBE3;
  --text-muted: #9BA39E;
  --border: #2C3430;
  --radius: 10px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand .suit { color: var(--gold); }
.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 24px;
}
.site-nav a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,79,0.35) 0%, rgba(47,107,79,0) 70%);
  pointer-events: none;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 0 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 17px;
}
.hero .disclaimer {
  margin-top: 20px;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ---------- Offers ---------- */
.offers {
  padding: 24px 0 64px;
}
.offers h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 28px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.offer-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  border-color: var(--felt-light);
}
.offer-card:nth-child(even):hover {
  transform: translateY(-4px) rotate(0.4deg);
}
.offer-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.offer-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 10px;
}
.offer-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  flex: 1;
  margin: 0 0 20px;
}
.cta-button {
  display: inline-block;
  text-align: center;
  background: var(--gold);
  color: #1A1503;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.cta-button:hover { background: var(--gold-light); }

/* ---------- Article / tips ---------- */
.article {
  padding: 24px 0 64px;
  border-top: 1px solid var(--border);
}
.article .container { max-width: 760px; }
.article h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.article .lede {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.tip {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.tip:last-child { border-bottom: 1px solid var(--border); }
.tip .suit-icon {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.tip h3 {
  margin: 0 0 6px;
  font-size: 16.5px;
}
.tip p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}
.responsible-box {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--felt);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.responsible-box h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--gold-light);
}
.responsible-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Privacy page ---------- */
.legal {
  padding: 56px 0 80px;
}
.legal .container { max-width: 720px; }
.legal h1 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 6px;
}
.legal .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 36px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 32px 0 10px;
}
.legal p, .legal li { color: var(--text-muted); font-size: 14.5px; }
.legal ul { padding-left: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.site-footer, .site-footer a {
  color: var(--text-muted);
  font-size: 13px;
}
.site-footer a { text-decoration: none; margin-left: 16px; }
.site-footer a:hover { color: var(--text); }

@media (max-width: 560px) {
  .site-footer .container { flex-direction: column; align-items: flex-start; }
  .site-footer a { margin-left: 0; margin-right: 16px; }
}
