@import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap";

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #f5f9ff;
  --surface: #ffffff;
  --border: #d0e4f0;
  --primary: hsl(202, 86%, 47%);
  --primary-light: hsl(203, 55%, 94%);
  --text: hsl(220, 30%, 14%);
  --muted: hsl(215, 20%, 40%);
  --gold: hsl(45, 86%, 47%);
  --radius: 0.5rem;
}

body {
  background:
    radial-gradient(1200px 500px at 5% -10%, hsl(201 100% 88% / 0.45), transparent 60%),
    radial-gradient(900px 500px at 95% 5%, hsl(45 100% 80% / 0.2), transparent 55%),
    linear-gradient(180deg, hsl(210 40% 98%) 0%, hsl(206 55% 96%) 100%);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 12px hsl(202 86% 35% / 0.08);
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-brand img { width: 36px; height: auto; }
.nav-brand-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); }
.nav-brand-text em { color: var(--primary); font-style: normal; }

nav a.back-link {
  font-size: 0.875rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s;
}
nav a.back-link:hover { color: var(--primary); text-decoration: none; }

/* Main */
main { max-width: 820px; margin: 0 auto; padding: 4rem 2rem 6rem; }

.page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.meta { font-size: 0.85rem; color: var(--muted); }

section { margin-bottom: 2.5rem; }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  color: hsl(202, 86%, 35%);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}

p { color: var(--muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol {
  color: var(--muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
li { margin-bottom: 0.4rem; }

strong { color: var(--text); font-weight: 600; }

.highlight-box {
  background: hsl(45 100% 96%);
  border: 1px solid hsl(45 86% 75%);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 2px 12px hsl(202 86% 35% / 0.08);
}

/* Footer */
footer {
  background: linear-gradient(180deg, hsl(205 62% 96%) 0%, hsl(208 50% 94%) 100%);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

footer .links {
  display: flex; justify-content: center;
  gap: 1.5rem; margin-top: 0.5rem;
  flex-wrap: wrap;
}
