:root {
  color-scheme: light;
  --bg: #dceaf5;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --ink: #1b3a5b;
  --muted: #5f7893;
  --line: #bdd4e5;
  --accent: #f6d24a;
  --accent-ink: #6f5510;
  --blue: #5ba8d8;
  --green: #6bbc8a;
  --burn: #c94b2c;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(246, 210, 74, 0.35), transparent 24rem),
    linear-gradient(180deg, #cde2f2 0%, var(--bg) 42%, #fff8df 100%);
}

a {
  color: inherit;
}

.site-header,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4a4 0 20%, var(--accent) 42%, #f0a93a 100%);
  box-shadow: 0 8px 28px rgba(246, 210, 74, 0.55);
}

nav,
footer {
  gap: 18px;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  color: var(--ink);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 56px;
  align-items: center;
  padding: 48px 0 40px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 12vw, 132px);
  font-weight: 400;
  line-height: 0.92;
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lede {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: clamp(18px, 3vw, 24px);
  color: #3f5e7a;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid var(--line);
}

.sun-panel {
  position: relative;
  min-height: 420px;
  border-radius: 32px;
}

.sun-disc {
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 10deg, rgba(246, 210, 74, 0.24) 0 6deg, transparent 6deg 14deg),
    radial-gradient(circle, #fff7b8 0 17%, var(--accent) 36%, rgba(246, 210, 74, 0.18) 63%, transparent 64%);
  filter: drop-shadow(0 30px 80px rgba(246, 210, 74, 0.38));
}

.uv-card {
  position: absolute;
  right: 18px;
  bottom: 54px;
  min-width: 190px;
  padding: 18px;
  border: 1px solid rgba(189, 212, 229, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(27, 58, 91, 0.12);
}

.uv-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uv-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 12px 0 26px;
}

article,
.notice,
.page {
  border: 1px solid rgba(189, 212, 229, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(27, 58, 91, 0.08);
}

article {
  padding: 22px;
}

article p,
.notice p {
  margin-bottom: 0;
}

.notice {
  margin: 8px 0 42px;
  padding: 24px;
  border-color: rgba(201, 75, 44, 0.25);
}

.notice h2 {
  color: var(--burn);
}

.page {
  max-width: 820px;
  margin-top: 40px;
  margin-bottom: 52px;
  padding: clamp(24px, 5vw, 48px);
}

.page h1 {
  font-size: clamp(42px, 8vw, 82px);
  margin-bottom: 22px;
}

.page h2 {
  margin-top: 30px;
}

.page p {
  margin: 0 0 12px;
}

.page a {
  color: var(--accent-ink);
  font-weight: 700;
}

footer {
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

footer span {
  margin-right: auto;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 780px) {
  .site-header,
  footer {
    width: min(100% - 24px, 1120px);
  }

  main {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 18px;
  }

  .sun-panel {
    min-height: 260px;
    order: -1;
  }

  .sun-disc {
    inset: 18px 50px;
  }

  .uv-card {
    right: 10px;
    bottom: 16px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}
