:root {
  --bg: #f6f0e8;
  --bg-soft: #efe4d5;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fffaf3;
  --surface-dark: #0d1926;
  --surface-dark-2: #132436;
  --surface-dark-3: #1c3147;
  --text: #17120d;
  --text-muted: #5c5247;
  --text-soft: #877a6d;
  --line: rgba(23, 18, 13, 0.09);
  --line-strong: rgba(23, 18, 13, 0.16);
  --gold: #b58b52;
  --gold-2: #d3ab73;
  --gold-soft: rgba(181, 139, 82, 0.16);
  --navy-soft: rgba(13, 25, 38, 0.08);
  --font-sans: "Manrope", "Aptos", "Segoe UI", sans-serif;
  --font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", serif;
  --max-width: 1180px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --shadow-sm: 0 16px 34px rgba(17, 20, 24, 0.05);
  --shadow-md: 0 28px 70px rgba(12, 17, 24, 0.1);
  --shadow-lg: 0 42px 120px rgba(9, 13, 17, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 6rem;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% 5%, rgba(181, 139, 82, 0.18), transparent 24%),
    radial-gradient(circle at 10% 15%, rgba(13, 25, 38, 0.08), transparent 22%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 40%, #f9f4ed 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "kern" 1;
}

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

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

p,
ul,
ol,
blockquote {
  margin: 0;
}

strong {
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.85rem 1rem;
  background: var(--surface-dark);
  color: #fff7e7;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  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(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.4rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.8rem;
  }
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, #f2e8dc 0%, #ede1d1 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(23, 18, 13, 0.05);
}

.section-narrow .container {
  max-width: 48rem;
}

.section-label,
.eyebrow,
.overline {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-header {
  max-width: 44rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.section-header h2,
.page-hero-title,
.article-header h1,
.profile-title,
.founder-strip-name,
.newsletter-title,
.resource-banner h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 12ch;
}

.section-header p,
.page-intro,
.profile-summary {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.section-header p {
  margin-top: 1rem;
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.page-intro {
  margin-top: 1rem;
}

main p a:not(.btn),
main li a:not(.btn),
.article-body a,
.legal-inner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

main p a:not(.btn):hover,
main li a:not(.btn):hover,
.article-body a:hover,
.legal-inner a:hover {
  color: #8e6532;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  background: rgba(250, 246, 239, 0.82);
  border-bottom: 1px solid rgba(23, 18, 13, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.site-header.is-scrolled {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 16px 40px rgba(17, 17, 17, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img,
.footer-logo-img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  padding: 0.22rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 18, 13, 0.08);
}

.logo-wordmark,
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .logo-wordmark {
    display: none;
  }
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 18, 13, 0.08);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(84vw, 22rem);
  height: 100dvh;
  margin: 0;
  padding: 6.4rem 1.5rem 2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(252, 248, 242, 0.98);
  border-left: 1px solid rgba(23, 18, 13, 0.08);
  box-shadow: -12px 0 36px rgba(13, 17, 21, 0.12);
  transition: right 0.28s var(--ease);
  overflow-y: auto;
  z-index: 90;
}

.nav-links.nav-open {
  right: 0;
}

.nav-links a:not(.btn) {
  display: block;
  padding: 0.95rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(23, 18, 13, 0.06);
}

.nav-links a[aria-current="page"],
.nav-links a:not(.btn):hover {
  color: var(--gold);
}

.nav-cta-item {
  margin-top: 1rem;
}

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

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.35);
  z-index: 70;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-backdrop {
  display: block;
}

@media (min-width: 769px) {
  .nav-toggle,
  .nav-backdrop {
    display: none !important;
  }

  body.nav-open {
    overflow: auto;
  }

  .nav-links {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    overflow: visible;
  }

  .nav-links a:not(.btn) {
    display: inline-block;
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
  }

  .nav-links a:not(.btn):hover,
  .nav-links a[aria-current="page"] {
    border-bottom-color: rgba(181, 139, 82, 0.35);
  }

  .nav-cta-item {
    margin-top: 0;
    margin-left: 0.4rem;
  }

  .nav-cta-item .btn {
    width: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  background: linear-gradient(135deg, var(--gold-2) 0%, #a77b41 100%);
  color: #fff8ea;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(132, 92, 35, 0.18);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 24px 48px rgba(132, 92, 35, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  border-color: rgba(23, 18, 13, 0.14);
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.hero .btn-ghost {
  background: transparent;
  color: #f9f1e6;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero .btn-ghost:hover {
  color: #fff8ea;
  background: rgba(255, 255, 255, 0.06);
}

.btn-small {
  min-height: 2.4rem;
  padding: 0.65rem 1rem;
  font-size: 0.74rem;
}

.btn-full-width {
  width: 100%;
}

.btn-nav-cta {
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.7rem;
}

.breadcrumb {
  padding-top: 1rem;
  padding-bottom: 0;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a,
.breadcrumb-sep {
  color: inherit;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
  background:
    linear-gradient(110deg, rgba(10, 17, 26, 0.96) 0%, rgba(13, 25, 38, 0.94) 40%, rgba(18, 37, 55, 0.76) 72%, rgba(18, 37, 55, 0.58) 100%),
    url("/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 171, 115, 0.7), transparent);
}

.hero-grid,
.page-hero-shell,
.profile-shell,
.contact-shell,
.founder-strip-shell,
.signature-case,
.resource-banner,
.case-study,
.card,
.proof-card,
.principle,
.step,
.engagement-card,
.icp-item,
.faq-item,
.insight-card,
.quote-card,
.contact-card,
.sectors-hub-card,
.checklist-group,
.sector-card,
.profile-fact,
.page-hero-aside {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    align-items: stretch;
    gap: 2rem;
  }
}

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

.hero-copy {
  max-width: 46rem;
}

.hero-overline {
  margin-bottom: 1rem;
  color: rgba(255, 245, 226, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #f9f1e6;
}

.hero-kicker,
.hero-context,
.hero-meta {
  max-width: 38rem;
}

.hero-kicker {
  margin-top: 1.25rem;
  color: rgba(249, 241, 230, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.hero-context {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(211, 171, 115, 0.42);
  color: rgba(236, 226, 211, 0.76);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-seals,
.page-hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-seal,
.page-hero-seal {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(249, 241, 230, 0.88);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero-seal {
  border-color: rgba(23, 18, 13, 0.08);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text-muted);
}

.hero-panel {
  align-self: stretch;
}

.hero-panel-inner,
.page-hero-aside {
  height: 100%;
  padding: clamp(1.3rem, 4vw, 2rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(241, 230, 214, 0.9));
  box-shadow: var(--shadow-lg);
}

.hero-panel-inner h2,
.page-hero-aside .page-hero-stat-value,
.signature-case-title,
.card h3,
.step h3,
.principle h3,
.engagement-card h3,
.case-study h3,
.card-form-title,
.checklist-group-title,
.resource-banner h3,
.article-cta-title,
.prose-title,
.sector-card-title,
.sectors-cross-title,
.work-preview-title,
.newsletter-title {
  font-family: var(--font-serif);
}

.hero-panel-inner h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.05;
}

.hero-list,
.page-hero-list,
.card ul,
.fit-list,
.diff-list,
.founder-strip-creds,
.article-cta-list,
.checklist-items,
.sectors-cross-list {
  padding: 0;
  list-style: none;
}

.hero-list,
.page-hero-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-list li,
.page-hero-list li,
.card ul li,
.fit-list li,
.diff-list li,
.article-cta-list li,
.sectors-cross-list li {
  position: relative;
  padding-left: 1rem;
}

.hero-list li::before,
.page-hero-list li::before,
.card ul li::before,
.fit-list li::before,
.diff-list li::before,
.article-cta-list li::before,
.sectors-cross-list li::before,
.founder-strip-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-note {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(13, 25, 38, 0.05);
  border: 1px solid rgba(13, 25, 38, 0.08);
  color: var(--text-muted);
}

.proof-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.proof-card,
.card,
.principle,
.step,
.engagement-card,
.icp-item,
.faq-item,
.insight-card,
.quote-card,
.contact-card,
.sectors-hub-card,
.checklist-group,
.sector-card,
.profile-fact,
.signature-case,
.case-study,
.page-hero-shell,
.profile-shell,
.contact-shell,
.founder-strip-shell {
  border: 1px solid rgba(23, 18, 13, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 232, 0.84));
  box-shadow: var(--shadow-md);
}

.proof-card {
  padding: 1.4rem;
}

.proof-value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  color: var(--surface-dark);
}

.proof-title {
  margin-top: 0.9rem;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  font-weight: 500;
}

.proof-copy {
  margin-top: 0.7rem;
  color: var(--text-muted);
}

.signature-case {
  overflow: hidden;
}

.signature-case-grid {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

@media (min-width: 900px) {
  .signature-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.signature-case-block {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 18, 13, 0.06);
}

.signature-case-title {
  margin-top: 0.55rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.signature-case-block p + p {
  margin-top: 0.7rem;
  color: var(--text-muted);
}

.signature-case-quote,
.case-client-quote {
  padding: 1.4rem;
  border-top: 1px solid rgba(23, 18, 13, 0.06);
  background: rgba(13, 25, 38, 0.03);
}

.signature-case-quote p,
.case-client-quote p,
.quote-card blockquote {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.signature-case-quote footer,
.case-client-quote footer,
.quote-card footer {
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.cards-grid,
.principles-grid,
.steps-grid,
.engagement-grid,
.icp-grid,
.faq-grid,
.insights-grid,
.sectors-grid,
.work-preview-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cards-grid,
  .principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

@media (min-width: 1024px) {
  .icp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

.card,
.principle,
.step,
.engagement-card,
.icp-item,
.faq-item,
.insight-card,
.quote-card,
.contact-card,
.checklist-group,
.sector-card,
.profile-fact {
  padding: 1.4rem;
}

.card h3,
.principle h3,
.step h3,
.engagement-card h3,
.card-form-title,
.sector-card-title,
.checklist-group-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.card p,
.principle p,
.step p,
.engagement-card p,
.sector-card p,
.checklist-group-desc,
.faq-answer-inner,
.work-preview-card p:last-child {
  margin-top: 0.8rem;
  color: var(--text-muted);
}

.card ul,
.fit-list,
.diff-list,
.article-cta-list,
.sectors-cross-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  color: var(--text-muted);
}

.principle-icon,
.step-number,
.case-label,
.page-hero-aside-label,
.work-preview-meta,
.insight-date,
.profile-fact-label,
.trust-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step-number {
  margin-bottom: 1rem;
}

.prose-block {
  max-width: 44rem;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(181, 139, 82, 0.4);
}

.prose-title {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.prose-block p {
  color: var(--text-muted);
}

.page-hero-shell {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  overflow: hidden;
  position: relative;
}

.page-hero-shell::before,
.profile-shell::before,
.contact-shell::before,
.founder-strip-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(181, 139, 82, 0.16), transparent 24%),
    linear-gradient(120deg, transparent 0%, transparent 62%, rgba(13, 25, 38, 0.03) 100%);
  pointer-events: none;
}

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

@media (min-width: 980px) {
  .page-hero-shell {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.88fr);
    align-items: start;
  }
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.page-hero-aside {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(13, 25, 38, 0.96), rgba(19, 36, 54, 0.94));
  color: rgba(245, 236, 224, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
}

.page-hero-list {
  color: rgba(245, 236, 224, 0.82);
}

.page-hero-stat-grid {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 640px) {
  .page-hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .page-hero-stat-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero-stat {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.page-hero-stat-value {
  display: block;
  color: #fff6e7;
  font-size: 1.35rem;
  line-height: 1.05;
  font-weight: 500;
}

.page-hero-stat-label {
  display: block;
  margin-top: 0.3rem;
  color: rgba(235, 226, 212, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.case-study {
  overflow: hidden;
}

.case-study-header {
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(23, 18, 13, 0.06);
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.case-tag {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.case-study-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1rem 1.4rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.case-study-meta-row span {
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 18, 13, 0.05);
}

.case-study-narrative {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.4rem 1.4rem;
}

@media (min-width: 900px) {
  .case-study-narrative {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.case-narrative-block {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 18, 13, 0.06);
}

.case-narrative-block p {
  margin-top: 0.7rem;
  color: var(--text-muted);
}

.founder-strip-shell {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
}

@media (min-width: 980px) {
  .founder-strip-shell {
    grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.82fr);
    align-items: start;
  }
}

.founder-strip-intro {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .founder-strip-intro {
    flex-direction: row;
    align-items: center;
  }
}

.founder-strip-photo {
  width: 148px;
  height: 176px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.14);
}

.founder-strip-copy {
  max-width: 28rem;
}

.founder-strip-name {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.founder-strip-role {
  margin-top: 0.55rem;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-strip-summary {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.founder-strip-details {
  position: relative;
  z-index: 1;
  padding-top: 0.6rem;
}

@media (min-width: 980px) {
  .founder-strip-details {
    padding-left: 1.4rem;
    border-left: 1px solid rgba(23, 18, 13, 0.08);
  }
}

.founder-strip-creds {
  display: grid;
  gap: 0.85rem;
  color: var(--text-muted);
}

.founder-strip-link {
  margin-top: 1rem;
}

.insight-card {
  display: flex;
  flex-direction: column;
}

.insight-date {
  margin-bottom: 0.9rem;
}

.insight-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.18;
}

.insight-card p {
  margin-top: 0.8rem;
  color: var(--text-muted);
}

.profile-shell {
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
}

@media (min-width: 980px) {
  .profile-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: start;
  }
}

.profile-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 720px) {
  .profile-grid {
    grid-template-columns: minmax(220px, 320px) 1fr;
    align-items: start;
  }
}

.profile-photo-wrap {
  position: relative;
  aspect-ratio: 0.92;
  max-width: 320px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 60px rgba(13, 17, 21, 0.16);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.profile-role {
  display: block;
  margin-top: 0.7rem;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-bio {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  color: var(--text-muted);
}

.profile-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.profile-facts {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.profile-fact-value {
  display: block;
  color: var(--text);
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 0;
  padding: 0;
}

.credentials-list li {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.different-grid {
  display: grid;
  gap: 1.3rem;
}

@media (min-width: 900px) {
  .different-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    align-items: start;
  }
}

.diff-list {
  display: grid;
  gap: 0.95rem;
  color: var(--text-muted);
}

.section-contact {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.contact-shell {
  padding: clamp(1.5rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 980px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
    align-items: start;
  }
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0;
  color: var(--text-muted);
}

.contact-details a {
  color: var(--gold);
}

.contact-booking-stack {
  display: grid;
  gap: 1rem;
}

.form-intro,
.contact-response-note,
.form-hint {
  color: var(--text-muted);
}

.section-sub-title {
  margin: 1.5rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.1;
}

.expect-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0;
}

.expect-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(23, 18, 13, 0.08);
}

.expect-list li:last-child {
  border-bottom: 0;
}

.expect-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(181, 139, 82, 0.25);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(23, 18, 13, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

textarea {
  resize: vertical;
  min-height: 8rem;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23877a6d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(181, 139, 82, 0.56);
  box-shadow: 0 0 0 4px rgba(181, 139, 82, 0.12);
  outline: none;
}

.booking-embed {
  margin-top: 1rem;
}

.card-form-title {
  font-size: 1.55rem;
  font-weight: 500;
}

.quote-card {
  margin-top: 1rem;
}

.quote-context {
  color: var(--text-soft);
}

.faq-item {
  overflow: hidden;
}

.section-faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.faq-item.is-open {
  border-color: rgba(181, 139, 82, 0.28);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  color: var(--gold);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s var(--ease);
}

.faq-answer-inner {
  padding: 0 1.35rem 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }
}

.article-header {
  padding: clamp(3.4rem, 6vw, 5rem) 0 1.6rem;
}

.article-meta {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.article-body {
  max-width: 46rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.article-body > * + * {
  margin-top: 1rem;
}

.article-body h2 {
  margin-top: 2.2rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.article-body h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.article-body ul,
.article-body ol {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.article-body blockquote {
  padding: 1.3rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 18, 13, 0.08);
  box-shadow: var(--shadow-sm);
}

.article-cta {
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  border-radius: 24px;
  background: rgba(13, 25, 38, 0.04);
  border: 1px solid rgba(23, 18, 13, 0.08);
}

.article-cta-title {
  font-size: 1.4rem;
  font-weight: 500;
}

.article-cta-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.article-cta-note {
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.sectors-hub-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

@media (min-width: 900px) {
  .sectors-hub-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sectors-hub-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.3rem 1.35rem;
}

.sectors-hub-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.sectors-hub-desc {
  color: var(--text-muted);
}

.sector-card {
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-2), rgba(19, 36, 54, 0.4));
}

.sectors-footnote {
  margin-top: 1.4rem;
  max-width: 44rem;
  color: var(--text-muted);
}

.sectors-cross {
  margin-top: 1.4rem;
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.sectors-cross-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--text-muted);
}

.checklist-group + .checklist-group {
  margin-top: 1rem;
}

.checklist-group-title {
  font-size: 1.45rem;
}

.checklist-group-desc {
  margin-top: 0.75rem;
}

.checklist-items {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--text-muted);
}

.checklist-items li {
  position: relative;
  padding-left: 1rem;
}

.checklist-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.section-legal {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.legal-inner {
  max-width: 48rem;
}

.legal-inner h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.legal-inner h2 {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.legal-inner p,
.legal-inner li {
  color: var(--text-muted);
  margin-top: 0.9rem;
}

.legal-inner ul,
.legal-inner ol {
  padding-left: 1.2rem;
}

.legal-effective,
.legal-meta {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.legal-cross {
  margin-top: 2rem;
}

.resource-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  background: linear-gradient(135deg, rgba(13, 25, 38, 0.97) 0%, rgba(19, 36, 54, 0.95) 44%, rgba(14, 27, 40, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.resource-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 12%, rgba(211, 171, 115, 0.2), transparent 28%);
  pointer-events: none;
}

.resource-banner-copy,
.resource-banner > .btn {
  position: relative;
  z-index: 1;
}

.resource-banner h3 {
  color: #fbf2e5;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.resource-banner p {
  margin-top: 0.8rem;
  max-width: 42rem;
  color: rgba(235, 226, 212, 0.8);
}

.resource-banner .btn-ghost {
  color: #fbf2e5;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

@media (min-width: 720px) {
  .resource-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.newsletter-strip {
  padding: clamp(2.2rem, 5vw, 3rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 25, 38, 0.98), rgba(10, 19, 30, 0.98));
}

.newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 860px) {
  .newsletter-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.newsletter-title {
  color: #fbf2e5;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.newsletter-desc,
.newsletter-priority-note,
.footer-tagline,
.footer-nav a,
.footer-entity,
.footer-legal p,
.footer-legal-links a,
.footer-meta small,
.back-top {
  color: rgba(223, 213, 197, 0.72);
}

.newsletter-desc,
.newsletter-priority-note {
  margin-top: 0.75rem;
  max-width: 40rem;
}

.newsletter-priority-note a {
  color: var(--gold-2);
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.newsletter-strip .btn-ghost {
  color: #fbf2e5;
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
}

.newsletter-strip .btn-ghost:hover {
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  padding: 2rem 0 1.5rem;
  background: #09111a;
}

.footer-inner {
  display: grid;
  gap: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-nav,
.footer-legal-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.footer-legal {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-entity-name {
  color: #fbf2e5;
}

.footer-meta {
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav a:hover,
.footer-legal-links a:hover,
.back-top:hover,
.newsletter-priority-note a:hover {
  color: var(--gold-2);
}

.footer-logo {
  color: #fbf2e5;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 75;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #128c7e;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.wa-icon {
  width: 1.4rem;
  height: 1.4rem;
  background: currentColor;
  color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
}

.wa-text {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.46s ease, transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.u-mt-2xl {
  margin-top: 3rem;
}

.u-ml-sm {
  margin-left: 0.75rem;
}

@media (max-width: 639px) {
  .u-ml-sm {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

@media print {
  .site-header,
  .site-footer,
  .newsletter-strip,
  .whatsapp-fab {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .section {
    padding: 1.25rem 0;
  }
}
