﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,700&family=JetBrains+Mono:wght@400;600&display=swap");

:root {
  --bg: #f6f2ea;
  --bg-2: #efe6d7;
  --ink: #1f1c16;
  --muted: #6f675b;
  --accent: #ff6b35;
  --accent-2: #2f6b52;
  --surface: #ffffff;
  --surface-2: #faf5ec;
  --stroke: #e2d8c7;
  --shadow: 0 18px 40px rgba(31, 28, 22, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff8ee 0%, var(--bg) 45%, var(--bg-2) 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8a3d, #ff5f6b);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.brand h1 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin: 0;
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 107, 53, 0.35);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--stroke);
  box-shadow: none;
}

.btn.secondary:hover {
  box-shadow: 0 10px 20px rgba(31, 28, 22, 0.12);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--stroke);
  font-size: 12px;
  color: var(--muted);
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
