:root {
  --bg: #fff9e8;
  --bg-soft: #fef3cc;
  --surface: #fffcf1;
  --line: #e7d8ac;
  --text: #2f2a1f;
  --muted: #6e654f;
  --brand: #b4851f;
  --brand-dark: #8f6714;
  --accent: #225e5f;
  --shadow: 0 20px 45px rgba(116, 84, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, #ffe8a0 0%, rgba(255, 232, 160, 0) 45%),
    radial-gradient(circle at 85% 10%, #ffeec4 0%, rgba(255, 238, 196, 0) 35%),
    linear-gradient(180deg, #fff8e2 0%, #fffdf3 60%, #fff9e9 100%);
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
  background: rgba(255, 249, 232, 0.86);
  border-bottom: 1px solid rgba(194, 161, 98, 0.25);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 180ms ease;
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
}

.btn-solid {
  background: linear-gradient(140deg, var(--brand) 0%, #c7952c 100%);
  color: #fffaf0;
  border: 1px solid #b07d1c;
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(143, 103, 20, 0.27);
}

.btn-ghost {
  border: 1px solid transparent;
  color: var(--accent);
  background: #f5ecd2;
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: #d7bf87;
  background: #fff4d2;
}

.hero {
  padding: 82px 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 16px;
  font-family: "DM Serif Display", Georgia, serif;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 13ch;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

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

.hero-mini-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-mini-gallery img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e2cf9e;
}

.trust-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5f563f;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e4d2a3;
  background: #fff7e1;
}

.hero-card {
  background: linear-gradient(155deg, #fff8e1 0%, #ffefc3 100%);
  border: 1px solid #dfc98b;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  animation: floatIn 600ms ease;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.hero-card .sub {
  margin: 8px 0 16px;
  color: #6a5f48;
  font-size: 0.87rem;
}

.hero-photo {
  margin-top: 16px;
  width: 100%;
  height: 158px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(209, 179, 108, 0.7);
}

.rate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rate-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(209, 179, 108, 0.7);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 0.93rem;
}

.rate-list strong {
  color: var(--brand-dark);
}

.text-link {
  margin-top: 16px;
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
}

.metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metrics article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.metrics h3 {
  margin: 0 0 8px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
}

.metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  background: #fffdf4;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.feature h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

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

.feature-photo {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e6d6ad;
  margin-bottom: 14px;
}

.trade-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trade-gallery-item {
  display: block;
}

.trade-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e7d8ac;
  box-shadow: var(--shadow);
}

.blog {
  padding: 72px 0 18px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.page-hero {
  padding: 62px 0 10px;
}

.page-hero h1 {
  margin: 10px 0 10px;
  font-family: "DM Serif Display", Georgia, serif;
  line-height: 1.15;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.blog-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.post {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fffdf5;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.post::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 219, 132, 0.38);
  right: -22px;
  top: -22px;
}

.post .meta {
  margin: 0;
  color: #7f7355;
  font-size: 0.82rem;
  font-weight: 700;
}

.post-photo {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e6d5ac;
  margin-bottom: 12px;
}

.post h3 {
  margin: 12px 0 10px;
  font-size: 1.07rem;
  line-height: 1.35;
}

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

.post a {
  margin-top: 14px;
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.cta {
  margin: 52px auto 72px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid #ddc88e;
  background: linear-gradient(120deg, #ffe6a4 0%, #fff2ca 100%);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.cta h2 {
  margin: 8px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.site-footer {
  border-top: 1px solid #e2d4af;
  background: rgba(255, 249, 231, 0.8);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #6d634d;
  font-size: 0.87rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #6d634d;
  text-decoration: none;
}

.page-nav {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.page-nav a,
.page-nav span {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  background: #fffdf5;
}

.page-nav .active,
.page-nav a:hover {
  color: #fffaf0;
  border-color: #b07d1c;
  background: linear-gradient(140deg, var(--brand) 0%, #c7952c 100%);
}

.article-wrap {
  padding: 14px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 16px;
}

.article-main {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf5;
  padding: 20px;
}

.article-cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e6d5ac;
}

.article-content {
  margin-top: 18px;
  color: #4f4737;
}

.article-content img {
  max-width: 100%;
  border-radius: 10px;
}

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

.article-nav {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.article-nav a {
  color: var(--accent);
  text-decoration: none;
}

.article-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.side-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf5;
  padding: 16px;
}

.side-box h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.side-box p {
  margin: 0 0 10px;
  color: var(--muted);
}

.side-box ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.side-box a {
  color: var(--accent);
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .metrics,
  .feature-grid,
  .blog-grid,
  .trade-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .metrics,
  .feature-grid,
  .blog-grid,
  .trade-gallery {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .hero h1 {
    max-width: none;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }
}
