:root {
  --bg: #f7f9fc;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #142131;
  --ink-soft: #243347;
  --muted: #5f6c7b;
  --line: rgba(20, 33, 49, 0.1);
  --brand: #b88a42;
  --brand-dark: #8b6431;
  --accent: #1c3148;
  --accent-soft: #eef3f8;
  --gold: #d1b06c;
  --gold-soft: rgba(209, 176, 108, 0.14);
  --shadow: 0 24px 80px rgba(20, 33, 49, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 138, 66, 0.08), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(28, 49, 72, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 46%, #f3f6fa 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 33, 49, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 49, 0.018) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 84%);
  opacity: 0.55;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-head h2,
.section-head h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.topbar {
  border-bottom: 1px solid rgba(20, 33, 49, 0.08);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 252, 0.98) 100%);
  color: rgba(20, 33, 49, 0.82);
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.92rem;
}

.topbar__items,
.topbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.topbar__pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 66, 0.18);
  background: rgba(209, 176, 108, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(20, 33, 49, 0.08);
  box-shadow: 0 10px 30px rgba(20, 33, 49, 0.05);
}

.site-header .container {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fefaf3;
  border-radius: 16px;
  border: 1px solid rgba(209, 176, 108, 0.24);
  background: linear-gradient(145deg, #1a2a3c, #101923);
  box-shadow: 0 12px 24px rgba(20, 33, 49, 0.18);
}

.brand__mark span {
  position: relative;
  z-index: 1;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  border: 1px solid rgba(209, 176, 108, 0.22);
}

.brand__text small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--ink);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

.nav-state {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.nav-toggle__icon--close {
  display: none;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  position: relative;
  font-weight: 700;
  color: rgba(20, 33, 49, 0.88);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform 0.18s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-mobile-actions {
  display: none;
}

.header-actions {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button--primary {
  color: #fbf7f1;
  border-color: rgba(209, 176, 108, 0.16);
  background: linear-gradient(135deg, #162435, #22354d 65%, #29405c 100%);
  box-shadow: 0 16px 32px rgba(20, 33, 49, 0.18);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 33, 49, 0.12);
}

.button--soft {
  color: var(--accent);
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(184, 138, 66, 0.16);
}

.hero {
  position: relative;
  padding: 84px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.6), transparent 46%),
    radial-gradient(circle at 75% 18%, rgba(209, 176, 108, 0.08), transparent 24%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 80px 0 auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184, 138, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-frame {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-frame span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 66, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.hero-proof__item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(184, 138, 66, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98));
  box-shadow: 0 10px 24px rgba(20, 33, 49, 0.05);
}

.hero-proof__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.hero-proof__item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(184, 138, 66, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-weight: 700;
  color: var(--ink);
}

.hero-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(209, 176, 108, 0.18);
  background: linear-gradient(160deg, rgba(15, 25, 37, 0.98), rgba(24, 40, 59, 0.98));
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(209, 176, 108, 0.14);
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(209, 176, 108, 0.42), transparent);
}

.hero-card h2,
.hero-card h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.hero-signature {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-card-footer {
  position: relative;
  margin-top: 24px;
  padding-top: 18px;
  color: rgba(255, 250, 244, 0.8);
  font-size: 0.95rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(209, 176, 108, 0.14);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.mini-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(209, 176, 108, 0.14);
}

.section {
  padding: 72px 0;
}

.surface {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(20, 33, 49, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(209, 176, 108, 0.72), rgba(209, 176, 108, 0.06));
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid rgba(20, 33, 49, 0.08);
  box-shadow: 0 16px 34px rgba(20, 33, 49, 0.07);
}

.card h3,
.card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  color: var(--ink-soft);
}

.card p,
.card li {
  color: var(--muted);
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fdf8f0;
  border: 1px solid rgba(209, 176, 108, 0.18);
  background: linear-gradient(135deg, #162435, #24364c);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(20, 33, 49, 0.16);
}

.service-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 66, 0.14);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-dark);
  background: var(--gold-soft);
}

.country-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.country-card strong {
  font-size: 1.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink-soft);
}

.country-card ul,
.check-list,
.faq-list,
.article-content ul,
.article-content ol {
  padding-left: 20px;
}

.check-list li,
.article-content li {
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

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

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline-step strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(209, 176, 108, 0.14);
  background: linear-gradient(180deg, #1a2a3c, #101923);
  color: #fff;
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(184, 138, 66, 0.18);
}

.testimonial p {
  position: relative;
  z-index: 1;
}

.faq-item {
  border: 1px solid rgba(184, 138, 66, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.82);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  font-weight: 800;
  color: var(--ink);
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-answer__inner {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.cta-band {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(209, 176, 108, 0.16);
  background: linear-gradient(135deg, rgba(20, 33, 49, 0.98), rgba(34, 52, 74, 0.98));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-lounge {
  background: linear-gradient(180deg, rgba(18, 29, 43, 0.98), rgba(27, 43, 62, 0.98));
  color: rgba(255, 250, 244, 0.94);
  border-color: rgba(209, 176, 108, 0.16);
}

.contact-lounge::before {
  background: linear-gradient(90deg, rgba(209, 176, 108, 0.9), rgba(209, 176, 108, 0.18));
}

.contact-lounge .section-head h2,
.contact-lounge .section-head p,
.contact-lounge .card p,
.contact-lounge .card li {
  color: rgba(255, 250, 244, 0.88);
}

.contact-lounge .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(209, 176, 108, 0.16);
  box-shadow: none;
}

.contact-lounge .card h3 {
  color: #fff8ef;
}

.contact-panel a {
  font-weight: 700;
  color: var(--brand-dark);
}

.contact-lounge a {
  color: #fff8ef;
}

.contact-highlight {
  position: relative;
  overflow: hidden;
}

.contact-highlight::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(209, 176, 108, 0.1);
}

.contact-stack {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-note {
  padding: 18px 4px 0;
  border-top: 1px solid rgba(209, 176, 108, 0.18);
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff8ef;
}

.contact-note p {
  margin: 0;
  color: rgba(255, 250, 244, 0.8);
}

.form-shell {
  display: grid;
  gap: 16px;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.consultation-layout--spotlight {
  align-items: stretch;
}

.consultation-main {
  overflow: hidden;
}

.consultation-main--form {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
    radial-gradient(circle at top right, rgba(209, 176, 108, 0.08), transparent 30%);
}

.consultation-main .section-head {
  margin-bottom: 12px;
}

.consultation-main .section-head p {
  max-width: 100%;
  font-size: 0.98rem;
}

.section-head--compact {
  gap: 12px;
  margin-bottom: 0;
}

.section-head--compact h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
}

.section-head--compact p {
  max-width: 60ch;
  font-size: 1.02rem;
}

.consultation-intro {
  margin-bottom: 22px;
}

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

.consultation-pillar {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(184, 138, 66, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 243, 235, 0.9));
}

.consultation-pillar strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.consultation-pillar span {
  color: var(--muted);
  font-size: 0.94rem;
}

.consultation-pillars--form {
  margin-top: -2px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.field label {
  font-weight: 700;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(184, 138, 66, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

#online-full-name,
#online-phone,
#online-country,
#online-visa-type,
#online-message {
  scroll-margin-top: 120px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-actions {
  display: grid;
  gap: 12px;
  align-items: start;
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.status-banner {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(20, 33, 49, 0.08);
  font-weight: 700;
}

.status-banner--success {
  color: #14532d;
  background: rgba(208, 248, 222, 0.8);
}

.status-banner--error {
  color: #991b1b;
  background: rgba(254, 226, 226, 0.92);
}

.field-error {
  color: #991b1b;
  font-size: 0.9rem;
  font-weight: 700;
}

.field input.input-error,
.field select.input-error,
.field textarea.input-error {
  border-color: rgba(153, 27, 27, 0.48);
  background: rgba(254, 242, 242, 0.96);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.kicker {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid rgba(184, 138, 66, 0.12);
  box-shadow: 0 12px 28px rgba(20, 33, 49, 0.05);
}

.hero-list,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.hero-list span,
.article-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid rgba(184, 138, 66, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-hero {
  padding: 64px 0 28px;
}

.contact-lounge--support {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.contact-lounge--support h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.check-list--light {
  margin: 0;
  color: rgba(255, 250, 244, 0.88);
}

.online-support-card {
  display: grid;
  gap: 18px;
}

.hero-actions--compact {
  margin-top: 8px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 700;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.article-content {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(184, 138, 66, 0.12);
  box-shadow: var(--shadow);
}

.article-content h2,
.article-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink-soft);
  letter-spacing: -0.03em;
}

.aside-card {
  position: sticky;
  top: 110px;
}

.site-footer {
  padding: 28px 0 42px;
  background: linear-gradient(180deg, #131f2f 0%, #0e1722 100%);
  color: rgba(255, 250, 244, 0.82);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 20px;
  padding: 20px 0 28px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 33, 49, 0.1);
  box-shadow: 0 14px 32px rgba(20, 33, 49, 0.14);
  font-weight: 800;
}

.floating-actions a:last-child {
  color: #fff;
  border-color: rgba(18, 140, 126, 0.42);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.28);
}

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

@media (max-width: 980px) {
  .site-header .container {
    min-height: 78px;
    padding-right: 66px;
  }

  .brand {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: 100%;
  }

  .brand__text {
    min-width: 0;
    max-width: 160px;
  }

  .brand__text small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-grid,
  .split,
  .consultation-layout,
  .article-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    z-index: 995;
    display: none !important;
    max-height: calc(100dvh - 112px);
    padding: 10px 18px 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(20, 33, 49, 0.1);
    box-shadow: 0 24px 70px rgba(20, 33, 49, 0.18);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .nav.is-open,
  .nav-state:checked ~ .nav {
    display: block !important;
  }

  .nav a {
    display: block !important;
    width: 100%;
    padding: 14px 4px;
    font-size: 1.1rem;
    line-height: 1.25;
    border-bottom: 1px solid rgba(20, 33, 49, 0.08);
  }

  .nav a::after {
    display: none;
  }

  .nav-mobile-actions {
    width: 100%;
    display: block;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(20, 33, 49, 0.08);
  }

  .nav-mobile-actions .button {
    width: 100%;
    min-height: 56px;
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 18px;
  }

  .nav-mobile-actions .button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #142131, #1c3148);
    border-color: rgba(20, 33, 49, 0.16);
    box-shadow: 0 16px 28px rgba(20, 33, 49, 0.16);
  }

  .nav-mobile-actions .button--ghost {
    border-width: 1px;
    background: #ffffff;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1100;
    transform: translateY(-50%);
    pointer-events: auto;
    border: 1px solid rgba(20, 33, 49, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(20, 33, 49, 0.08);
  }

  .nav-toggle.is-open,
  .nav-state:checked + .nav-toggle {
    background: #182535;
    color: #ffffff;
    border-color: rgba(24, 37, 53, 0.2);
  }

  .nav-toggle.is-open .nav-toggle__icon--open,
  .nav-state:checked + .nav-toggle .nav-toggle__icon--open {
    display: none;
  }

  .nav-toggle.is-open .nav-toggle__icon--close,
  .nav-state:checked + .nav-toggle .nav-toggle__icon--close {
    display: inline;
  }

  .header-actions .button--ghost {
    display: none;
  }

  .header-actions .button--primary {
    display: none;
  }

  .aside-card {
    position: static;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 48px;
  }

  .section {
    padding: 56px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .hero-proof,
  .kicker-grid,
  .consultation-pillars,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-lounge--support {
    position: static;
  }

  .section-head--compact h1 {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }

  .surface,
  .card,
  .article-content,
  .hero-card {
    padding: 22px;
  }

  .floating-actions a {
    min-width: 52px;
    height: 52px;
  }
}
