:root {
  --cream: #f7f3ea;
  --ink: #1e1c16;
  --amber: #f2a23a;
  --copper: #d7744b;
  --moss: #1f5f55;
  --mist: #fdfaf4;
  --shadow: 0 20px 50px rgba(31, 31, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded {
  opacity: 1;
}

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

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

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 162, 58, 0.25), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(31, 95, 85, 0.18), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(215, 116, 75, 0.2), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242, 162, 58, 0.2), rgba(31, 95, 85, 0.15));
  filter: blur(80px);
  top: 280px;
  right: -120px;
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 8vw 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--moss);
  color: var(--mist);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  margin: 0;
}

.brand-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(30, 28, 22, 0.7);
}

.site-nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.site-main {
  position: relative;
  z-index: 1;
  padding: 0 8vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px 0 60px;
}

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

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.rich {
  font-size: 1.05rem;
  line-height: 1.7;
  color: inherit;
}

.rich p {
  margin: 0 0 16px;
}

.rich ul,
.rich ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: rgba(30, 28, 22, 0.65);
  margin-bottom: 12px;
}

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

.primary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  background: var(--moss);
  color: var(--mist);
  box-shadow: var(--shadow);
}

.ghost {
  border: 1px solid rgba(30, 28, 22, 0.2);
  background: rgba(255, 255, 255, 0.6);
}

.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
}

.hero-card {
  background: var(--mist);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242, 162, 58, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-card h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 12px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.section-title {
  margin: 24px 0 20px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 8px;
}

.section-title p {
  margin: 0;
  color: rgba(30, 28, 22, 0.7);
}

.grid {
  padding: 20px 0 40px;
}

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

.chip-row a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(31, 95, 85, 0.12);
  font-weight: 600;
}

.list-section {
  margin: 40px 0 50px;
}

.list-actions {
  margin-bottom: 16px;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--mist);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: float-in 0.7s ease forwards;
  opacity: 0;
}

.card-top {
  display: block;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.card-top h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
}

.card-top p {
  margin: 0;
  line-height: 1.6;
  color: rgba(30, 28, 22, 0.75);
}

.card-top img {
  /*width: 64px;*/
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(31, 95, 85, 0.1);
}

.placeholder {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(31, 95, 85, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.details {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 40px;
}

.detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.detail-grid h3 {
  margin-bottom: 8px;
}

.legal {
  background: rgba(31, 95, 85, 0.08);
  padding: 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(215, 116, 75, 0.16);
  font-size: 0.85rem;
  line-height: 1.2;
}

.guide-grid {
  display: grid;
  gap: 24px;
  margin: 20px 0 50px;
}

.articles-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.article-card {
  background: var(--mist);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.article-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
}

.article-card p {
  margin: 0;
  color: rgba(30, 28, 22, 0.75);
  line-height: 1.6;
}

.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(30, 28, 22, 0.6);
  font-size: 0.85rem;
}

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-hero {
  display: grid;
  gap: 12px;
  margin: 20px 0 10px;
}

.article-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin: 0;
}

.article-lead {
  color: rgba(30, 28, 22, 0.7);
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

.back-link {
  color: rgba(30, 28, 22, 0.65);
  font-weight: 600;
}

.article-body {
  background: var(--mist);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.inline-offer {
  border: 1px dashed rgba(30, 28, 22, 0.25);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(243, 238, 228, 0.7));
  border-radius: 20px;
  padding: 18px 20px;
  margin: 20px 0;
}

.inline-offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(30, 28, 22, 0.55);
  margin-bottom: 12px;
}

.inline-offer-body {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inline-offer-info h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.inline-offer-info p {
  margin: 0;
  color: rgba(30, 28, 22, 0.7);
  max-width: 460px;
}

.inline-offer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 8vw 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(30, 28, 22, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer a {
  font-weight: 600;
}

.small {
  font-size: 0.85rem;
  color: rgba(30, 28, 22, 0.6);
}

.seo-content {
  background: var(--mist);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  line-height: 1.7;
  color: rgba(30, 28, 22, 0.8);
  margin: 40px 0;
}

.seo-content h2,
.seo-content h3 {
  font-family: "Fraunces", serif;
  color: var(--ink);
  margin-top: 0;
}

.related {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
  color: rgba(30, 28, 22, 0.75);
  margin-bottom: 40px;
}

.related a {
  color: var(--moss);
  font-weight: 600;
}

.empty {
  padding: 80px 0;
  text-align: center;
}

.empty h2 {
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

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

@media (max-width: 780px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .site-footer {
    flex-direction: column;
  }
}
