@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --background: 43 37% 96%;
  --foreground: 0 0% 18%;
  --text: 0 0% 18%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 18%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 18%;
  --primary: 221 47% 20%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 9% 46%;
  --secondary-foreground: 0 0% 100%;
  --muted: 43 30% 92%;
  --muted-foreground: 220 9% 46%;
  --accent: 34 39% 63%;
  --accent-foreground: 0 0% 0%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 9% 46%;
  --input: 220 9% 46%;
  --ring: 34 39% 63%;
  --radius: 0.25rem;
  --success: 196 52% 74%;
  --warning: 34 89% 85%;
  --error: 10 100% 86%;

  --brand-primary: 221 47% 20%;
  --brand-secondary: 220 9% 46%;
  --brand-background: 43 37% 96%;
  --brand-accent: 34 39% 63%;
  --brand-text: 0 0% 18%;
  --brand-header-bg: 221 47% 20%;
  --brand-footer-bg: 221 47% 20%;
  --brand-headline: 221 47% 20%;
  --brand-muted: 220 9% 46%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: hsl(var(--text));
  background-color: hsl(var(--background));
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: hsl(var(--brand-headline));
}

h1 {
  font-size: 2.375rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.375rem;
  font-weight: 600;
}

p {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-out;
}

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

.container {
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.btn-primary {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
}

.btn-primary:hover {
  background-color: hsl(34 39% 53%);
  border-color: hsl(34 39% 53%);
  color: hsl(var(--accent-foreground));
}

.btn-secondary {
  background-color: transparent;
  color: hsl(var(--text));
  border-color: hsl(var(--text));
}

.btn-secondary:hover {
  background-color: hsl(var(--text));
  color: hsl(var(--background));
}

.card {
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border: 1px solid hsl(var(--secondary) / 0.15);
  border-radius: 8px;
  box-shadow: 0 4px 20px hsl(var(--brand-primary) / 0.06);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease-out;
}

.card:hover {
  box-shadow: 0 8px 30px hsl(var(--brand-primary) / 0.1);
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(var(--text));
  background-color: #ffffff;
  border: 1px solid hsl(var(--secondary) / 0.4);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.input::placeholder {
  color: hsl(var(--muted-foreground));
}

.input:focus {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 3px hsl(var(--accent) / 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: hsl(var(--accent));
  background-color: hsl(var(--accent) / 0.12);
  border-radius: 4px;
}

.site-header {
  background-color: hsl(var(--brand-header-bg));
  color: hsl(0 0% 100%);
  padding: 1rem 0;
}

.site-header a {
  color: hsl(0 0% 100%);
  opacity: 0.65;
  transition: opacity 0.2s ease-out, color 0.2s ease-out;
}

.site-header a:hover {
  opacity: 1;
  color: hsl(var(--accent));
}

.site-header .btn-primary {
  opacity: 1;
  color: hsl(var(--accent-foreground));
}

.site-header .btn-primary:hover {
  color: hsl(var(--accent-foreground));
}

.site-footer {
  background-color: hsl(var(--brand-footer-bg));
  color: hsl(0 0% 100% / 0.7);
  padding: 4rem 0 2rem;
}

.site-footer a {
  color: hsl(0 0% 100% / 0.7);
  transition: color 0.2s ease-out;
}

.site-footer a:hover {
  color: hsl(var(--accent));
}

.site-footer .footer-key-link {
  color: hsl(0 0% 100%);
}

.site-footer .footer-divider {
  border-color: hsl(0 0% 100% / 0.15);
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-accent {
  background-color: hsl(var(--accent));
}

.bg-card {
  background-color: hsl(var(--card));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-accent {
  color: hsl(var(--accent));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-white {
  color: hsl(0 0% 100%);
}

.text-black {
  color: hsl(0 0% 0%);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.prose {
  --tw-prose-body: hsl(var(--text));
  --tw-prose-headings: hsl(var(--text));
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39/10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255/10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0/50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.posts-archive-grid img {
  aspect-ratio: 16/9;
}
