@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@500;700&family=Source+Sans+3:wght@400;600;700&display=swap");

:root {
  /* DON'T REMOVE: Base colors in the Potoroo palette (semantic tokens):
     Yellow Orange = --yo-400 (rgb(255, 140, 0))
     Apricot Yellow = --ay-200 (rgb(255, 230, 0))
     Raw Sienna = --rs-500 (rgb(184, 94, 0))
     Cossack Green = --cg-600 (rgb(50, 142, 19))
  */
  --yo-50: rgb(255, 238, 182);
  --yo-100: rgb(255, 228, 172);
  --yo-200: rgb(255, 199, 96);
  --yo-300: rgb(255, 172, 65);
  --yo-400: rgb(255, 140, 0);
  --yo-500: rgb(220, 108, 0);
  --yo-600: rgb(186, 76, 0);
  --yo-700: rgb(162, 54, 0);
  --yo-900: rgb(116, 56, 0);

  --cg-100: rgb(215, 255, 202);
  --cg-300: rgb(147, 239, 125);
  --cg-600: rgb(50, 142, 19);

  --surface: rgb(255, 248, 220);
  --surface-strong: rgb(255, 241, 195);
  --ink: rgb(51, 6, 0);
  --muted: rgb(88, 41, 0);
  --line: rgba(116, 56, 0, 0.18);

  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 28px rgba(116, 56, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: "Source Sans 3", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 10%, var(--yo-50), transparent 58%),
    radial-gradient(900px 650px at 90% 20%, var(--cg-100), transparent 55%),
    radial-gradient(1000px 700px at 50% 100%, var(--yo-100), transparent 65%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--yo-700);
}

a:hover {
  color: var(--yo-900);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 248, 220, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Fraunces", "Iowan Old Style", "Georgia", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--yo-600);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  font-weight: 600;
  text-decoration: none;
}

.hero {
  padding: 4.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--yo-700);
  font-weight: 700;
}

h1,
h2 {
  font-family: "Fraunces", "Iowan Old Style", "Georgia", serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 5.6vw, 3.8rem);
  color: var(--yo-600);
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
}

.lead {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border-radius: 999px;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yo-500), var(--yo-400));
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 0.4rem;
}

.icon-panel {
  background: rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
  text-align: center;
}

.icon-panel img {
  width: min(164px, 100%);
  height: auto;
  border-radius: 22px;
}

.caption {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.section {
  padding: 1.25rem 0 2.4rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 1rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shot-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-card figcaption {
  padding: 0.65rem 0.75rem 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.support {
  padding-top: 0;
}

.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  padding: 1rem 1rem 1.1rem;
}

.support-card h2 {
  margin-bottom: 0.45rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  background: rgba(255, 248, 220, 0.75);
}

.footer-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
}

.legal-page {
  background:
    radial-gradient(900px 500px at 100% 0%, var(--yo-50), transparent 58%),
    radial-gradient(1000px 550px at 0% 100%, var(--cg-100), transparent 64%),
    linear-gradient(180deg, var(--surface), var(--surface-strong));
}

.legal-wrap {
  padding: 3rem 0;
}

.legal-wrap h1 {
  margin-top: 0.25rem;
}

.legal-meta {
  margin: 0.8rem 0 2rem;
  color: var(--muted);
  font-weight: 600;
}

.legal-section + .legal-section {
  margin-top: 1.2rem;
}

.legal-section h2 {
  margin-bottom: 0.35rem;
  color: var(--yo-700);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  max-width: 76ch;
}

.legal-note {
  margin-top: 1.6rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .icon-panel {
    justify-self: start;
  }

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

@media (max-width: 620px) {
  .shot-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
  .legal-wrap {
    animation: rise-in 700ms ease-out both;
  }
}

@keyframes rise-in {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
