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

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --bg-strong: #ece7e1;
  --ink: #1b1a17;
  --muted: #5a554f;
  --line: rgba(27, 26, 23, 0.12);
  --accent: #2a6f6b;
  --accent-2: #c07a2a;
  --card: #fbfaf8;
  --shadow: 0 18px 40px rgba(17, 15, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 70% -10%, rgba(42, 111, 107, 0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(192, 122, 42, 0.18), transparent 55%),
    var(--bg);
  min-height: 100vh;
}

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

a:hover {
  color: var(--accent);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 24px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  z-index: 999;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(246, 244, 241, 0.92);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a:focus {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.hero {
  padding: 90px 0 40px;
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 620px;
  color: var(--muted);
  margin: 0 0 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--card);
}

.button.primary {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 0;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin: 0 0 20px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 32px;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(27, 26, 23, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
}

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

.highlight {
  background: var(--bg-strong);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--line);
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.list li {
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 20px;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer h4 {
  font-family: "Fraunces", serif;
  margin: 0 0 12px;
  color: var(--ink);
}

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

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

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

.page-hero {
  padding: 80px 0 30px;
}

.page-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0 0 10px;
}

.page-hero p {
  color: var(--muted);
  margin: 0;
  max-width: 680px;
}

.content {
  padding-bottom: 70px;
}

.content h2 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin-top: 36px;
}

.content p,
.content li {
  color: var(--muted);
  line-height: 1.7;
}

.content a {
  color: var(--accent);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.15s;
}

.fade-in.delay-2 {
  animation-delay: 0.3s;
}

.fade-in.delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .button:hover {
    transform: none;
  }
}
