:root {
  --navy: #0b1f3a;
  --navy-soft: #17335c;
  --gold: #d4af37;
  --gold-soft: #f3e0a3;
  --white: #ffffff;
  --ink: #10233f;
  --muted: #5f6f86;
  --surface: #f7f9fc;
  --line: rgba(11, 31, 58, 0.1);
  --shadow: 0 18px 48px rgba(11, 31, 58, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 22%),
    linear-gradient(180deg, #f6f8fc 0%, #ffffff 24%, #f9fbfd 100%);
  line-height: 1.7;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f8edd0, #d4af37);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-text {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
  margin-right: 8px;
}

.site-nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f3df95, #d4af37);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.32);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(11, 31, 58, 0.14);
}

.section {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.06);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

.hero-card,
.blog-card,
.sidebar-card,
.post-shell,
.cta-block,
.ad-slot,
.related-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.sidebar-card,
.post-shell,
.cta-block,
.ad-slot,
.related-card {
  padding: 28px;
}

.blog-layout,
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 340px;
  gap: 24px;
  align-items: start;
}

.blog-grid,
.related-grid {
  display: grid;
  gap: 20px;
}

.blog-card {
  overflow: hidden;
}

.blog-card-body {
  padding: 24px;
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dbe4f2;
}

.post-meta,
.card-meta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}

.post-featured {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 18px;
  margin: 20px 0 24px;
}

.post-content h2,
.post-content h3 {
  margin-top: 26px;
}

.post-content ul {
  padding-left: 20px;
}

.sidebar-card h3,
.cta-block h2 {
  margin-bottom: 10px;
}

.sidebar-list,
.category-list {
  display: grid;
  gap: 12px;
}

.sidebar-list a,
.category-list a {
  color: var(--navy);
  font-weight: 700;
}

.cta-block {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(17, 45, 84, 0.96)),
    linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 60%);
  color: var(--white);
}

.cta-block h2,
.cta-block p {
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-block .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.inline-cta {
  margin: 28px 0;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.sticky-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #f4df93, #d4af37);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.34);
  font-weight: 800;
}

.note {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(11, 31, 58, 0.04);
  border: 1px solid rgba(11, 31, 58, 0.08);
  color: var(--muted);
}

.ad-slot {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.03), rgba(11, 31, 58, 0.01)),
    rgba(255, 255, 255, 0.95);
}

.ad-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.08);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-placeholder {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(11, 31, 58, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-weight: 700;
}

.footer {
  padding: 28px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-disclaimer {
  max-width: 980px;
  margin: 12px auto 0;
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 980px) {
  .blog-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar {
    position: static;
  }

  .topbar-inner,
  .site-nav,
  .nav-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    width: 100%;
    margin: 0;
    gap: 10px;
  }

  .nav-cta .btn,
  .cta-row .btn {
    width: 100%;
  }

  .hero-card,
  .sidebar-card,
  .post-shell,
  .cta-block,
  .related-card {
    padding: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .sticky-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .sticky-whatsapp a {
    width: 100%;
  }
}
