@charset "UTF-8";

:root {
  color-scheme: light;
  --bg-1: #fbf2e3;
  --bg-2: #f5e4c7;
  --bg-3: #efddbb;
  --paper: rgba(255, 250, 241, 0.72);
  --paper-strong: rgba(255, 251, 244, 0.88);
  --ink: #221c17;
  --muted: #695d4a;
  --line: rgba(63, 48, 28, 0.14);
  --gold: #c8942d;
  --gold-deep: #9d6d17;
  --shadow: 0 28px 70px rgba(74, 50, 12, 0.15);
  --shadow-soft: 0 18px 38px rgba(74, 50, 12, 0.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
  --brand-purple: #2b1538;
}
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(201, 148, 45, 0.18), transparent 18%),
    radial-gradient(circle at 88% 16%, rgba(72, 48, 23, 0.08), transparent 22%),
    radial-gradient(circle at 50% 78%, rgba(162, 118, 31, 0.08), transparent 26%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 46%, var(--bg-3) 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: soft-light;
  opacity: 0.42;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -14% -16% auto;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(255, 236, 202, 0.44), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #f7ecdb;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.22s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 16px 0 6px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(62, 47, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(58, 39, 12, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  color: var(--brand-purple);
}

.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.footer .brand-mark { width: 44px; height: 44px; }

/* Mobile: reduce logo size and wordmark for compact headers */
@media (max-width: 640px) {
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: 1.5rem; }
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--muted);
  text-transform: uppercase;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  background: rgba(35, 28, 20, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-link--cta {
  padding-inline: 18px;
  background: var(--ink);
  color: #f8eedf;
  box-shadow: 0 12px 24px rgba(35, 28, 20, 0.18);
}

.nav-link--cta:hover,
.nav-link--cta:focus-visible,
.nav-link--cta[aria-current="page"] {
  background: #3a2d23;
  color: #f8eedf;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(62, 47, 26, 0.12);
  border-radius: 16px;
  background: rgba(255, 251, 244, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding-bottom: 24px;
}

section {
  padding: 18px 0;
}

.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}


.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  margin-top: 18px;
  position: relative;
  /* Shifting glassmorphic color background */
  background: linear-gradient(-45deg, 
    rgba(255, 250, 241, 0.72), 
    rgba(247, 231, 200, 0.65), 
    rgba(235, 222, 250, 0.62), 
    rgba(255, 241, 214, 0.72)
  );
  background-size: 300% 300%;
  animation: gradientShift 18s ease infinite;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  top: -12%;
  left: -8%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(201, 148, 45, 0.22) 0%, rgba(142, 68, 173, 0.15) 50%, transparent 70%);
  filter: blur(20px);
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.hero::after {
  right: -10%;
  bottom: -24%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(220, 118, 51, 0.18) 0%, rgba(201, 148, 45, 0.1) 60%, transparent 80%);
  filter: blur(20px);
  animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(0.95); opacity: 0.8; }
  100% { transform: translate(3vw, -2vw) scale(1.05); opacity: 1; }
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

/* No hero visual — keep hero single-column and focused */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
}

h2,
h3,
h4 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
}

.hero p,
.page-hero p {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--dark {
  background: var(--ink);
  color: #f9efdf;
  box-shadow: 0 14px 28px rgba(35, 28, 20, 0.18);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #382b22;
}

.button--light {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-color: rgba(62, 47, 26, 0.12);
}

.button--light:hover,
.button--light:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero-points li,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(62, 47, 26, 0.1);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  box-shadow: 0 12px 24px rgba(74, 50, 12, 0.08);
}

.hero-points li::before,
.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 148, 45, 0.16);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-plate {
  margin: 0;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 231, 200, 0.68)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(74, 54, 22, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), var(--shadow-soft);
}

.brand-plate img {
  width: 100%;
  border-radius: 20px;
}

.brand-plate figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.brand-plate figcaption span:first-child {
  font-weight: 750;
  color: var(--ink);
}

.hero-side-card,
.note-card,
.quote-card,
.contact-card,
.newsletter-card,
.summary-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 47, 26, 0.12);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
}

.hero-side-card h2,
.note-card h2,
.quote-card h2,
.contact-card h2,
.newsletter-card h2,
.summary-card h2 {
  margin: 0;
  font-family: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.02;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.hero-side-card p,
.note-card p,
.quote-card p,
.contact-card p,
.newsletter-card p,
.summary-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.section-head p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 47, 26, 0.12);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 47, 26, 0.18);
  box-shadow: 0 24px 42px rgba(74, 50, 12, 0.14);
}

.card h3,
.card h4,
.article-card h3 {
  margin: 0;
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

/* Card icon */
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}

.card h3 {
  font-size: 1.72rem;
}

.card p,
.article-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--ink);
  line-height: 1.55;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.section {
  margin-top: clamp(60px, 8vw, 100px);
}

.section .panel,
.section .card {
  height: 100%;
}

.stat-row,
.meta-row,
.tag-row,
.footer-links,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(62, 47, 26, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.pipeline {
  display: grid;
  gap: 14px;
}

.pipeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(62, 47, 26, 0.12);
  background: rgba(255, 255, 255, 0.46);
}

.pipeline-step strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #f7ebda;
  font-size: 0.95rem;
  box-shadow: 0 10px 18px rgba(35, 28, 20, 0.18);
}

.pipeline-step h3 {
  margin: 0;
  font-family: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: 1.55rem;
}

.pipeline-step p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 32px);
  background: linear-gradient(135deg, rgba(35, 28, 20, 0.95), rgba(56, 42, 30, 0.92));
  color: #f7ecd9;
}

.cta-panel h2,
.cta-panel p {
  color: inherit;
}

.cta-panel .button--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.cta-panel .button--light:hover,
.cta-panel .button--light:focus-visible {
  background: white;
}

.cta-panel .button--dark {
  background: #f7ebdc;
  color: #241d18;
}

.cta-panel .button--dark:hover,
.cta-panel .button--dark:focus-visible {
  background: #fff7ec;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  margin-top: 18px;
}

.page-hero .hero-side-card {
  background: rgba(255, 255, 255, 0.48);
}

.eyebrow + .page-hero h1,
.eyebrow + .hero h1 {
  margin-top: 0;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.featured-article .article-card {
  min-height: 100%;
}

.article-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 47, 26, 0.12);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.article-card h3 {
  font-size: 1.7rem;
}

.article-card .meta-row {
  margin-top: 14px;
}

.meta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(35, 28, 20, 0.08);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-grid .article-card {
  display: grid;
  align-content: start;
}

.article-card .link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-deep);
  font-weight: 750;
  text-decoration: none;
}

.article-card .link:hover,
.article-card .link:focus-visible {
  text-decoration: underline;
}

.sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.newsletter-card form,
.contact-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(62, 47, 26, 0.14);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
  max-width: 100%;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(200, 148, 45, 0.28);
  border-color: rgba(200, 148, 45, 0.5);
}

.helper {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

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

.detail-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(62, 47, 26, 0.1);
}

.detail-list strong {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.detail-list span {
  color: var(--ink);
  line-height: 1.6;
}

.footer {
  margin-top: 16px;
  padding: 38px 0 52px;
  color: #f8eddc;
  background: linear-gradient(180deg, rgba(39, 31, 25, 0.94), rgba(24, 19, 15, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: start;
}

.footer p {
  margin: 0;
  color: rgba(248, 237, 222, 0.76);
  line-height: 1.7;
}

.footer .brand-copy strong,
.footer .brand-copy small {
  color: inherit;
}

.footer .brand-mark {
  background: rgba(255, 255, 255, 0.82);
}

.footer-links a {
  color: rgba(248, 237, 222, 0.82);
  text-decoration: none;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(248, 237, 222, 0.7);
}

/* ── Stats panel ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stats-panel {
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.68), rgba(247,231,200,0.72));
  border: 1px solid rgba(74,54,22,0.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), var(--shadow-soft);
  overflow: hidden;
}

.stats-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.stat-block {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-right: 1px solid rgba(74,54,22,0.08);
  border-bottom: 1px solid rgba(74,54,22,0.08);
  transition: background 0.22s ease;
}

.stat-block:nth-child(even) { border-right: none; }
.stat-block:nth-child(3),
.stat-block:nth-child(4) { border-bottom: none; }
.stat-block:hover { background: rgba(255,255,255,0.45); }

.stat-block__num {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  display: inline;
}

.stat-block__unit {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-block__label {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats-panel__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--ink);
  color: #f7ecd9;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8942d;
  box-shadow: 0 0 0 4px rgba(200,148,45,0.3);
  animation: pulse 2s ease-in-out infinite;
  flex: 0 0 auto;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,148,45,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(200,148,45,0.12); }
}

/* ── Trusted by row ── */
.trusted-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(74,54,22,0.1);
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.trusted-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.trusted-sep {
  color: var(--gold);
  font-size: 1rem;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62,47,26,0.12);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(74,50,12,0.14);
}

.testimonial-card > p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  font-family: "Inter", sans-serif;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid rgba(74,54,22,0.1);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── Social links ── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(248,237,222,0.72);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}

.footer-brand { color: #f8eddc; }

.reveal {

  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

#cap-full.is-collapsed { display: none; }
.tag-cloud .tag-row { gap: 10px; }

/* Homepage highlights and capability toggle */
.highlights { display: grid; gap: 16px; margin-top: 8px; }
.highlights.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.highlights .card svg { width: 48px; height: 48px; display: block; margin-bottom: 12px; color: var(--gold); }
.cap-summary .button { white-space: nowrap; flex: 0 0 auto; }
#cap-full.is-collapsed { display: none; }
.tag-cloud .tag-row { gap: 10px; }

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-article,
  .hero,
  .page-hero,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-row {
    border-radius: 22px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    padding-right: 12px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(62, 47, 26, 0.12);
    border-radius: 28px;
    background: rgba(255, 249, 239, 0.98);
    box-shadow: 0 20px 40px rgba(58, 39, 12, 0.16);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-toggle {
    display: grid;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding: 10px 10px 10px 14px;
    border-radius: 24px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    width: auto;
    min-width: 76px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .nav-toggle::after {
    content: "Menu";
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
  }

  .hero::before,
  .hero::after,
  .page-hero::before,
  .page-hero::after {
    content: none;
  }

  .hero,
  .page-hero {
    padding: 20px;
    border-radius: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

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

  .grid-2,
  .grid-3,
  .grid-4,
  .article-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    gap: 8px;
  }

  .brand-plate figcaption {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-panel {
    gap: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Hero Background Video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
  filter: contrast(1.05) saturate(1.1);
}

/* Floating WhatsApp Widget Styling */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 8px 30px rgba(37, 211, 102, 0.25);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 12px 40px rgba(37, 211, 102, 0.35);
  background-color: #20ba5a;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--ink);
  color: #fff1d6;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


