:root {
  --background: #f9f8f3;
  --foreground: #0a1c3e;
  --card: #ffffff;
  --primary: #0a1c3e;
  --primary-fg: #f9f8f3;
  --secondary: #eeece4;
  --muted-fg: #4a5568;
  --gold: #c29b48;
  --border: #ded9cb;
  --input: #d9d3c3;
  --radius: 4px;
  --max: 1152px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection {
  background: rgba(194, 155, 72, 0.25);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   ACCESSIBILITY
   SKIP TO MAIN CONTENT
   ========================= */

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;

  padding: 12px 18px;

  border: 2px solid var(--gold);
  border-radius: var(--radius);

  background: var(--primary);
  color: var(--primary-fg);

  font-size: 14px;
  font-weight: 600;

  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(249, 248, 243, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.logo-sub {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-fg);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

.portal-link,
.mobile-portal {
  border: 0;
  background: none;
  color: var(--muted-fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.portal-link:hover {
  color: var(--gold);
}

.mobile-menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--primary);
}

/* =========================
   ICONS
   ========================= */

svg.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-sm {
  height: 40px;
  padding: 0 24px;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-outline {
  border-color: rgba(10, 28, 62, 0.2);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.full {
  width: 100%;
}

/* =========================
   HERO
   ========================= */

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.eyebrow.centered {
  justify-content: center;
}

.hero-section h1 {
  margin: 24px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.gold {
  color: var(--gold);
}

.hero-copy {
  max-width: 576px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-fg);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-fg);
  font-size: 14px;
  font-weight: 500;
}

.trust-tags .icon {
  color: var(--gold);
}

.hero-media {
  position: relative;
}

.image-frame {
  position: relative;
  margin-right: 16px;
}

.gold-frame {
  position: absolute;
  inset: 0;
  transform: translate(20px, 20px);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

.image-frame > img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px rgba(10, 28, 62, 0.2);
}

.retention-card {
  position: absolute;
  left: -8px;
  bottom: -28px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(10, 28, 62, 0.15);
}

/* =========================
   METRICS
   ========================= */

.stat-number {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
}

.stat-label {
  margin: 8px 0 0;
  color: var(--muted-fg);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.metric-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 0;
  padding-top: 48px;
  padding-bottom: 48px;
}

.metric {
  text-align: center;
}

/* =========================
   GENERAL SECTIONS
   ========================= */

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading.narrow {
  max-width: 672px;
}

.section-heading h2,
.diagnostic-grid h2 {
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.section-heading.center {
  max-width: 672px;
  margin: auto;
  text-align: center;
}

/* =========================
   PILLARS
   ========================= */

.pillars-grid {
  display: grid;
  gap: 40px;
  margin-top: 56px;
}

.pillar {
  border-top: 2px solid rgba(194, 155, 72, 0.7);
  padding-top: 32px;
}

.pillar-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  color: rgba(194, 155, 72, 0.5);
}

.pillar h3,
.service-card h3,
.process-step h3,
.missing-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 0;
}

.pillar p,
.service-card p,
.process-step > p:last-child {
  margin: 12px 0 0;
  color: var(--muted-fg);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   SERVICES
   ========================= */

.services-section {
  background: rgba(238, 236, 228, 0.6);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--gold);
}

.services-grid {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.service-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 18px 35px rgba(10, 28, 62, 0.15);
  transform: translateY(-4px);
}

.service-card:hover h3,
.service-card:hover > a {
  color: var(--primary-fg);
}

.service-card:hover p,
.service-card:hover li {
  color: rgba(249, 248, 243, 0.78);
}

.service-card:hover > a {
  color: var(--gold);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(194, 155, 72, 0.15);
  color: var(--gold);
  font-size: 24px;
}

.featured-badge {
  position: absolute;
  left: 32px;
  top: -12px;
  padding: 4px 12px;
  border-radius: var(--radius);
  background: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-card ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-fg);
  font-size: 14px;
}

.service-card li .icon {
  color: var(--gold);
  margin-top: 2px;
  stroke-width: 2.5;
}

.service-card > a {
  margin-top: auto;
  padding-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* =========================
   PROCESS
   ========================= */

.process-wrap {
  position: relative;
  margin-top: 64px;
}

.process-line {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 1px;
  background: var(--border);
}

.process-grid {
  display: grid;
  gap: 48px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 48px;
  height: 48px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--background);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.step-meta {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.process-step h3 {
  margin-top: 8px;
}

/* =========================
   INSIGHTS
   ========================= */

.insights-section {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.insights-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

.missing-card {
  border: 1px solid var(--border);
  background: var(--background);
  padding: 28px;
  min-height: 260px;
}

.missing-kicker {
  color: var(--gold);
  font-size: 11px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.missing-card p {
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================
   DIAGNOSTIC / CONTACT
   ========================= */

.diagnostic-grid {
  display: grid;
  gap: 56px;
}

.diagnostic-copy {
  max-width: 544px;
  margin: 20px 0 0;
  color: var(--muted-fg);
  font-size: 18px;
  line-height: 1.7;
}

.contact-lines {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 16px;
}

.contact-lines li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-fg);
  font-size: 14px;
}

.contact-lines .icon {
  color: var(--gold);
}

blockquote {
  margin: 40px 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
}

blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: Inter, sans-serif;
  color: var(--muted-fg);
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* =========================
   FORM
   ========================= */

.form-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(10, 28, 62, 0.13);
}

form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-card label,
.form-card legend {
  display: grid;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.form-card label > span {
  color: var(--gold);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--input);
  background: white;
  color: var(--primary);
  border-radius: var(--radius);
  padding: 0 12px;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.form-card input,
.form-card select {
  height: 44px;
}

.form-card textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  box-shadow: 0 0 0 1px var(--gold);
  border-color: var(--gold);
}

.software-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.software-options button {
  height: 44px;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background: white;
  color: var(--muted-fg);
  font-size: 14px;
  font-weight: 500;
}

.software-options button.active {
  border-color: var(--gold);
  background: rgba(194, 155, 72, 0.1);
  color: var(--primary);
}

.form-note {
  text-align: center;
  margin: 0;
  color: var(--muted-fg);
  font-size: 12px;
}

.form-success {
  min-height: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(194, 155, 72, 0.15);
  color: var(--gold);
  font-size: 28px;
}

.form-success h3 {
  margin: 24px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.form-success p {
  max-width: 360px;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.6;
}

.form-success button {
  border: 0;
  background: none;
  color: var(--gold);
  font-weight: 600;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  gap: 48px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-grid > div:first-child > p {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(249, 248, 243, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid h3 {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.footer-grid ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-grid li,
.footer-grid a {
  color: rgba(249, 248, 243, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-portal {
  margin-top: 24px;
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(194, 155, 72, 0.6);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.footer-portal:hover {
  background: var(--gold);
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  gap: 12px;
}

.footer-contact .icon {
  color: var(--gold);
  margin-top: 2px;
  flex: none;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(249, 248, 243, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(249, 248, 243, 0.5);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

/* =========================
   FOOTER LEGAL LINKS
   Shared across all pages
   ========================= */

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
  font-size: 12px;
}

.footer-legal-links a {
  color: var(--muted-fg);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--gold);
}

/* =========================
   REVEAL ANIMATION
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* =========================
   MOBILE MENU / MODAL
   ========================= */

.mobile-sheet,
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-sheet.open,
.modal.open {
  pointer-events: auto;
  visibility: visible;
}

.sheet-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.25s;
}

.open .sheet-backdrop,
.open .modal-backdrop {
  opacity: 1;
}

.sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 88vw;
  height: 100%;
  padding: 26px 24px;
  background: var(--background);
  transform: translateX(100%);
  transition: 0.3s ease;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
}

.open .sheet-panel {
  transform: none;
}

.sheet-close,
.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--muted-fg);
}

.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  border-left: 2px solid transparent;
  padding: 12px 16px;
  color: var(--muted-fg);
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav a.active {
  border-color: var(--gold);
  color: var(--primary);
}

.mobile-portal-wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.mobile-portal {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
}

.sheet-panel > .btn {
  margin-top: 16px;
}

.modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(512px, calc(100% - 32px));
  transform: translate(-50%, -48%) scale(0.96);
  opacity: 0;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}

.modal.open .modal-card {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.modal-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
}

.modal-card p {
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (min-width: 640px) {
  .hero-section h1 {
    font-size: 60px;
  }

  .section-heading h2,
  .diagnostic-grid h2 {
    font-size: 48px;
  }

  .retention-card {
    left: -28px;
  }

  .form-card {
    padding: 40px;
  }

  .form-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }

  .software-options {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .pillars-grid,
  .process-grid,
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line {
    display: block;
  }

  .process-step {
    text-align: left;
  }

  .step-circle {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .desktop-nav,
  .header-actions {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    min-height: calc(100dvh - 76px);
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .image-frame {
    margin-right: 0;
  }

  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .diagnostic-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card {
    transition: none;
  }
}


/* =========================================================
   SERVICES PAGE
   ========================================================= */

/* Page hero */

.page-hero {
  background: var(--primary);
  color: var(--primary-fg);
}

.page-hero-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  max-width: 768px;
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--primary-fg);
}

.page-hero p {
  max-width: 672px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(249, 248, 243, 0.7);
}


/* =========================================================
   SERVICE DETAIL SECTIONS
   ========================================================= */

.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.service-detail {
  display: grid;
  align-items: center;
  gap: 48px;
}

.service-detail-image {
  position: relative;
}

.service-detail-frame {
  position: absolute;
  inset: 0;
  transform: translate(-16px, 16px);
  border: 2px solid rgba(194, 155, 72, 0.7);
  border-radius: var(--radius);
}

.service-detail-image img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(10, 28, 62, 0.16);
}

.service-detail-number {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: rgba(194, 155, 72, 0.5);
}

.service-detail-content h2 {
  margin: 16px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--primary);
}

.service-detail-intro {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(10, 28, 62, 0.8);
}

.service-detail-body {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-fg);
}

.service-deliverables {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-fg);
}

.service-deliverables .icon {
  margin-top: 2px;
  flex: none;
  color: var(--gold);
  stroke-width: 2.5;
}

.service-best-fit {
  margin: 28px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  color: var(--muted-fg);
}

.service-detail-link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s ease;
}

.service-detail-link:hover {
  color: var(--gold);
}


/* =========================================================
   ENGAGEMENT MODELS
   ========================================================= */

.engagement-section {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.engagement-grid {
  display: grid;
  gap: 40px;
  margin-top: 56px;
}

.engagement-card {
  padding-top: 32px;
  border-top: 2px solid rgba(194, 155, 72, 0.7);
}

.engagement-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.engagement-card h3 {
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary);
}

.engagement-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-fg);
}


/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  background: var(--primary);
  color: var(--primary-fg);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-copy {
  max-width: 672px;
}

.cta-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.cta-copy h2 {
  margin: 16px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-fg);
}

.cta-copy p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(249, 248, 243, 0.7);
}

.btn-gold {
  background: var(--gold);
  color: var(--primary);
}

.btn-gold:hover {
  filter: brightness(1.05);
}


/* =========================================================
   SERVICES RESPONSIVE
   ========================================================= */

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 48px;
  }

  .service-detail-content h2 {
    font-size: 36px;
  }

  .service-deliverables {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }

  .cta-copy h2 {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .engagement-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-hero-inner {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .service-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail.reverse .service-detail-image {
    order: 2;
  }

  .service-detail.reverse .service-detail-content {
    order: 1;
  }

  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* =========================================================
   COMPANY PAGE
   ========================================================= */

/* Founder story */

.company-story-grid {
  display: grid;
  align-items: center;
  gap: 56px;
}

.company-founder-image {
  position: relative;
}

.company-founder-frame {
  position: absolute;
  inset: 0;
  transform: translate(20px, 20px);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

.company-founder-image img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(10, 28, 62, 0.16);
}

.company-story-content h2 {
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--primary);
}

.company-story-copy {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.company-story-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-fg);
}

.company-quote {
  margin: 32px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.company-quote p:first-child {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary);
}

.company-quote-author {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-fg);
}


/* =========================================================
   COMPANY VALUES
   ========================================================= */

.company-values-section {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.company-values-grid {
  display: grid;
  gap: 48px;
  margin-top: 56px;
}

.company-value {
  padding-top: 28px;
  border-top: 2px solid rgba(194, 155, 72, 0.7);
}

.company-value h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}

.company-value p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-fg);
}


/* =========================================================
   OFFICE BAND
   ========================================================= */

.office-band {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.office-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 62, 0.55);
}

.office-band-content {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.office-band-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.office-band-text {
  max-width: 576px;
  margin: 16px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}


/* =========================================================
   COMPANY STATS
   ========================================================= */

.company-stats {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 0;
  padding-top: 56px;
  padding-bottom: 56px;
}

.company-stat {
  text-align: center;
}


/* =========================================================
   COMPANY RESPONSIVE
   ========================================================= */

@media (min-width: 640px) {
  .company-story-content h2 {
    font-size: 40px;
  }

  .office-band-text {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .company-values-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
  }
}

@media (min-width: 1024px) {
  .company-story-grid {
    grid-template-columns: 2fr 3fr;
  }

  .company-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================================
   INSIGHTS PAGE
   ========================================================= */

.insights-hero {
  background: var(--primary);
  color: var(--primary-fg);
}

.insights-hero-grid {
  display: grid;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.insights-hero h1 {
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.insights-hero-copy {
  max-width: 448px;
  margin: 24px 0 0;
  color: rgba(249, 248, 243, 0.7);
  font-size: 16px;
  line-height: 1.7;
}


/* Search */

.insights-search-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insights-search-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.insights-search-wrap {
  position: relative;
  margin-top: 16px;
}

.insights-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: rgba(249, 248, 243, 0.5);
  pointer-events: none;
}

.insights-search {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(249, 248, 243, 0.25);
  border-radius: 0;
  outline: 0;
  background: rgba(249, 248, 243, 0.05);
  padding: 0 20px 0 56px;
  color: var(--primary-fg);
  font-size: 16px;
}

.insights-search::placeholder {
  color: rgba(249, 248, 243, 0.4);
}

.insights-search:focus {
  border-color: var(--gold);
}

.insights-search-tip {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(249, 248, 243, 0.5);
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.insights-toolbar {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.insights-toolbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.insights-count {
  margin: 0;
  color: var(--muted-fg);
  font-size: 14px;
}

.insights-count strong {
  color: var(--primary);
}

.insights-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insights-filter-trigger {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.insights-sort {
  width: 170px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--background);
  padding: 0 36px 0 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  outline: 0;
}

.insights-sort:focus {
  border-color: var(--gold);
}


/* =========================================================
   MAIN INSIGHTS LAYOUT
   ========================================================= */

.insights-main {
  padding-top: 64px;
  padding-bottom: 64px;
}

.insights-layout {
  display: grid;
  gap: 40px;
}

.insights-sidebar {
  display: none;
}

.insights-sidebar-sticky {
  position: sticky;
  top: 112px;
}


/* =========================================================
   FILTER PANEL
   ========================================================= */

.filter-panel {
  background: var(--primary);
  padding: 24px;
  color: var(--primary-fg);
}

.filter-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filter-panel-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.filter-reset {
  display: none;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.filter-reset.visible {
  display: inline-flex;
}

.filter-reset:hover {
  opacity: 0.8;
}

.filter-groups {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.filter-group {
  padding-top: 20px;
  border-top: 1px solid rgba(249, 248, 243, 0.15);
}

.filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.filter-group-title {
  margin: 0;
  color: rgba(249, 248, 243, 0.8);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.filter-options {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.filter-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
}

.filter-checkbox {
  width: 16px;
  height: 16px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(249, 248, 243, 0.4);
  color: var(--primary);
}

.filter-checkbox svg {
  width: 12px;
  height: 12px;
  display: none;
}

.filter-option.active .filter-checkbox {
  border-color: var(--gold);
  background: var(--gold);
}

.filter-option.active .filter-checkbox svg {
  display: block;
}

.filter-option-label {
  color: rgba(249, 248, 243, 0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.filter-option:hover .filter-option-label,
.filter-option.active .filter-option-label {
  color: var(--primary-fg);
}

.filter-match-count {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(249, 248, 243, 0.15);
  color: rgba(249, 248, 243, 0.5);
  font-size: 12px;
}


/* =========================================================
   ARTICLE GRID
   ========================================================= */

.insights-grid-page {
  display: grid;
  gap: 24px;
}

.insight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--card);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.insight-card:hover {
  box-shadow: 0 10px 30px rgba(10, 28, 62, 0.1);
}

.insight-card-image {
  overflow: hidden;
}

.insight-card-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.03);
}

.insight-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.insight-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.insight-card-category {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.insight-card-read-time {
  color: var(--muted-fg);
  font-size: 12px;
}

.insight-card h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.insight-card:hover h2 {
  color: var(--gold);
}

.insight-card-excerpt {
  margin: 12px 0 0;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.65;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card-footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.insight-card-date {
  color: rgba(74, 85, 104, 0.8);
  font-size: 12px;
}

.insight-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.insight-card:hover .insight-read-link {
  color: var(--gold);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.insights-empty {
  display: none;
  min-height: 360px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 64px 24px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.insights-empty.visible {
  display: flex;
}

.insights-empty-icon {
  width: 32px;
  height: 32px;
  color: rgba(74, 85, 104, 0.4);
}

.insights-empty h2 {
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  color: var(--primary);
}

.insights-empty p {
  max-width: 384px;
  margin: 12px auto 0;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.6;
}

.insights-empty button {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}


/* =========================================================
   MISSING DATA MESSAGE
   ========================================================= */

.insights-data-note {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 48px 28px;
  text-align: center;
}

.insights-data-note h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  color: var(--primary);
}

.insights-data-note p {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   MOBILE FILTER DRAWER
   ========================================================= */

.insights-filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
}

.insights-filter-sheet.open {
  visibility: visible;
  pointer-events: auto;
}

.insights-filter-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.insights-filter-sheet.open .insights-filter-backdrop {
  opacity: 1;
}

.insights-filter-panel-mobile {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(340px, 90vw);
  overflow-y: auto;
  background: var(--background);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.insights-filter-sheet.open .insights-filter-panel-mobile {
  transform: translateX(0);
}

.mobile-filter-header {
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.mobile-filter-header strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--primary);
}

.mobile-filter-close {
  border: 0;
  background: transparent;
  color: var(--muted-fg);
  font-size: 26px;
}

.insights-filter-panel-mobile .filter-panel {
  min-height: calc(100% - 64px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 640px) {
  .insights-hero h1 {
    font-size: 48px;
  }

  .insights-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .insights-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .insights-hero h1 {
    font-size: 56px;
  }

  .insights-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .insights-sidebar {
    display: block;
  }

  .insights-filter-trigger {
    display: none;
  }

  .insights-grid-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */

.article-breadcrumb {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.article-breadcrumb-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-fg);
  font-size: 12px;
}

.article-breadcrumb a:hover {
  color: var(--primary);
}

.article-breadcrumb-current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--primary);
  font-weight: 500;
}

.article-breadcrumb-chevron {
  flex: none;
  width: 12px;
  height: 12px;
}


/* =========================================================
   ARTICLE HERO
   ========================================================= */

.article-hero {
  background: rgba(238, 236, 228, 0.4);
}

.article-hero-inner {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 24px;
}

.article-category {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.article-hero h1 {
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.article-deck {
  max-width: 672px;
  margin: 24px 0 0;
  color: var(--muted-fg);
  font-size: 18px;
  line-height: 1.7;
}

.article-meta-row {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.article-author-mini {
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-author-mini img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author-name {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.article-author-meta {
  margin: 4px 0 0;
  color: var(--muted-fg);
  font-size: 12px;
}

.article-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-action {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0 16px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  transition: 0.2s ease;
}

.article-action:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* =========================================================
   ARTICLE HERO IMAGE
   ========================================================= */

.article-image-wrap {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}


/* =========================================================
   EXECUTIVE SUMMARY
   ========================================================= */

.article-summary-section {
  background: rgba(238, 236, 228, 0.4);
}

.article-summary-wrap {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 24px;
}

.article-summary {
  border-top: 2px solid var(--gold);
  background: var(--card);
  padding: 32px;
}

.article-summary h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.article-summary-label {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.article-takeaways {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.article-takeaways li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(10, 28, 62, 0.85);
  font-size: 15px;
  line-height: 1.7;
}

.article-takeaways .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: none;
  color: var(--gold);
  stroke-width: 2.5;
}


/* =========================================================
   EDITORIAL LAYOUT
   ========================================================= */

.article-editorial {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
}

.article-editorial-grid {
  display: grid;
  gap: 48px;
}

.article-toc-desktop,
.article-context-sidebar {
  display: none;
}

.article-body {
  min-width: 0;
  max-width: 760px;
}


/* =========================================================
   TABLE OF CONTENTS
   ========================================================= */

.article-toc {
  position: relative;
}

.article-toc-title {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.article-toc ul {
  margin: 16px 0 0;
  padding: 0;
  border-left: 1px solid var(--border);
  list-style: none;
  display: grid;
  gap: 10px;
}

.article-toc button {
  width: 100%;
  display: block;
  margin-left: -1px;
  border: 0;
  border-left: 2px solid transparent;
  background: transparent;
  padding: 4px 0 4px 16px;
  text-align: left;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.4;
}

.article-toc button:hover {
  color: var(--primary);
}

.article-toc button.active {
  border-left-color: var(--gold);
  color: var(--primary);
  font-weight: 500;
}


/* Mobile TOC */

.article-mobile-toc {
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.article-mobile-toc-trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 0 20px;
  text-align: left;
}

.article-mobile-toc-trigger strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.article-mobile-toc-trigger span {
  color: var(--muted-fg);
  font-size: 14px;
}

.article-mobile-toc-content {
  display: none;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

.article-mobile-toc.open .article-mobile-toc-content {
  display: block;
}


/* =========================================================
   ARTICLE TYPOGRAPHY
   ========================================================= */

.article-content-h2 {
  scroll-margin-top: 112px;
  margin: 48px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
}

.article-content-h3 {
  margin: 32px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

.article-content-p {
  margin: 20px 0 0;
  color: rgba(10, 28, 62, 0.85);
  font-size: 17px;
  line-height: 1.75;
}

.article-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(10, 28, 62, 0.85);
  font-size: 17px;
  line-height: 1.7;
}

.article-list-bullet {
  width: 6px;
  height: 6px;
  margin-top: 10px;
  flex: none;
  background: var(--gold);
}

.article-numbered-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(10, 28, 62, 0.85);
  font-size: 17px;
  line-height: 1.7;
}

.article-number {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(194, 155, 72, 0.6);
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}


/* =========================================================
   CALLOUTS
   ========================================================= */

.article-callout {
  margin-top: 32px;
  border-left: 2px solid var(--gold);
  background: rgba(238, 236, 228, 0.5);
  padding: 20px 24px;
}

.article-callout-heading,
.article-example-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}

.article-callout-heading span,
.article-example-heading span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.article-callout p {
  margin: 12px 0 0;
  color: rgba(10, 28, 62, 0.85);
  font-size: 15px;
  line-height: 1.7;
}

.article-example {
  margin-top: 32px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 20px 24px;
}

.article-example-heading {
  color: var(--primary);
}

.article-example-heading .icon {
  color: var(--gold);
}

.article-example p {
  margin: 12px 0 0;
  color: var(--muted-fg);
  font-size: 15px;
  line-height: 1.7;
}

.article-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted-fg);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}


/* =========================================================
   ARTICLE TABLE
   ========================================================= */

.article-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border: 1px solid var(--border);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.article-table th {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(238, 236, 228, 0.6);
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-weight: 600;
}

.article-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted-fg);
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table td:first-child {
  color: var(--primary);
  font-weight: 500;
}


/* =========================================================
   SOURCES / DISCLAIMER
   ========================================================= */

.article-sources {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article-sources h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 20px;
}

.article-sources ol {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.article-sources li {
  display: flex;
  gap: 12px;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.6;
}

.article-source-number {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold);
  font-weight: 600;
}

.article-disclaimer {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  background: rgba(238, 236, 228, 0.4);
  padding: 20px 24px;
}

.article-disclaimer .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: none;
  color: var(--muted-fg);
}

.article-disclaimer p {
  margin: 0;
  color: var(--muted-fg);
  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   CONTEXT SIDEBAR
   ========================================================= */

.article-context-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.article-sidebar-label {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.article-sidebar-author-name {
  margin: 12px 0 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.article-sidebar-author-title {
  margin: 4px 0 0;
  color: var(--muted-fg);
  font-size: 12px;
  line-height: 1.6;
}

.article-sidebar-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-sidebar-links {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.article-sidebar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-fg);
  font-size: 14px;
}

.article-sidebar-links a:hover {
  color: var(--primary);
}

.article-sidebar-links .icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}


/* =========================================================
   FULL AUTHOR SECTION
   ========================================================= */

.article-author-section {
  border-top: 1px solid var(--border);
  background: rgba(238, 236, 228, 0.4);
}

.article-author-full {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  align-items: center;
  gap: 40px;
}

.article-author-full img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.article-author-full h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 30px;
  font-weight: 600;
}

.article-author-full-title {
  margin: 4px 0 0;
  color: var(--muted-fg);
  font-size: 14px;
  font-weight: 500;
}

.article-author-bio {
  margin: 20px 0 0;
  color: var(--muted-fg);
  font-size: 15px;
  line-height: 1.7;
}

.article-author-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.article-author-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.article-author-profile:hover {
  color: var(--gold);
}

.article-author-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-fg);
}


/* =========================================================
   RELATED INSIGHTS
   ========================================================= */

.article-related {
  padding-top: 80px;
  padding-bottom: 80px;
}

.article-related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.article-related-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 30px;
  font-weight: 600;
}

.article-related-grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}


/* =========================================================
   RELATED SERVICES
   ========================================================= */

.article-related-services {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.article-related-services-inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

.article-related-services-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.article-service-button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 0 24px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.article-service-button:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* =========================================================
   SHARE TOAST
   ========================================================= */

.article-copy-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 13px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.25s ease;
}

.article-copy-toast.visible {
  opacity: 1;
  transform: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 640px) {
  .article-hero h1 {
    font-size: 48px;
  }

  .article-summary {
    padding: 32px 40px;
  }

  .article-content-h2 {
    font-size: 30px;
  }

  .article-author-full {
    grid-template-columns: 200px minmax(0, 1fr);
  }
}

@media (min-width: 768px) {
  .article-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .article-hero-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .article-hero h1 {
    font-size: 52px;
  }

  .article-editorial-grid {
    grid-template-columns:
      200px
      minmax(0, 1fr)
      220px;
  }

  .article-toc-desktop,
  .article-context-sidebar {
    display: block;
  }

  .article-toc-desktop > div,
  .article-context-sidebar > div {
    position: sticky;
    top: 112px;
  }

  .article-mobile-toc {
    display: none;
  }
}


/* =========================================================
   PRINT
   ========================================================= */

@media print {
  .site-header,
  .site-footer,
  .article-breadcrumb,
  .article-actions,
  .article-toc-desktop,
  .article-context-sidebar,
  .article-mobile-toc,
  .article-related,
  .article-related-services,
  .cta-band,
  .article-author-actions {
    display: none !important;
  }

  body {
    background: white;
  }

  .article-editorial-grid {
    display: block;
  }

  .article-body {
    max-width: none;
  }

  .article-hero,
  .article-summary-section,
  .article-author-section {
    background: white;
  }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  gap: 48px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(194, 155, 72, 0.14);
  color: var(--gold);
  border-radius: var(--radius);
}

.contact-detail-icon .icon {
  width: 20px;
  height: 20px;
}

.contact-detail-copy h3 {
  margin: 0;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.contact-detail-copy p,
.contact-detail-copy a {
  margin: 6px 0 0;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.6;
}

.contact-detail-copy a:hover {
  color: var(--gold);
}


/* =========================================================
   WHAT HAPPENS NEXT
   ========================================================= */

.contact-next-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px;
}

.contact-next-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.contact-next-list {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.contact-next-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-next-number {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.contact-next-step h3 {
  margin: 2px 0 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.contact-next-step p {
  margin: 6px 0 0;
  color: var(--muted-fg);
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================================
   CONTACT FORM CARD
   ========================================================= */

/* =========================================================
   CONTACT FORM — ORIGINAL-STYLE FIX
   ========================================================= */

.contact-form-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(10, 28, 62, 0.13);
}

.contact-form-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.contact-form-intro {
  margin: 8px 0 0;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-intro span {
  color: var(--gold);
}


/* FORM */

.contact-form-card form {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.contact-form-card form,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea,
.contact-form-card button,
.contact-form-card label,
.contact-form-card legend {
  font-family: "Inter", sans-serif;
}


/* GRID */

.contact-form-card .form-grid {
  display: grid;
  gap: 20px;
}

.contact-form-card .form-grid.two {
  grid-template-columns: 1fr;
}


/* LABELS */

.contact-form-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;

  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-form-card label > span {
  color: var(--gold);
}

.contact-form-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form-card legend {
  margin-bottom: 8px;

  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}


/* INPUTS */

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  max-width: 100%;

  border: 1px solid var(--input);
  border-radius: var(--radius);

  background: #fff;
  color: var(--primary);

  font-size: 14px;
  font-weight: 400;

  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form-card input,
.contact-form-card select {
  height: 44px;
  padding: 0 12px;
}

.contact-form-card textarea {
  min-height: 120px;
  padding: 10px 12px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(74, 85, 104, 0.6);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}


/* SOFTWARE */

.contact-form-card .software-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-form-card .software-options button {
  height: 44px;
  width: 100%;

  border: 1px solid var(--input);
  border-radius: var(--radius);

  background: #fff;
  color: var(--muted-fg);

  padding: 0 12px;

  font-size: 14px;
  font-weight: 500;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.1s ease;
}

.contact-form-card .software-options button:hover {
  border-color: rgba(194, 155, 72, 0.6);
}

.contact-form-card .software-options button:active {
  transform: scale(0.98);
}

.contact-form-card .software-options button.active {
  border-color: var(--gold);
  background: rgba(194, 155, 72, 0.1);
  color: var(--primary);
}


/* MESSAGE */

.contact-form-card textarea#message {
  width: 100%;
  min-height: 120px;
}


/* SUBMIT */

.contact-form-card .btn-primary {
  width: 100%;
  min-height: 48px;

  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--primary-fg);

  font-size: 14px;
  font-weight: 600;
}


/* NOTE */

.contact-form-card .form-note {
  margin: -4px 0 0;

  text-align: center;
  color: var(--muted-fg);

  font-size: 12px;
  line-height: 1.6;
}


/* SUCCESS */

.contact-form-card .form-success {
  min-height: 420px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.contact-form-card .form-success[hidden] {
  display: none;
}

.contact-form-card .success-icon {
  width: 56px;
  height: 56px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(194, 155, 72, 0.15);
  color: var(--gold);

  font-size: 28px;
}


/* RESPONSIVE */

@media (min-width: 640px) {

  .contact-form-card {
    padding: 40px;
  }

  .contact-form-card .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-card .software-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

/* =========================================================
   CONTACT PAGE LAYOUT — FINAL FIX
   ========================================================= */

.contact-main {
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-column,
.contact-form-card {
  min-width: 0;
  width: 100%;
}


/* Keep the form as a white card */

.contact-form-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(10, 28, 62, 0.10);
}


/* =========================================================
   DESKTOP / LARGE TABLET
   ========================================================= */

/*
   Changed from 1024px to 900px.

   This prevents the form from dropping underneath
   around the ~994px viewport shown in your screenshot.
*/

@media (min-width: 900px) {

  .contact-layout {
    grid-template-columns:
      minmax(0, 2fr)
      minmax(0, 3fr);

    gap: 48px;
    align-items: start;
  }

  .contact-info-column {
    grid-column: 1;
  }

  .contact-form-card {
    grid-column: 2;
    padding: 40px;
  }

}

/* =========================================================
   CONTACT FAQ
   ========================================================= */

.contact-faq-section {
  padding-top: 96px;
  padding-bottom: 96px;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.contact-faq-wrap {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}


/* =========================================================
   FAQ HEADING
   ========================================================= */

.contact-faq-section .section-heading {
  text-align: center;
}

.contact-faq-section .eyebrow {
  justify-content: center;
}

.contact-faq-section .section-heading h2 {
  margin: 20px 0 0;

  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);

  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.contact-faq-list {
  width: 100%;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.contact-faq-item {
  width: 100%;
  border-bottom: 1px solid var(--border);
}


/* =========================================================
   FAQ QUESTION
   ========================================================= */

.contact-faq-question {
  appearance: none;
  -webkit-appearance: none;

  width: 100%;
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  margin: 0;
  padding: 20px 0;

  border: 0;
  border-radius: 0;

  background: transparent;
  color: var(--primary);

  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;

  text-align: left;

  cursor: pointer;

  outline: none;

  transition:
    color 0.2s ease;
}

.contact-faq-question:hover {
  color: var(--gold);
}

.contact-faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}


/* Question text */

.contact-faq-question > span {
  flex: 1;
}


/* =========================================================
   FAQ CHEVRON
   ========================================================= */

.contact-faq-chevron {
  width: 18px;
  height: 18px;

  flex: none;

  color: var(--muted-fg);

  transition:
    transform 0.25s ease,
    color 0.2s ease;
}

.contact-faq-question:hover .contact-faq-chevron {
  color: var(--gold);
}

.contact-faq-item.open .contact-faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}


/* =========================================================
   FAQ ANSWER
   ========================================================= */

.contact-faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.3s ease,
    opacity 0.25s ease;
}

.contact-faq-answer > * {
  overflow: hidden;
}

.contact-faq-item.open .contact-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.contact-faq-answer p {
  margin: 0;
  padding: 0 48px 24px 0;

  color: var(--muted-fg);

  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 640px) {

  .contact-faq-section .section-heading h2 {
    font-size: 48px;
  }

  .contact-faq-question {
    font-size: 16px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .contact-faq-answer,
  .contact-faq-chevron {
    transition: none;
  }

}

/* =========================================================
   HOMEPAGE CONTENT UPDATE

   Supports:
   - Four-part value proposition
   - Text-based credibility band
   - Value proposition introduction
   ========================================================= */


/* =========================================================
   HOMEPAGE CONTENT UPDATE

   Supports:
   - Four-part value proposition
   - Refined credibility band
   - Hero message card
   - Responsive hero layout
   ========================================================= */


/* =========================
   VALUE PROPOSITION INTRO
   ========================= */

.section-intro {
  max-width: 640px;
  margin: 20px 0 0;

  color: var(--muted-fg);

  font-size: 16px;
  line-height: 1.75;
}


/* =========================
   CREDIBILITY BAND
   ========================= */

.metrics-grid {
  padding-top: 36px;
  padding-bottom: 36px;
}

.metric .stat-number {
  margin: 0;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  color: var(--primary);

  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.metric .stat-label {
  max-width: 260px;
  margin: 6px auto 0;

  color: var(--muted-fg);

  font-size: 10px;
  line-height: 1.5;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* =========================
   HERO IMAGE AREA
   ========================= */

.hero-media {
  padding-bottom: 42px;
}


/* =========================
   HERO MESSAGE CARD
   ========================= */

.hero-message-card {
  position: relative;
  z-index: 3;

  width: calc(100% - 32px);

  margin: -44px 16px 0;
  padding: 24px;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  background: var(--card);

  box-shadow:
    0 20px 40px
    rgba(10, 28, 62, 0.14);
}


/* Card eyebrow */

.hero-card-eyebrow {
  margin: 0;

  color: var(--gold);

  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.18em;
}


/* Card headline */

.hero-card-title {
  margin: 14px 0 0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  color: var(--primary);

  font-size: 27px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
}


/* Card description */

.hero-card-copy {
  margin: 12px 0 0;

  color: var(--muted-fg);

  font-size: 14px;
  line-height: 1.6;
}


/* =========================
   TABLET LAYOUT
   ========================= */

@media (min-width: 768px) {

  /* Position message card over image */

  .hero-message-card {
    position: absolute;
    left: -28px;
    bottom: -34px;

    width: min(
      430px,
      calc(100% - 24px)
    );

    margin: 0;
    padding: 28px 32px;
  }


  /* Two value cards per row */

  .pillars-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================
   DESKTOP LAYOUT
   ========================= */

@media (min-width: 1024px) {

  .hero-media {
    padding-bottom: 0;
  }


  /* Four value cards in one row */

  .pillars-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 32px;
  }

}

/* =========================================================
   CLIENT EXPERIENCE BAND TYPOGRAPHY

   Keeps headings consistent with the website and removes
   uppercase styling from the supporting descriptions.
   ========================================================= */


/* Main headings */

.metric .stat-number {
  margin: 0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  color: var(--primary);

  font-size: 21px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;

  text-transform: none;
}


/* Supporting descriptions */

.metric .stat-label {
  max-width: 250px;
  margin: 7px auto 0;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;

  color: var(--muted-fg);

  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;

  text-transform: none;
}


/* Slightly tighter spacing */

.metrics-grid {
  padding-top: 34px;
  padding-bottom: 34px;
}


/* Mobile adjustments */

@media (max-width: 639px) {

  .metric .stat-number {
    font-size: 19px;
  }

  .metric .stat-label {
    max-width: 210px;
    font-size: 12px;
  }

}

/* ========================================
   REQUIRED FIELD LABEL ALIGNMENT
   Keeps the red asterisk beside the label
   ======================================== */

.form-card label,
.contact-form-card label {
  display: block;
}

.form-card label > input,
.form-card label > select,
.form-card label > textarea,
.contact-form-card label > input,
.contact-form-card label > select,
.contact-form-card label > textarea {
  display: block;
  margin-top: 8px;
}

/* =====================================================
   LEGAL PAGES
   Privacy Policy / Terms of Use / Accessibility
   ===================================================== */

.legal-hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 88% 16%, rgba(194, 155, 72, 0.12), transparent 25%),
    var(--background);
}

.legal-hero-inner {
  max-width: 880px;
}

.legal-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.legal-intro {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted-fg);
  font-size: 18px;
  line-height: 1.75;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 28px 0 0;
  color: var(--muted-fg);
  font-size: 14px;
}

.legal-meta strong {
  color: var(--foreground);
  font-weight: 600;
}

.legal-body {
  padding: 72px 0 104px;
}

.legal-layout {
  display: grid;
  gap: 56px;
}

.legal-toc {
  align-self: start;
  border-top: 2px solid var(--gold);
  padding-top: 22px;
}

.legal-toc h2 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
}

.legal-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-sections;
}

.legal-toc li {
  counter-increment: legal-sections;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  color: var(--muted-fg);
  font-size: 13px;
  line-height: 1.45;
}

.legal-toc a::before {
  content: counter(legal-sections, decimal-leading-zero);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding-top: 2px;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--foreground);
}

.legal-content {
  min-width: 0;
}

.legal-summary {
  margin: 0 0 52px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 16px 40px rgba(10, 28, 62, 0.06);
}

.legal-summary h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
}

.legal-summary p {
  margin: 14px 0 0;
  color: var(--muted-fg);
  font-size: 16px;
  line-height: 1.75;
}

.legal-section {
  scroll-margin-top: 104px;
  padding: 0 0 48px;
  margin: 0 0 48px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.legal-section h3 {
  margin: 30px 0 10px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

.legal-section p,
.legal-section li {
  color: var(--muted-fg);
  font-size: 16px;
  line-height: 1.78;
}

.legal-section p {
  margin: 0 0 16px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 20px;
  padding-left: 22px;
}

.legal-section strong {
  color: var(--foreground);
  font-weight: 600;
}

.legal-section a,
.legal-contact-card a {
  color: var(--foreground);
  text-decoration: underline;
  text-decoration-color: rgba(194, 155, 72, 0.8);
  text-underline-offset: 4px;
}

.legal-callout {
  margin: 28px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(238, 236, 228, 0.68);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-contact-card {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--border);
  background: var(--card);
}

.legal-contact-card p {
  margin: 0 0 8px;
  color: var(--muted-fg);
  font-size: 15px;
  line-height: 1.7;
}

.legal-contact-card p:last-child {
  margin-bottom: 0;
}

.legal-note {
  margin-top: 38px;
  color: var(--muted-fg);
  font-size: 13px;
  line-height: 1.7;
}

.legal-page-content > *:first-child {
  margin-top: 0;
}

.legal-page-content > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 72px;
  }

  .legal-toc {
    position: sticky;
    top: 112px;
  }
}

@media (max-width: 639px) {
  .legal-hero {
    padding: 64px 0 56px;
  }

  .legal-body {
    padding: 56px 0 80px;
  }

  .legal-summary,
  .legal-callout,
  .legal-contact-card {
    padding: 22px;
  }
}

@media print {
  .site-header,
  .mobile-sheet,
  .legal-toc,
  .site-footer,
  .modal {
    display: none !important;
  }

  .legal-hero,
  .legal-body {
    padding: 24px 0;
  }

  .legal-section {
    break-inside: avoid;
  }
}

/* =====================================================
   CONTACT PAGE HERO HIGHLIGHTS
   Restores original Contact page design
   ===================================================== */

.contact-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 28px;
  color: rgba(249, 248, 243, 0.78);
  font-size: 14px;
}

.contact-hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-hero-note .icon {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* =====================================================
   CONTACT PAGE - REMAINING ORIGINAL STYLES
   Privacy notice / alternative contact / FAQ / form
   ===================================================== */

/* Sensitive-information warning inside contact form */
.contact-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(194, 155, 72, 0.42);
  border-radius: var(--radius);
  background: rgba(194, 155, 72, 0.08);
  color: var(--muted-fg);
  font-size: 13px;
  line-height: 1.6;
}

.contact-privacy-note .icon {
  flex: none;
  margin-top: 2px;
  color: var(--gold);
}


/* Prefer-email note below the form */
.contact-alternative {
  margin-top: 22px;
  color: var(--muted-fg);
  font-size: 14px;
  line-height: 1.65;
}

.contact-alternative a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(194, 155, 72, 0.65);
  text-underline-offset: 4px;
}


/* =====================================================
   CONTACT FAQ SECTION
   ===================================================== */

.contact-faq-section {
  background: rgba(238, 236, 228, 0.6);
}

.contact-faq-list {
  max-width: 880px;
  margin: 56px auto 0;
  border-top: 1px solid var(--border);
}

.contact-faq-item {
  border-bottom: 1px solid var(--border);
}

.contact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--primary);
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.contact-faq-item[open] summary::after {
  content: "−";
}

.contact-faq-item p {
  max-width: 760px;
  margin: -6px 0 24px;
  color: var(--muted-fg);
  font-size: 15px;
  line-height: 1.75;
}


/* =====================================================
   CONTACT FORM
   ===================================================== */

.contact-form-card select,
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
}

.contact-form-card textarea {
  min-height: 150px;
}

.contact-form-card .form-note {
  text-align: left;
}


/* =====================================================
   CONTACT RESPONSIVE
   ===================================================== */

@media (min-width: 640px) {
  .contact-faq-item summary {
    font-size: 22px;
  }
}

/* =========================================================
   FLUENT FORMS
   Match original Camberos contact form
   ========================================================= */

/*
   Fluent Forms outputs all normal fields inside a fieldset.
   We use that fieldset as the original form grid.
*/

.contact-form-card .fluentform,
.contact-form-card .frm-fluent-form {
  width: 100%;
  margin: 0;
  padding: 0;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.contact-form-card .frm-fluent-form fieldset {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 20px;

  margin: 32px 0 0 !important;
  padding: 0 !important;

  border: 0 !important;
}


/* Remove Fluent Forms default spacing */

.contact-form-card .ff-el-group {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}


/* =========================================================
   LABELS
   ========================================================= */

.contact-form-card .ff-el-input--label {
  margin: 0 0 8px !important;
}

.contact-form-card .ff-el-input--label label {
  margin: 0 !important;

  color: var(--primary) !important;

  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}


/* Required asterisk */

.contact-form-card .ff-el-is-required label::after,
.contact-form-card .ff-el-is-required.asterisk-right label::after {
  color: var(--gold) !important;
}


/* =========================================================
   INPUTS
   ========================================================= */

.contact-form-card .ff-el-form-control {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;

  border: 1px solid var(--input) !important;
  border-radius: var(--radius) !important;

  background: #fff !important;
  color: var(--primary) !important;

  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;

  outline: none !important;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* Text fields and dropdown */

.contact-form-card input.ff-el-form-control,
.contact-form-card select.ff-el-form-control {
  height: 44px !important;
  min-height: 44px !important;

  padding: 0 12px !important;
}


/* Message */

.contact-form-card textarea.ff-el-form-control {
  min-height: 120px !important;

  padding: 10px 12px !important;

  resize: vertical;
}


/* Placeholder */

.contact-form-card .ff-el-form-control::placeholder {
  color: rgba(74, 85, 104, 0.6) !important;
  opacity: 1;
}


/* Focus */

.contact-form-card .ff-el-form-control:focus {
  border-color: var(--gold) !important;

  box-shadow:
    0 0 0 1px var(--gold) !important;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.contact-form-card .ff-btn-submit {
  width: 100% !important;
  min-height: 48px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 32px !important;

  border: 1px solid var(--primary) !important;
  border-radius: var(--radius) !important;

  background: var(--primary) !important;
  color: var(--primary-fg) !important;

  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;

  cursor: pointer;
}


/* Submit group always full width */

.contact-form-card .ff_submit_btn_wrapper {
  width: 100%;
}


/* =========================================================
   VALIDATION
   ========================================================= */

.contact-form-card .text-danger {
  margin-top: 6px !important;

  color: #a33a2b !important;

  font-size: 12px !important;
  line-height: 1.5 !important;
}

.contact-form-card .ff-el-is-error .ff-el-form-control {
  border-color: #a33a2b !important;
}


/* =========================================================
   SUCCESS MESSAGE
   ========================================================= */

.contact-form-card .ff-message-success {
  margin: 0 !important;

  padding: 20px !important;

  border: 1px solid rgba(194, 155, 72, 0.42) !important;
  border-radius: var(--radius) !important;

  background: rgba(194, 155, 72, 0.08) !important;

  color: var(--primary) !important;

  font-size: 14px !important;
  line-height: 1.65 !important;
}


/* =========================================================
   DESKTOP FORM LAYOUT
   Original design:
   Name + Email
   Phone + Business
   Remaining fields full width
   ========================================================= */

@media (min-width: 640px) {

  .contact-form-card .frm-fluent-form fieldset {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  /*
     Fields 1–4:
     1 Full Name
     2 Email
     3 Phone
     4 Business Name

     They remain half width.
  */


  /* Service */

  .contact-form-card
  .frm-fluent-form
  fieldset
  > .ff-el-group:nth-of-type(5) {
    grid-column: 1 / -1;
  }


  /* How can we help? */

  .contact-form-card
  .frm-fluent-form
  fieldset
  > .ff-el-group:nth-of-type(6) {
    grid-column: 1 / -1;
  }


  /* Submit */

  .contact-form-card
  .frm-fluent-form
  fieldset
  > .ff_submit_btn_wrapper {
    grid-column: 1 / -1;
  }
}

/* =====================================================
   HOMEPAGE FLUENT FORM
   Clean professional layout without nested card
   ===================================================== */

.home-contact-form {
  width: 100%;
  min-width: 0;
}


/* Small gold heading */

.home-contact-form-eyebrow {
  margin: 0 0 12px;

  color: var(--gold);

  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}


/* Form heading */

.home-contact-form-title {
  margin: 0;

  color: var(--primary);

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 600;
}


/* Intro */

.home-contact-form-intro {
  max-width: 520px;

  margin: 12px 0 28px;

  color: var(--muted-fg);

  font-size: 15px;
  line-height: 1.7;
}


/* =====================================================
   REMOVE INNER FLUENT FORM BOXING
   ===================================================== */

.home-contact-form .fluentform,
.home-contact-form .frm-fluent-form {
  width: 100%;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-contact-form .frm-fluent-form fieldset {
  display: grid !important;

  grid-template-columns: 1fr;

  gap: 20px;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  background: transparent !important;
}


/* Remove Fluent default spacing */

.home-contact-form .ff-el-group {
  width: 100%;

  margin: 0 !important;
  padding: 0 !important;
}


/* =====================================================
   LABELS
   ===================================================== */

.home-contact-form .ff-el-input--label {
  margin: 0 0 8px !important;
}

.home-contact-form .ff-el-input--label label {
  color: var(--primary) !important;

  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.home-contact-form .ff-el-is-required label::after,
.home-contact-form
.ff-el-is-required.asterisk-right
label::after {
  color: var(--gold) !important;
}


/* =====================================================
   INPUTS
   ===================================================== */

.home-contact-form .ff-el-form-control {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;

  border: 1px solid var(--input) !important;
  border-radius: var(--radius) !important;

  background: #ffffff !important;

  color: var(--primary) !important;

  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;

  box-shadow:
    0 1px 2px rgba(10, 28, 62, 0.04) !important;
}

.home-contact-form input.ff-el-form-control,
.home-contact-form select.ff-el-form-control {
  height: 46px !important;
  min-height: 46px !important;

  padding: 0 13px !important;
}

.home-contact-form textarea.ff-el-form-control {
  min-height: 125px !important;

  padding: 11px 13px !important;

  resize: vertical;
}

.home-contact-form .ff-el-form-control:focus {
  outline: none !important;

  border-color: var(--gold) !important;

  box-shadow:
    0 0 0 2px rgba(194, 155, 72, 0.13) !important;
}


/* =====================================================
   BUTTON
   ===================================================== */

.home-contact-form .ff_submit_btn_wrapper {
  width: 100%;

  margin: 0 !important;
}

.home-contact-form .ff-btn-submit {
  width: 100% !important;

  min-height: 50px !important;

  margin: 0 !important;
  padding: 0 28px !important;

  border: 1px solid var(--primary) !important;
  border-radius: var(--radius) !important;

  background: var(--primary) !important;

  color: #ffffff !important;

  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;

  cursor: pointer;
}

.home-contact-form .ff-btn-submit:hover {
  filter: brightness(1.08);
}


/* =====================================================
   SECURITY NOTE
   ===================================================== */

.home-contact-form-note {
  margin: 18px 0 0;

  color: var(--muted-fg);

  font-size: 12px;
  line-height: 1.6;
}


/* =====================================================
   DESKTOP FORM GRID
   ===================================================== */

@media (min-width: 700px) {

  .home-contact-form
  .frm-fluent-form
  fieldset {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  /* Service */

  .home-contact-form
  .frm-fluent-form
  fieldset
  > .ff-el-group:nth-of-type(5) {
    grid-column: 1 / -1;
  }


  /* Message */

  .home-contact-form
  .frm-fluent-form
  fieldset
  > .ff-el-group:nth-of-type(6) {
    grid-column: 1 / -1;
  }


  /* Submit */

  .home-contact-form
  .frm-fluent-form
  fieldset
  > .ff_submit_btn_wrapper {
    grid-column: 1 / -1;
  }
}

/* =====================================================
   ARTICLE READABILITY
   More comfortable long-form reading
   ===================================================== */

.article-content {
  max-width: 760px;
}

.article-content p,
.article-content li {
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: 0.005em;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content ul,
.article-content ol {
  margin: 22px 0 28px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content h2 {
  margin-top: 52px;
  margin-bottom: 20px;
  line-height: 1.22;
}

.article-content h3 {
  margin-top: 36px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.article-content strong {
  font-weight: 600;
}

/* =====================================================
   ARTICLE FEATURED IMAGE
   Consistent size without cropping
   ===================================================== */

.article-featured-image {
  width: min(100% - 40px, 980px);
  height: clamp(320px, 42vw, 520px);

  margin: 0 auto 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #f7f6f1;
}

.article-featured-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}


/* Mobile */

@media (max-width: 639px) {

  .article-featured-image {
    width: calc(100% - 32px);
    height: 300px;

    margin-bottom: 32px;
  }

}

/* =====================================================
   INSIGHT CARD IMAGES
   Consistent image size, full image visible
   ===================================================== */

.insight-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #f7f6f1;
}

.insight-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}

/* =====================================================
   INSIGHTS FILTER BUTTON RESET
   ===================================================== */

button.filter-option {
	width: 100%;
	border: 0;
	background: transparent;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

/* =====================================================
   ARTICLE TABLE OF CONTENTS ACTIVE STATE
   ===================================================== */

.article-toc a.active {
	color: var(--gold, #b8944f);
	font-weight: 600;
}