﻿:root {
  --bg: #ffffff;
  --bg-soft: #f5f3ee;
  --surface-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgb(234 234 234 / 96%)), radial-gradient(circle at top right, rgba(201, 169, 98, 0.12), transparent 26%);
  --bg-dark: #1a1a1a;
  --bg-dark-alt: #2c2c2c;
  --text: #181818;
  --text-soft: #5f5f63;
  --text-light: #d8d8dc;
  --gold: #c9a962;
  --gold-dark: #b8975a;
  --line: rgba(20, 20, 24, 0.12);
  --shadow: 0 24px 60px rgba(15, 15, 20, 0.12);
  --radius: 24px;
  --container: 1280px;
  --header-height: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Aptos, "Segoe UI", sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon i,
.icon-badge i {
  font-size: 1.2rem;
  line-height: 1;
}
.icon-badge i { font-size: 1.5rem; }
.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; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background:
    linear-gradient(115deg, rgba(18, 18, 20, 0.97), rgba(42, 42, 44, 0.95)),
    linear-gradient(90deg, rgba(201, 169, 98, 0.08), transparent 38%);
  border-bottom: 1px solid rgba(201, 169, 98, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  background:
    linear-gradient(115deg, rgba(14, 14, 16, 0.985), rgba(34, 34, 36, 0.97)),
    linear-gradient(90deg, rgba(201, 169, 98, 0.1), transparent 42%);
  border-bottom-color: rgba(201, 169, 98, 0.24);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand img {
  width: auto;
  max-width: min(58vw, 340px);
  height: clamp(36px, 4vw, 52px);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) {
  color: rgba(255, 248, 230, 0.88);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-nav > a:not(.button):hover, .site-nav > a:not(.button):focus-visible { color: var(--gold); }
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 16px;
  background: rgba(30, 30, 32, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: #f3e7cb; border-radius: 999px; transition: transform 0.22s ease, opacity 0.22s ease; }
.site-header .button-nav {
  border-color: rgba(201, 169, 98, 0.28);
  box-shadow: 0 16px 32px rgba(201, 169, 98, 0.18);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 56px; padding: 0 28px; border: 1px solid transparent; border-radius: 16px; font-weight: 700; letter-spacing: 0.01em; transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button-gold { background: var(--gold); color: #ffffff; box-shadow: 0 14px 30px rgba(201, 169, 98, 0.22); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-dark); }
.button-ghost { border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.08); color: #ffffff; backdrop-filter: blur(8px); }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255, 255, 255, 0.16); }
.button-large { padding-inline: 34px; min-height: 64px; font-size: 1.05rem; }
.button-nav { min-height: 48px; padding-inline: 20px; }
.button-footer { min-height: 48px; padding-inline: 22px; }
.icon-whatsapp::before, .arrow::before, .chevron::before { content: ""; display: block; width: 20px; height: 20px; border: 2px solid currentColor; border-radius: 50%; }
.icon-whatsapp::before { width: 18px; height: 18px; border-radius: 50%; clip-path: polygon(15% 15%, 85% 15%, 85% 72%, 58% 72%, 42% 88%, 42% 72%, 15% 72%); }
.arrow::before { width: 10px; height: 10px; border-width: 0 2px 2px 0; border-radius: 0; transform: rotate(-45deg); }
.chevron::before { width: 12px; height: 12px; border-width: 0 2px 2px 0; border-radius: 0; transform: rotate(45deg); }
.hero, .cta-section { position: relative; overflow: hidden; }
.hero { min-height: 100svh; padding-top: var(--header-height); display: flex; align-items: center; background: var(--surface-gradient); }
.hero-media, .cta-media, .hero-overlay, .cta-overlay { position: absolute; inset: 0; }
.hero-media img, .cta-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { opacity: 0.18; }
.cta-media { opacity: 0.15; }
.hero-overlay { background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(28, 28, 30, 0.56)), radial-gradient(circle at top right, rgba(201, 169, 98, 0.18), transparent 28%); }
.cta-overlay { background: linear-gradient(135deg, rgba(26, 26, 26, 0.92), rgba(44, 44, 44, 0.9)), rgba(0, 0, 0, 0.42); }
.hero-content, .cta-content { position: relative; z-index: 1; }
.hero-content { width: 100%; padding-block: 96px 100px; }
.hero-copy {
  max-width: 780px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.7), rgba(20, 20, 24, 0.56));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}
.eyebrow, .section-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; color: var(--gold); background: rgba(201, 169, 98, 0.1); border: 1px solid rgba(201, 169, 98, 0.26); font-size: 0.95rem; }
.section-pill.inverse { color: var(--gold); background: rgba(201, 169, 98, 0.16); border-color: rgba(201, 169, 98, 0.34); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.hero h1, .copy-block h2, .section-heading h2, .cta-content h2 { margin: 24px 0; line-height: 1.06; letter-spacing: -0.04em; font-family: Georgia, "Times New Roman", serif; }
.hero h1 { color: #ffffff; font-size: clamp(2.4rem, 5vw, 2.8125rem); }
.hero h1 span, .copy-block h2 span, .cta-content h2 span { color: var(--gold); }
.hero-text, .lead, .section-heading p, .cta-content p { font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-text { color: var(--text-light); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.scroll-indicator { position: absolute; left: 50%; bottom: 30px; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.7); transform: translateX(-50%); font-size: 0.95rem; }
.scroll-indicator .chevron { animation: bounce 1.5s infinite; }
.section { padding: 110px 0; }
.section-light { background: var(--surface-gradient); }
.section-soft { background: var(--surface-gradient); }
.section-dark { background: var(--bg-dark); color: #ffffff; }
.section-dark .section-heading p { color: #b5b5bb; }
.section-heading { max-width: 780px; margin-bottom: 56px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { font-size: clamp(2.4rem, 4vw, 4.1rem); margin-bottom: 18px; }
.feature-grid, .service-grid, .process-grid, .stats-grid, .footer-grid, .contact-grid { display: grid; gap: 28px; }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .service-card, .process-card, .contact-card { border-radius: var(--radius); }
.feature-card { padding: 32px 26px; text-align: center; background: var(--surface-gradient); transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease; }
.feature-card:hover { transform: translateY(-4px); background: #faf9f5; box-shadow: var(--shadow); }
.feature-card h2, .service-card h3, .process-card h3, .stack-item h3, .footer-brand h3, .copy-block h2 { margin: 0 0 10px; }
.feature-card p, .service-card p, .process-card p, .stack-item p, .copy-block p, .section-heading p, .contact-card strong, .footer-brand p, .footer-links a, .stats-grid span, .contact-label { color: var(--text-soft); }
.icon-badge { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; margin-bottom: 20px; border-radius: 20px; color: #ffffff; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 18px 30px rgba(201, 169, 98, 0.18); }
.icon-badge.small { width: 52px; height: 52px; margin-bottom: 0; border-radius: 16px; flex: 0 0 auto; }
.icon-badge.light { background: #f4f1ea; color: var(--gold); box-shadow: none; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; inset: -16px; border-radius: calc(var(--radius) + 8px); background: linear-gradient(135deg, rgba(201, 169, 98, 0.18), rgba(201, 169, 98, 0)); }
.media-frame img { position: relative; width: 100%; min-height: 460px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.copy-block h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.copy-block .lead { margin-bottom: 22px; }
.check-list, .footer-links { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 38px; margin-bottom: 16px; font-size: 1.06rem; color: #34343a; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 22px; height: 22px; border-radius: 50%; background: rgba(201, 169, 98, 0.14); border: 2px solid rgba(201, 169, 98, 0.36); }
.check-list li::after { content: ""; position: absolute; left: 8px; top: 11px; width: 7px; height: 4px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { padding: 34px 30px; background: linear-gradient(180deg, #2b2b2f 0%, #1a1a1a 100%); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.service-card p { color: #bcbcc2; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(201, 169, 98, 0.42); box-shadow: 0 32px 70px rgba(201, 169, 98, 0.08); }
.stack-list { display: grid; gap: 22px; margin-top: 34px; }
.stack-item { display: flex; align-items: flex-start; gap: 18px; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-card { position: relative; padding: 34px 28px 30px; background: var(--surface-gradient); border: 1px solid var(--line); box-shadow: 0 20px 45px rgba(20, 20, 24, 0.06); }
.step-number { position: absolute; top: -16px; right: 20px; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #ffffff; font-weight: 700; }
.cta-section { padding: 120px 0; }
.cta-content { max-width: 860px; text-align: center; }
.cta-content h2 { color: #ffffff; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.cta-content p { margin-inline: auto; max-width: 760px; color: var(--text-light); }
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 52px; }
.stats-grid article { text-align: center; }
.stats-grid strong { display: block; margin-bottom: 8px; color: var(--gold); font-size: clamp(2.2rem, 4vw, 3.3rem); font-family: Georgia, "Times New Roman", serif; }
.stats-grid span { color: #bfbfc5; }
.contact-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: start; }
.map-frame { overflow: hidden; min-height: 420px; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.contact-list { display: grid; gap: 18px; }
.contact-card { display: flex; align-items: flex-start; gap: 18px; padding: 24px; background: var(--surface-gradient); border: 1px solid var(--line); box-shadow: 0 16px 34px rgba(20, 20, 24, 0.05); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.contact-card:hover { transform: translateY(-2px); border-color: rgba(201, 169, 98, 0.4); box-shadow: var(--shadow); }
.contact-label { display: block; margin-bottom: 6px; font-size: 0.92rem; }

.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(24, 33, 44, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  box-shadow: 0 14px 32px rgba(19, 34, 53, 0.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 169, 98, 0.28);
}

.back-to-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  line-height: 1;
}
.site-footer { background: var(--bg-dark); color: #ffffff; padding-top: 86px; }
.footer-grid { grid-template-columns: 1.3fr 0.7fr 0.9fr; padding-bottom: 42px; }
.footer-brand img { margin-bottom: 26px; }
.footer-brand p { max-width: 540px; }
.site-footer h4 { margin: 0 0 20px; font-size: 1.1rem; }
.footer-links li + li { margin-top: 12px; }
.footer-links a { color: #c1c1c7; transition: color 0.2s ease; }
.footer-links a:hover, .footer-links a:focus-visible, .social-link:hover, .social-link:focus-visible { color: var(--gold); }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: #c1c1c7;
  font-weight: 600;
  font-size: 1.45rem;
  min-width: 44px;
  min-height: 44px;
}
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0 38px; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.footer-bottom p { margin: 0; color: #a8a8ae; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes bounce { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(6px) rotate(45deg); } }
@media (max-width: 1080px) {
  .feature-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid, .footer-grid, .contact-grid, .split { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 12px); right: 20px; left: 20px; display: grid; gap: 14px; padding: 20px; border: 1px solid rgba(201, 169, 98, 0.16); border-radius: 24px; background: linear-gradient(180deg, rgba(22, 22, 24, 0.98), rgba(36, 36, 38, 0.97)); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .button-nav { justify-content: center; }
  .hero-content { padding-block: 70px 120px; }
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 88px 0; }
  .hero-actions, .footer-bottom { flex-direction: column; align-items: stretch; }
  .button, .button-footer { width: 100%; }
  .feature-grid, .process-grid { grid-template-columns: 1fr; }
  .feature-card, .service-card, .process-card, .contact-card { padding-inline: 22px; }
  .map-frame, .map-frame iframe, .media-frame img { min-height: 320px; }
  .scroll-indicator { bottom: 18px; font-size: 0.85rem; }
}

/* Standalone modern overrides */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #18212c;
  --text-soft: #617184;
  --brand: #0f253b;
  --brand-soft: #183753;
  --gold: #c9a962;
  --gold-dark: #b38c3f;
  --line: rgba(24, 33, 44, 0.1);
  --shadow-sm: 0 18px 40px rgba(19, 34, 53, 0.06);
  --shadow-md: 0 30px 70px rgba(19, 34, 53, 0.1);
  --radius: 24px;
  --container: 1240px;
  --header-height: 72px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(201, 169, 98, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  color: var(--text);
}

.container { width: min(calc(100% - 48px), var(--container)); }

.site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(24, 33, 44, 0.08);
  box-shadow: 0 14px 34px rgba(19, 34, 53, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  gap: 24px;
}

.brand img {
  max-width: min(54vw, 300px);
  height: clamp(36px, 4vw, 52px);
  filter: none;
}

.site-nav { gap: 28px; }

.site-nav > a:not(.button) {
  color: var(--brand);
  text-shadow: none;
  font-weight: 600;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible { color: var(--gold-dark); }

.menu-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.menu-toggle span { background: var(--brand); }

.button {
  min-height: 54px;
  border-radius: 16px;
  font-weight: 700;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold), #d4b26d);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(201, 169, 98, 0.24);
}

.button-gold:hover,
.button-gold:focus-visible { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(201, 169, 98, 0.34);
  background: #ffffff;
}

.button-nav,
.button-footer {
  min-height: 48px;
  padding-inline: 22px;
}

.hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-media { opacity: 0.16; }

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(201, 169, 98, 0.16), transparent 24%);
}

.hero-content { padding-block: 72px 84px; }

.hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 44, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
}

.hero-copy {
  max-width: none;
  padding: 0;
}

.eyebrow,
.section-pill {
  color: var(--brand);
  background: rgba(15, 37, 59, 0.05);
  border: 1px solid rgba(15, 37, 59, 0.08);
  font-weight: 600;
}

.section-pill.inverse {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow-dot { background: var(--gold); }

.hero h1,
.copy-block h2,
.section-heading h2,
.cta-content h2 {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.75rem);
  max-width: none;
}

.hero h1 span,
.copy-block h2 span,
.cta-content h2 span { color: var(--gold-dark); }

.hero-text,
.lead,
.section-heading p,
.cta-content p { font-size: clamp(1.05rem, 1.7vw, 1.22rem); }

.hero-text {
  max-width: 650px;
  color: var(--text-soft);
}

.hero-actions { margin-top: 34px; }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: stretch;
}

.hero-metrics article {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 44, 0.08);
}

.hero-metrics strong,
.mini-card strong,
.utility-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
}

.hero-metrics span,
.mini-card span,
.utility-card p,
.feature-card p,
.service-card p,
.process-card p,
.stack-item p,
.copy-block p,
.section-heading p,
.contact-card strong,
.footer-brand p,
.footer-links a,
.stats-grid span,
.contact-label { color: var(--text-soft); }

.panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dark);
}

.hero-panel h2 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--brand);
}

.hero-panel-list,
.stack-list { display: grid; gap: 16px; }

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(24, 33, 44, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mini-card:hover,
.mini-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.28);
  box-shadow: var(--shadow-sm);
}

.hero-panel-note {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 37, 59, 0.96), rgba(24, 55, 83, 0.96));
  color: #ffffff;
}

.hero-panel-note strong,
.hero-panel-note span { display: block; }

.hero-panel-note span { color: rgba(255, 255, 255, 0.78); }

.section { padding: 104px 0; }

.section-soft { background: var(--surface-gradient); }

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(201, 169, 98, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f8fa 0%, #eef2f6 100%);
  color: var(--text);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--brand);
}

.utility-grid,
.service-grid,
.process-grid,
.stats-grid,
.footer-grid,
.contact-grid,
.stack-list {
  display: grid;
  gap: 24px;
}

.utility-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.utility-card,
.service-card,
.process-card,
.contact-card,
.stack-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.utility-card,
.service-card,
.process-card { padding: 30px 28px; }

.utility-card,
.service-card,
.process-card,
.contact-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.utility-card:hover,
.service-card:hover,
.process-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-md);
}

.utility-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--gold-dark);
  font-weight: 700;
}

.icon-badge {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.16), rgba(201, 169, 98, 0.04));
  box-shadow: inset 0 0 0 1px rgba(201, 169, 98, 0.14);
}

.icon-badge.small {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.icon-badge.light {
  background: rgba(15, 37, 59, 0.06);
  color: var(--brand);
}

.split {
  gap: 68px;
  align-items: center;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: auto 16px -16px auto;
  width: 140px;
  height: 140px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.24), rgba(201, 169, 98, 0));
}

.media-frame img {
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.copy-block h2 { color: var(--brand); }

.copy-block .lead { color: var(--brand-soft); }

.check-list li { color: var(--text); }

.check-list li::before {
  width: 18px;
  height: 18px;
  background: rgba(201, 169, 98, 0.16);
  border: 0;
}

.check-list li::after {
  left: 5px;
  top: 12px;
  border-left-color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.service-card h3,
.process-card h3 { color: var(--brand); }

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
}

.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.process-card { position: relative; padding-top: 44px; }

.step-number {
  top: 18px;
  right: 20px;
  width: auto;
  min-width: 44px;
  height: 32px;
  padding-inline: 12px;
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.16);
  color: var(--gold-dark);
}

.cta-section { padding: 112px 0; }

.cta-media { opacity: 0.12; }

.cta-overlay {
  background:
    linear-gradient(135deg, rgba(15, 37, 59, 0.94), rgba(24, 55, 83, 0.92)),
    radial-gradient(circle at top left, rgba(201, 169, 98, 0.15), transparent 30%);
}

.cta-content h2 { color: #ffffff; }

.cta-content p { color: rgba(255, 255, 255, 0.78); }

.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 46px; }

.stats-grid article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid strong { color: #ffffff; }

.stats-grid span { color: rgba(255, 255, 255, 0.72); }

.contact-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }

.map-frame {
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
}

.contact-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(24, 33, 44, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  box-shadow: 0 14px 32px rgba(19, 34, 53, 0.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 169, 98, 0.28);
}

.back-to-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  line-height: 1;
}
.site-footer {
  background: linear-gradient(180deg, #10253a 0%, #0a1c2d 100%);
  padding-top: 76px;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  padding-bottom: 36px;
}

.footer-brand p { color: rgba(255, 255, 255, 0.72); }

.site-footer h4 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a { color: rgba(255, 255, 255, 0.8); }

.footer-links a:hover,
.footer-links a:focus-visible,
.social-link:hover,
.social-link:focus-visible { color: #ffffff; }

.social-link { color: rgba(255, 255, 255, 0.76); }

.footer-bottom {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p { color: rgba(255, 255, 255, 0.66); }

@media (max-width: 1180px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .split-heading { grid-template-columns: 1fr; }

  .utility-grid,
  .service-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero h1 { max-width: 14ch; }
  .hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --header-height: 68px; }

  .site-nav {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
  }

  .hero-content { padding-block: 56px 80px; }

  .hero-metrics,
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }

  .section { padding: 84px 0; }

  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }

  .utility-grid,
  .service-grid,
  .process-grid { grid-template-columns: 1fr; }

  .hero-grid { padding: 22px; }

  .hero-copy,
  .utility-card,
  .service-card,
  .process-card,
  .contact-card { padding-inline: 22px; }
}

/* Hero refinements */
.hero {
  min-height: auto;
  padding-top: var(--header-height);
  padding-bottom: 28px;
  background: var(--surface-gradient);
}

.hero-media {
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(18, 28, 38, 0.34)),
    radial-gradient(circle at top right, rgba(201, 169, 98, 0.12), transparent 26%);
}

.hero-shell {
  border: 1px solid rgba(15, 37, 59, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(234, 234, 234, 0.9)),
    linear-gradient(180deg, rgba(201, 169, 98, 0.05), transparent 42%);
  box-shadow: 0 24px 60px rgba(18, 34, 52, 0.08);
}

.hero-shell::before {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14), transparent 72%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.95fr);
  gap: 24px;
}

.hero-copy {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.42));
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow {
  color: var(--brand);
  background: rgba(15, 37, 59, 0.05);
  border-color: rgba(15, 37, 59, 0.08);
}

.hero h1 {
  color: var(--brand);
  font-size: 45px;
  max-width: none;
}

.hero-text {
  color: #556579;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 30px;
}

.hero-metrics {
  align-content: start;
}

.hero-metrics article {
  min-height: 158px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(18, 34, 52, 0.04);
}

.hero-metrics strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-metrics span {
  color: #66768a;
}

@media (max-width: 1180px) {
  .hero {
    padding-bottom: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--header-height) - 4px);
  }

  .hero-shell {
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-metrics article {
    min-height: auto;
  }
}

.portal-hero {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: 36px;
}

.portal-title {
  margin: 18px 0;
  color: var(--brand);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-family: Georgia, 'Times New Roman', serif;
}

.portal-title span {
  color: var(--gold-dark);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portal-category {
  padding: 30px 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.portal-category h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 1.45rem;
}

.portal-links {
  display: grid;
  gap: 14px;
}

.portal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.portal-link:hover,
.portal-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-sm);
}

.portal-link span:first-child {
  font-weight: 700;
  color: var(--brand);
}

.portal-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portal-grid,
  .portal-support-grid {
    grid-template-columns: 1fr;
  }
}

.certificate-hero {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: 28px;
}

.certificate-side-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certificate-card {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 640px) {
  .certificate-side-grid {
    grid-template-columns: 1fr;
  }
}

.blog-hero {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: 28px;
}
.blog-highlights-section {
  position: relative;
}
.blog-highlights-heading-copy {
  display: grid;
  justify-items: end;
  gap: 18px;
}
.blog-highlights-heading-copy p {
  margin: 0;
  max-width: 540px;
}
.blog-highlights-top-link {
  min-height: 48px;
  padding-inline: 24px;
}
.blog-highlights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}
.blog-highlight-featured,
.blog-highlight-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.blog-highlight-featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 38px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(201, 169, 98, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.94));
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.blog-highlight-label {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-highlight-featured h3,
.blog-highlight-card h3 {
  margin: 0;
  color: var(--brand);
  line-height: 1.14;
  font-family: Georgia, 'Times New Roman', serif;
}
.blog-highlight-featured h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.85rem);
}
.blog-highlight-excerpt,
.blog-highlight-card p {
  color: var(--text-soft);
}
.blog-highlight-excerpt {
  margin: 0 0 28px;
  font-size: 1.06rem;
}
.blog-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.blog-highlight-stack {
  display: grid;
  gap: 20px;
}
.blog-highlight-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px 24px 22px;
  border-radius: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.blog-highlight-card:hover,
.blog-highlight-featured:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-md);
}
.blog-highlight-card h3 {
  font-size: 1.28rem;
}
.blog-highlight-card p {
  margin: 0;
  font-size: 0.98rem;
}
.blog-highlight-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 33, 44, 0.08);
  color: var(--brand);
  font-weight: 700;
}
.blog-highlight-link span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.14);
  color: var(--gold-dark);
  font-size: 1.1rem;
  line-height: 1;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
}

.post-entry {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.post-entry:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.28);
  box-shadow: var(--shadow-md);
}

.post-meta {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-entry h2 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 1.8rem;
  line-height: 1.2;
}

.post-excerpt {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.blog-read-more {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.95rem;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget-box {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 700;
}

.widget-title svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
}

.search-wrapper {
  position: relative;
}

.search-wrapper input {
  width: 100%;
  padding: 14px 18px;
  padding-right: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.search-wrapper button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.cal-day.active {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold-dark);
}

.cal-day.is-empty {
  border-style: dashed;
  background: transparent;
  pointer-events: none;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.calendar-nav {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
}

.calendar-clear {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-decoration: none;
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    order: -1;
  }
}

.post-detail {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.post-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.post-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-category-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.14);
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.post-detail-content {
  color: var(--text);
  line-height: 1.8;
}

.post-detail-content > *:first-child {
  margin-top: 0;
}

.post-detail-content h2,
.post-detail-content h3,
.post-detail-content h4 {
  color: var(--brand);
  line-height: 1.2;
}

.post-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.blog-shortcode-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin: 28px 0;
}

.blog-shortcode-column {
  min-width: 0;
}

.blog-shortcode-column.is-full {
  grid-column: 1 / -1;
}

.blog-shortcode-column.is-half,
.blog-shortcode-column.is-third,
.blog-shortcode-column.is-two-thirds,
.blog-shortcode-column.is-quarter,
.blog-shortcode-column.is-three-quarters {
  grid-column: span 1;
}

.blog-shortcode-text > *:first-child {
  margin-top: 0;
}

.blog-shortcode-text > *:last-child {
  margin-bottom: 0;
}

.blog-shortcode-image {
  margin: 0;
}

.blog-shortcode-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.post-detail-content a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.post-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .post-detail {
    padding: 24px 22px;
  }

  .blog-shortcode-row {
    grid-template-columns: 1fr;
  }

  .post-detail-actions {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .blog-highlights-grid {
    grid-template-columns: 1fr;
  }

  .blog-highlight-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-highlights-heading-copy {
    justify-items: start;
  }

  .blog-highlight-featured {
    padding: 28px 22px;
  }

  .blog-highlight-actions {
    flex-direction: column;
  }

  .blog-highlight-stack {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}.blog-highlights-lazy-shell {
  min-height: 720px;
}

.blog-highlights-loading {
  position: relative;
}

.blog-highlight-skeleton {
  pointer-events: none;
}

.skeleton-line,
.skeleton-button,
.blog-highlight-plus-placeholder {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 37, 59, 0.08), rgba(201, 169, 98, 0.2), rgba(15, 37, 59, 0.08));
  background-size: 200% 100%;
  animation: blogSkeletonPulse 1.4s ease-in-out infinite;
}

.skeleton-line {
  width: 100%;
  height: 14px;
}

.skeleton-line-short {
  width: 96px;
}

.skeleton-line-medium {
  width: 160px;
}

.skeleton-line-title {
  height: 30px;
}

.skeleton-line-card-title {
  height: 22px;
}

.skeleton-line-wide {
  width: 82%;
}

.skeleton-button {
  width: 160px;
  min-height: 54px;
}

.skeleton-button-secondary {
  width: 172px;
}

.blog-highlight-plus-placeholder {
  width: 28px;
  height: 28px;
}

@keyframes blogSkeletonPulse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

